Report generated on 03-Jul-2023 at 07:37:04 by pytest-html v3.2.0
259 tests ran in 57346.28 seconds.
(Un)check the boxes to filter the results.
239 passed, 25 skipped, 18 failed, 0 errors, 2 expected failures, 0 unexpected passes| Result | Test | Duration | Links |
|---|---|---|---|
| No results found. Try to check the filters | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[2-2] | 429.40 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> igmp_ver = 2, igmp_msg_ver = 2 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) # 6.Verify the multicast traffic is flooded to all bridge ports await asyncio.sleep(sleep_value) stats = await tgen_utils_get_traffic_stats(tgen_dev) verify_expected_rx_rate(stats, tx_port, rx_ports) # 7.Stop traffic, create a general query stream from tx_port and send traffic await tgen_utils_stop_traffic(tgen_dev) await asyncio.sleep(6) stream_query = {'igmp_query': { 'type': 'raw', 'protocol': 'ip', 'frameSize': '74', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(GENERAL_QUERY_IP), 'srcIp': dev_groups[tg_ports[0]][0]['ip'], 'dstIp': GENERAL_QUERY_IP, 'ipproto': 'igmpv2', 'totalLength': '28', 'igmpType': '17', 'igmpGroupAddr': '0.0.0.0', 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 }} await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream_query) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 8.Verify MDB entries were created for router _, router_entires = await get_bridge_mdb(dev_name) assert len(router_entires), f'No MDB router entries were added to bridge MDB table {router_entires}' # 9.Verify the traffic is forwarded to the members only await asyncio.sleep(15) stats = await tgen_utils_get_traffic_stats(tgen_dev) verify_expected_rx_rate(stats, tx_port, rx_ports[:-1], rate_coef=0.5) # Verify rx_port have 0 rx_rate possbile deviation 1000 Bps, due to some pkt's can pass through the port for row in stats.Rows: if row['Port Name'] == rx_ports[-1].split('_')[0]: assert int(row['Bytes Rx. Rate']) <= DEVIATION_BPS, f"Actual rate {row['Bytes Rx. Rate']} expected rate 0" # 10.Create and send Leave stream from first rx_port stream_leave = {'igmp_leave': { 'type': 'raw', 'protocol': 'ip', 'frameSize': '74', 'ip_source': rx_ports[0], 'ip_destination': tx_port, 'srcMac': macs[1], 'dstMac': mcast_ip_to_mac(IGMP_LEAVE_V2_IP), 'srcIp': dev_groups[tg_ports[1]][0]['ip'], 'dstIp': IGMP_LEAVE_V2_IP, 'ipproto': 'igmpv2', 'totalLength': '28', 'igmpType': '23', 'igmpGroupAddr': mcast_group1, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1, }} await tgen_utils_stop_traffic(tgen_dev) await asyncio.sleep(6) await tgen_utils_clear_traffic_items(tgen_dev, traffic_names=['member_report1']) await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream_leave) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 11.Verify its MDB entry is deleted and no traffic is received mdb_entires, _ = await get_bridge_mdb(dev_name) verify_mdb_entries(mdb_entires, [dut_ports[2]], [mcast_group2]) for entry in mdb_entires: > assert dut_ports[1] != entry['port'], f'Mdb entry of port {dut_ports[1]} still exists: \n{mdb_entires}' E AssertionError: Mdb entry of port swp2 still exists: E [{'index': 102, 'dev': 'br0', 'port': 'swp2', 'grp': '227.1.1.1', 'state': 'temp', 'protocol': 'kernel', 'flags': ['offload'], 'vid': 1, 'timer': ' 138.76'}, {'index': 102, 'dev': 'br0', 'port': 'swp3', 'grp': '239.2.2.2', 'state': 'temp', 'protocol': 'kernel', 'flags': ['offload'], 'vid': 1, 'timer': ' 257.79'}] E assert 'swp2' != 'swp2' /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:328: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[2-2]">Starting testcase:test_igmp_snooping_mixed_ver[2-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-5951' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=102] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=102] Local address: 172.17.0.4, port 33034 INFO asyncssh:logging.py:92 [conn=102] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=102] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=102] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:05:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=102, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=102, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=102, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=102, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=102, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=102, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=102, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=102, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=102, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp2 INFO asyncssh:logging.py:92 [conn=102, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=10] Command: bridge link set dev swp2 INFO asyncssh:logging.py:92 [conn=102, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=102, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":102,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.81"},{"index":102,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.81"},{"index":102,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 119.16"},{"index":102,"dev":"br0","port":"br0","grp":"ff02::1:ff16:e31","state":"temp","flags":[],"vid":1,"timer":" 119.16"}],"router":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a276f880>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 14518248 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 14514215 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 14514215 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 14514216 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=102, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":102,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.77"},{"index":102,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.77"},{"index":102,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 6.93"},{"index":102,"dev":"br0","port":"br0","grp":"ff02::1:ff16:e31","state":"temp","flags":[],"vid":1,"timer":" 6.93"}],"router":{"br0":[{"port":"swp1","timer":" 252.77","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2662650>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 30240472 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 15124741 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 15111297 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 7030 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_leave INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=102, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=16] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":102,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 138.76"},{"index":102,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.79"}],"router":{"br0":[{"port":"swp1","timer":" 252.79","type":"temp"}]}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[2-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=102, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:12:49 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=102, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=102, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=102, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":102,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=102, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=102, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=102, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-3] | 437.88 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> igmp_ver = 3, igmp_msg_ver = 3 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) # 6.Verify the multicast traffic is flooded to all bridge ports await asyncio.sleep(sleep_value) stats = await tgen_utils_get_traffic_stats(tgen_dev) verify_expected_rx_rate(stats, tx_port, rx_ports) # 7.Stop traffic, create a general query stream from tx_port and send traffic await tgen_utils_stop_traffic(tgen_dev) await asyncio.sleep(6) stream_query = {'igmp_query': { 'type': 'raw', 'protocol': 'ip', 'frameSize': '74', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(GENERAL_QUERY_IP), 'srcIp': dev_groups[tg_ports[0]][0]['ip'], 'dstIp': GENERAL_QUERY_IP, 'ipproto': 'igmpv2', 'totalLength': '28', 'igmpType': '17', 'igmpGroupAddr': '0.0.0.0', 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 }} await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream_query) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 8.Verify MDB entries were created for router _, router_entires = await get_bridge_mdb(dev_name) assert len(router_entires), f'No MDB router entries were added to bridge MDB table {router_entires}' # 9.Verify the traffic is forwarded to the members only await asyncio.sleep(15) stats = await tgen_utils_get_traffic_stats(tgen_dev) verify_expected_rx_rate(stats, tx_port, rx_ports[:-1], rate_coef=0.5) # Verify rx_port have 0 rx_rate possbile deviation 1000 Bps, due to some pkt's can pass through the port for row in stats.Rows: if row['Port Name'] == rx_ports[-1].split('_')[0]: assert int(row['Bytes Rx. Rate']) <= DEVIATION_BPS, f"Actual rate {row['Bytes Rx. Rate']} expected rate 0" # 10.Create and send Leave stream from first rx_port stream_leave = {'igmp_leave': { 'type': 'raw', 'protocol': 'ip', 'frameSize': '74', 'ip_source': rx_ports[0], 'ip_destination': tx_port, 'srcMac': macs[1], 'dstMac': mcast_ip_to_mac(IGMP_LEAVE_V2_IP), 'srcIp': dev_groups[tg_ports[1]][0]['ip'], 'dstIp': IGMP_LEAVE_V2_IP, 'ipproto': 'igmpv2', 'totalLength': '28', 'igmpType': '23', 'igmpGroupAddr': mcast_group1, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1, }} await tgen_utils_stop_traffic(tgen_dev) await asyncio.sleep(6) await tgen_utils_clear_traffic_items(tgen_dev, traffic_names=['member_report1']) await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream_leave) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 11.Verify its MDB entry is deleted and no traffic is received mdb_entires, _ = await get_bridge_mdb(dev_name) verify_mdb_entries(mdb_entires, [dut_ports[2]], [mcast_group2]) for entry in mdb_entires: > assert dut_ports[1] != entry['port'], f'Mdb entry of port {dut_ports[1]} still exists: \n{mdb_entires}' E AssertionError: Mdb entry of port swp2 still exists: E [{'index': 103, 'dev': 'br0', 'port': 'swp2', 'grp': '227.1.1.1', 'state': 'temp', 'filter_mode': 'include', 'protocol': 'kernel', 'flags': ['offload'], 'vid': 1, 'timer': ' 0.00'}, {'index': 103, 'dev': 'br0', 'port': 'swp3', 'grp': '239.2.2.2', 'state': 'temp', 'filter_mode': 'include', 'protocol': 'kernel', 'flags': ['offload'], 'vid': 1, 'timer': ' 0.00'}] E assert 'swp2' != 'swp2' /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:328: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-3]">Starting testcase:test_igmp_snooping_mixed_ver[3-3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-5981' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=102, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=103] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=103] Local address: 172.17.0.4, port 38904 INFO asyncssh:logging.py:92 [conn=103] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=103] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=103] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=103, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:12:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=103, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=103, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=103, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=103, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=103, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=103, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=103, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=103, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=103, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp2 INFO asyncssh:logging.py:92 [conn=103, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=10] Command: bridge link set dev swp2 INFO asyncssh:logging.py:92 [conn=103, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=103, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":103,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":103,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":103,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 114.62"},{"index":103,"dev":"br0","port":"br0","grp":"ff02::1:ff57:6103","state":"temp","flags":[],"vid":1,"timer":" 114.62"}],"router":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2662800>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 9683395 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 9678898 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 9678898 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 9678899 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=103, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":103,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":103,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":103,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 1.78"},{"index":103,"dev":"br0","port":"br0","grp":"ff02::1:ff57:6103","state":"temp","flags":[],"vid":1,"timer":" 1.78"}],"router":{"br0":[{"port":"swp1","timer":" 252.81","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2662ec0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 24367965 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 12188064 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 12174627 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 6395 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_leave INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=103, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=16] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":103,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":103,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"}],"router":{"br0":[{"port":"swp1","timer":" 253.71","type":"temp"}]}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=103, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=103, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:20:07 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=103, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=103, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=103, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":103,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=103, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=103, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=103, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[2-1] | 433.97 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> igmp_ver = 2, igmp_msg_ver = 1 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) # 6.Verify the multicast traffic is flooded to all bridge ports await asyncio.sleep(sleep_value) stats = await tgen_utils_get_traffic_stats(tgen_dev) verify_expected_rx_rate(stats, tx_port, rx_ports) # 7.Stop traffic, create a general query stream from tx_port and send traffic await tgen_utils_stop_traffic(tgen_dev) await asyncio.sleep(6) stream_query = {'igmp_query': { 'type': 'raw', 'protocol': 'ip', 'frameSize': '74', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(GENERAL_QUERY_IP), 'srcIp': dev_groups[tg_ports[0]][0]['ip'], 'dstIp': GENERAL_QUERY_IP, 'ipproto': 'igmpv2', 'totalLength': '28', 'igmpType': '17', 'igmpGroupAddr': '0.0.0.0', 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 }} await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream_query) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 8.Verify MDB entries were created for router _, router_entires = await get_bridge_mdb(dev_name) assert len(router_entires), f'No MDB router entries were added to bridge MDB table {router_entires}' # 9.Verify the traffic is forwarded to the members only await asyncio.sleep(15) stats = await tgen_utils_get_traffic_stats(tgen_dev) verify_expected_rx_rate(stats, tx_port, rx_ports[:-1], rate_coef=0.5) # Verify rx_port have 0 rx_rate possbile deviation 1000 Bps, due to some pkt's can pass through the port for row in stats.Rows: if row['Port Name'] == rx_ports[-1].split('_')[0]: assert int(row['Bytes Rx. Rate']) <= DEVIATION_BPS, f"Actual rate {row['Bytes Rx. Rate']} expected rate 0" # 10.Create and send Leave stream from first rx_port stream_leave = {'igmp_leave': { 'type': 'raw', 'protocol': 'ip', 'frameSize': '74', 'ip_source': rx_ports[0], 'ip_destination': tx_port, 'srcMac': macs[1], 'dstMac': mcast_ip_to_mac(IGMP_LEAVE_V2_IP), 'srcIp': dev_groups[tg_ports[1]][0]['ip'], 'dstIp': IGMP_LEAVE_V2_IP, 'ipproto': 'igmpv2', 'totalLength': '28', 'igmpType': '23', 'igmpGroupAddr': mcast_group1, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1, }} await tgen_utils_stop_traffic(tgen_dev) await asyncio.sleep(6) await tgen_utils_clear_traffic_items(tgen_dev, traffic_names=['member_report1']) await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream_leave) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 11.Verify its MDB entry is deleted and no traffic is received mdb_entires, _ = await get_bridge_mdb(dev_name) verify_mdb_entries(mdb_entires, [dut_ports[2]], [mcast_group2]) for entry in mdb_entires: > assert dut_ports[1] != entry['port'], f'Mdb entry of port {dut_ports[1]} still exists: \n{mdb_entires}' E AssertionError: Mdb entry of port swp2 still exists: E [{'index': 104, 'dev': 'br0', 'port': 'swp2', 'grp': '227.1.1.1', 'state': 'temp', 'protocol': 'kernel', 'flags': ['offload'], 'vid': 1, 'timer': ' 136.80'}, {'index': 104, 'dev': 'br0', 'port': 'swp3', 'grp': '239.2.2.2', 'state': 'temp', 'protocol': 'kernel', 'flags': ['offload'], 'vid': 1, 'timer': ' 257.78'}] E assert 'swp2' != 'swp2' /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:328: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[2-1]">Starting testcase:test_igmp_snooping_mixed_ver[2-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6011' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=103, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=104] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=104] Local address: 172.17.0.4, port 55248 INFO asyncssh:logging.py:92 [conn=104] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=104] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=104] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:20:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=104, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=104, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=104, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=104, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=104, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=104, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=104, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=104, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=104, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp2 INFO asyncssh:logging.py:92 [conn=104, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=10] Command: bridge link set dev swp2 INFO asyncssh:logging.py:92 [conn=104, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=104, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":104,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.78"},{"index":104,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.78"},{"index":104,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 118.94"},{"index":104,"dev":"br0","port":"br0","grp":"ff02::1:ff3a:80c4","state":"temp","flags":[],"vid":1,"timer":" 118.94"}],"router":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a25f4730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 14409114 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 14405060 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 14405060 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 14405061 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=104, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":104,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.78"},{"index":104,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.78"},{"index":104,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 5.69"},{"index":104,"dev":"br0","port":"br0","grp":"ff02::1:ff3a:80c4","state":"temp","flags":[],"vid":1,"timer":" 5.69"}],"router":{"br0":[{"port":"swp1","timer":" 252.78","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a25f63b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 27388488 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 13697068 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 13684003 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 3257 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_leave INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=104, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=16] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":104,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 136.80"},{"index":104,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.78"}],"router":{"br0":[{"port":"swp1","timer":" 252.78","type":"temp"}]}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[2-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=104, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:27:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=104, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=104, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=104, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":104,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=104, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=104, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=104, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-1] | 434.14 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> igmp_ver = 3, igmp_msg_ver = 1 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) # 6.Verify the multicast traffic is flooded to all bridge ports await asyncio.sleep(sleep_value) stats = await tgen_utils_get_traffic_stats(tgen_dev) verify_expected_rx_rate(stats, tx_port, rx_ports) # 7.Stop traffic, create a general query stream from tx_port and send traffic await tgen_utils_stop_traffic(tgen_dev) await asyncio.sleep(6) stream_query = {'igmp_query': { 'type': 'raw', 'protocol': 'ip', 'frameSize': '74', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(GENERAL_QUERY_IP), 'srcIp': dev_groups[tg_ports[0]][0]['ip'], 'dstIp': GENERAL_QUERY_IP, 'ipproto': 'igmpv2', 'totalLength': '28', 'igmpType': '17', 'igmpGroupAddr': '0.0.0.0', 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 }} await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream_query) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 8.Verify MDB entries were created for router _, router_entires = await get_bridge_mdb(dev_name) assert len(router_entires), f'No MDB router entries were added to bridge MDB table {router_entires}' # 9.Verify the traffic is forwarded to the members only await asyncio.sleep(15) stats = await tgen_utils_get_traffic_stats(tgen_dev) verify_expected_rx_rate(stats, tx_port, rx_ports[:-1], rate_coef=0.5) # Verify rx_port have 0 rx_rate possbile deviation 1000 Bps, due to some pkt's can pass through the port for row in stats.Rows: if row['Port Name'] == rx_ports[-1].split('_')[0]: assert int(row['Bytes Rx. Rate']) <= DEVIATION_BPS, f"Actual rate {row['Bytes Rx. Rate']} expected rate 0" # 10.Create and send Leave stream from first rx_port stream_leave = {'igmp_leave': { 'type': 'raw', 'protocol': 'ip', 'frameSize': '74', 'ip_source': rx_ports[0], 'ip_destination': tx_port, 'srcMac': macs[1], 'dstMac': mcast_ip_to_mac(IGMP_LEAVE_V2_IP), 'srcIp': dev_groups[tg_ports[1]][0]['ip'], 'dstIp': IGMP_LEAVE_V2_IP, 'ipproto': 'igmpv2', 'totalLength': '28', 'igmpType': '23', 'igmpGroupAddr': mcast_group1, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1, }} await tgen_utils_stop_traffic(tgen_dev) await asyncio.sleep(6) await tgen_utils_clear_traffic_items(tgen_dev, traffic_names=['member_report1']) await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream_leave) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 11.Verify its MDB entry is deleted and no traffic is received mdb_entires, _ = await get_bridge_mdb(dev_name) verify_mdb_entries(mdb_entires, [dut_ports[2]], [mcast_group2]) for entry in mdb_entires: > assert dut_ports[1] != entry['port'], f'Mdb entry of port {dut_ports[1]} still exists: \n{mdb_entires}' E AssertionError: Mdb entry of port swp2 still exists: E [{'index': 105, 'dev': 'br0', 'port': 'swp2', 'grp': '227.1.1.1', 'state': 'temp', 'filter_mode': 'exclude', 'protocol': 'kernel', 'flags': ['offload'], 'vid': 1, 'timer': ' 138.19'}, {'index': 105, 'dev': 'br0', 'port': 'swp3', 'grp': '239.2.2.2', 'state': 'temp', 'filter_mode': 'exclude', 'protocol': 'kernel', 'flags': ['offload'], 'vid': 1, 'timer': ' 257.78'}] E assert 'swp2' != 'swp2' /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:328: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-1]">Starting testcase:test_igmp_snooping_mixed_ver[3-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6041' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=104, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=105] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=105] Local address: 172.17.0.4, port 41512 INFO asyncssh:logging.py:92 [conn=105] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=105] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=105] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:27:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=105, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=105, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=105, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=105, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=105, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=105, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=105, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=105, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=105, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp2 INFO asyncssh:logging.py:92 [conn=105, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=10] Command: bridge link set dev swp2 INFO asyncssh:logging.py:92 [conn=105, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=105, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":105,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.77"},{"index":105,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.77"},{"index":105,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 118.96"},{"index":105,"dev":"br0","port":"br0","grp":"ff02::1:ff2e:87db","state":"temp","flags":[],"vid":1,"timer":" 118.96"}],"router":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2662ef0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 13348804 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 13344306 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 13344306 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 13344307 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=105, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":105,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.76"},{"index":105,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.76"},{"index":105,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 6.47"},{"index":105,"dev":"br0","port":"br0","grp":"ff02::1:ff2e:87db","state":"temp","flags":[],"vid":1,"timer":" 6.47"}],"router":{"br0":[{"port":"swp1","timer":" 252.76","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2661b70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 27070563 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 13539172 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 13526108 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 5394 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_leave INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=105, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=16] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":105,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 138.19"},{"index":105,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.78"}],"router":{"br0":[{"port":"swp1","timer":" 252.78","type":"temp"}]}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=105, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:34:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=105, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=105, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=105, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":105,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=105, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=105, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=105, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-2] | 436.57 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> igmp_ver = 3, igmp_msg_ver = 2 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) # 6.Verify the multicast traffic is flooded to all bridge ports await asyncio.sleep(sleep_value) stats = await tgen_utils_get_traffic_stats(tgen_dev) verify_expected_rx_rate(stats, tx_port, rx_ports) # 7.Stop traffic, create a general query stream from tx_port and send traffic await tgen_utils_stop_traffic(tgen_dev) await asyncio.sleep(6) stream_query = {'igmp_query': { 'type': 'raw', 'protocol': 'ip', 'frameSize': '74', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(GENERAL_QUERY_IP), 'srcIp': dev_groups[tg_ports[0]][0]['ip'], 'dstIp': GENERAL_QUERY_IP, 'ipproto': 'igmpv2', 'totalLength': '28', 'igmpType': '17', 'igmpGroupAddr': '0.0.0.0', 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 }} await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream_query) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 8.Verify MDB entries were created for router _, router_entires = await get_bridge_mdb(dev_name) assert len(router_entires), f'No MDB router entries were added to bridge MDB table {router_entires}' # 9.Verify the traffic is forwarded to the members only await asyncio.sleep(15) stats = await tgen_utils_get_traffic_stats(tgen_dev) verify_expected_rx_rate(stats, tx_port, rx_ports[:-1], rate_coef=0.5) # Verify rx_port have 0 rx_rate possbile deviation 1000 Bps, due to some pkt's can pass through the port for row in stats.Rows: if row['Port Name'] == rx_ports[-1].split('_')[0]: assert int(row['Bytes Rx. Rate']) <= DEVIATION_BPS, f"Actual rate {row['Bytes Rx. Rate']} expected rate 0" # 10.Create and send Leave stream from first rx_port stream_leave = {'igmp_leave': { 'type': 'raw', 'protocol': 'ip', 'frameSize': '74', 'ip_source': rx_ports[0], 'ip_destination': tx_port, 'srcMac': macs[1], 'dstMac': mcast_ip_to_mac(IGMP_LEAVE_V2_IP), 'srcIp': dev_groups[tg_ports[1]][0]['ip'], 'dstIp': IGMP_LEAVE_V2_IP, 'ipproto': 'igmpv2', 'totalLength': '28', 'igmpType': '23', 'igmpGroupAddr': mcast_group1, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1, }} await tgen_utils_stop_traffic(tgen_dev) await asyncio.sleep(6) await tgen_utils_clear_traffic_items(tgen_dev, traffic_names=['member_report1']) await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream_leave) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 11.Verify its MDB entry is deleted and no traffic is received mdb_entires, _ = await get_bridge_mdb(dev_name) verify_mdb_entries(mdb_entires, [dut_ports[2]], [mcast_group2]) for entry in mdb_entires: > assert dut_ports[1] != entry['port'], f'Mdb entry of port {dut_ports[1]} still exists: \n{mdb_entires}' E AssertionError: Mdb entry of port swp2 still exists: E [{'index': 106, 'dev': 'br0', 'port': 'swp2', 'grp': '227.1.1.1', 'state': 'temp', 'filter_mode': 'exclude', 'protocol': 'kernel', 'flags': ['offload'], 'vid': 1, 'timer': ' 136.27'}, {'index': 106, 'dev': 'br0', 'port': 'swp3', 'grp': '239.2.2.2', 'state': 'temp', 'filter_mode': 'exclude', 'protocol': 'kernel', 'flags': ['offload'], 'vid': 1, 'timer': ' 257.76'}] E assert 'swp2' != 'swp2' /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:328: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-2]">Starting testcase:test_igmp_snooping_mixed_ver[3-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6071' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=105, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=106] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=106] Local address: 172.17.0.4, port 56816 INFO asyncssh:logging.py:92 [conn=106] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=106] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=106] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=106, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:34:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=106, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=106, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=106, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=106, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=106, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=106, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=106, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=106, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=106, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp2 INFO asyncssh:logging.py:92 [conn=106, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=10] Command: bridge link set dev swp2 INFO asyncssh:logging.py:92 [conn=106, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=106, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":106,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.80"},{"index":106,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.80"},{"index":106,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 117.60"},{"index":106,"dev":"br0","port":"br0","grp":"ff02::1:ff90:c857","state":"temp","flags":[],"vid":1,"timer":" 117.60"}],"router":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a25b91b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 11616842 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 11612761 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 11612761 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 11612762 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=106, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":106,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.75"},{"index":106,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.75"},{"index":106,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 4.04"},{"index":106,"dev":"br0","port":"br0","grp":"ff02::1:ff90:c857","state":"temp","flags":[],"vid":1,"timer":" 4.04"}],"router":{"br0":[{"port":"swp1","timer":" 252.75","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a276ca30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 24193547 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 12100109 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 12087039 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 4287 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_leave INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=106, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=16] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":106,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 136.27"},{"index":106,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 257.76"}],"router":{"br0":[{"port":"swp1","timer":" 252.76","type":"temp"}]}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=106, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=106, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:41:52 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=106, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=106, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=106, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":106,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=106, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=106, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=106, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_modified_query | 211.53 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> async def test_igmp_snooping_modified_query(testbed): """ Test Name: test_igmp_querier Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping with modified querier interval Test Procedure: 1. Create a bridge and enable IGMP Snooping, enable querrier and change query interval Enslave all TG ports to bridge interface and config fastleave on 1st rx_port 2. Init interfaces and create 2 multicast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created for clients and router 6. Verify the multicast traffic is flooded to all bridge ports except last client 7. Create and send leave stream from 1st client 8. Verify MDB entry is deleted 9. Verify no traffic is received on the port that left the group """ bridge = 'br0' querrier_interval = 10 sleep_value = 5 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] # 1.Create a bridge and enable IGMP Snooping, enable querrier and change query interval # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, 2, dut_ports, querier_interval=querrier_interval) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 multicast Streams # 3.Create 3 membership report streams, 1 with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(mcast_group), 'srcIp': '0.0.0.0', 'dstIp': mcast_group, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, mcast_group in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': combined[1], 'dstMac': mcast_ip_to_mac(combined[0]), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': combined[0], 'ipproto': 'igmpv2', 'totalLength': '28', 'igmpType': '22', 'igmpGroupAddr': combined[0], 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1, } for idx, combined in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from router port and from clients await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(querrier_interval + 5) # 5.Verify Mdb entries were created for clients and router mdb_entires, router_entires = await get_bridge_mdb(dev_name) verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) > assert len(router_entires), f'No MDB router entries were added to bridge MDB table {router_entires}' E AssertionError: No MDB router entries were added to bridge MDB table {} E assert 0 E + where 0 = len({}) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:589: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_modified_query">Starting testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6129' coro=<test_igmp_snooping_modified_query() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:513> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=107, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=108] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=108] Local address: 172.17.0.4, port 48504 INFO asyncssh:logging.py:92 [conn=108] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=108] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=108] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:46:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=108, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=108, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=108, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=108, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=108, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=108, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=108, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=108, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=8] Command: ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=108, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=108, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=10] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=108, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp2 INFO asyncssh:logging.py:92 [conn=108, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=12] Command: bridge link set dev swp2 INFO asyncssh:logging.py:92 [conn=108, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=108, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=108, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=108, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":108,"dev":"br0","port":"swp2","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 250.80"},{"index":108,"dev":"br0","port":"swp3","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 250.80"},{"index":108,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 211.80"},{"index":108,"dev":"br0","port":"br0","grp":"ff02::1:ff8b:ee48","state":"temp","flags":[],"vid":1,"timer":" 216.15"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=108, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:49:31 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=108, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=108, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=108, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":108,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=108, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=108, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=108, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=20] Channel closed DEBUG agg1:Logger.py:156 | |||
| Failed | functional/lacp/test_lacp_loopback_detection.py::test_lacp_loopback_detection[rstp] | 263.30 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> version = 'rstp' @pytest.mark.parametrize('version', ['rstp', 'stp']) async def test_lacp_loopback_detection(testbed, version): """ Test Name: LACP STP/RSTP interaction Test Suite: suite_functional_lacp Test Overview: Test stp/rstp loopback detection Test Procedure: 1. Create bridge bridge_1 and 6 bonds and set link up on them 2. Enslave ports to bonds, bonds to bridges 4. Set link up on all participant ports, bonds, bridges 5. Wait until topology converges 6. Send broadcast traffic for a random time between 30-60 seconds. 7. Verify device remain stable afterwards (during storming). Verify there is a storming 8. Set bridge stp_state to 1 9. Verify that afterwards all bonds with the lowest number within a loopback connection are blocked. 10. Verify that the rate on Ixia ports is 0 (storming has stopped) """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] dut_ixia_ports = tgen_dev.links_dict[dent][1] bonds = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): bonds[f'bond_{idx+1}'] = port bridge = 'bridge_1' wait_time = 40 if version == 'stp' else 20 # 1. Create bridge entities and 6 bonds and set link up on them out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'stp_state': 0}]}]) # stp not enabled assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave ports according to the test's setup topology out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bond}]} for bond, port in bonds.items()]) assert out[0][dent]['rc'] == 0, 'Failed enslaving port to bond' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'master': bridge} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving bond to bridge' out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bridge} for port in dut_ixia_ports]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving bond to bridge' # 4. Set link up on all participant ports, bonds, bridges out = await IpLink.set( input_data=[{dent: [{'device': port_in_bond, 'operstate': 'up'} for port_in_bond in bonds.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in dut_ixia_ports]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'}]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' # 5. Wait until topology converges await asyncio.sleep(wait_time) # 6. Send broadcast traffic for a random time between 30-60 seconds. dev_groups = tgen_utils_dev_groups_from_config(( {'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24}, )) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ixia_ports, dev_groups) tx_ports = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = { f'{rx_ports} -> Broadcast': { 'type': 'raw', 'ip_source': tx_ports, 'ip_destination': rx_ports, 'srcMac': 'aa:bb:cc:dd:ee:ff', 'dstMac': 'ff:ff:ff:ff:ff:ff', 'frame_rate_type': 'line_rate', 'rate': 5 } } await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(wait_time) await tgen_utils_stop_traffic(tgen_dev) # 7. Verify device remain stable afterwards (during storming). rc, out = await device.run_cmd("echo 'Hello World'") assert rc == 0, 'FAIL: DUT crashed due to storming' assert out.strip() == 'Hello World', f'Expected <Hello World> got {out}' stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Port Statistics') # Verify there is storming for row in stats.Rows: if row['Port Name'] == tg_ports[0]: err_msg = f'Expected 1400 got : {float(row["Rx. Rate (Mbps)"])}' assert float(row['Rx. Rate (Mbps)']) > 1400, err_msg # 8. Set bridge stp_state to 1. out = await IpLink.set(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'stp_state': 1}]}]) # stp enabled assert out[0][dent]['rc'] == 0, 'Failed to enable stp on bridge' out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge with mstpd' out = await Mstpctl.set(input_data=[{dent: [{ 'bridge': bridge, 'parameter': 'forcevers', 'version': version}]}]) assert out[0][dent]['rc'] == 0, 'Failed to set stp/rstp version' await asyncio.sleep(wait_time) out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge with mstpd' out = await Mstpctl.set(input_data=[{dent: [{ 'bridge': bridge, 'parameter': 'forcevers', 'version': version}]}]) assert out[0][dent]['rc'] == 0, 'Failed to set stp/rstp version' out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'portdetail', 'bridge': bridge, 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, f'Failed to get port detail of {bridge}' # 9. Verify that afterwards all bonds with the lowest number within a loopback connection are blocked. for dev in out[0][dent]['parsed_output']: if dev['port'] in list(bonds)[3:]: assert dev['state'] == 'discarding' await asyncio.sleep(wait_time) # 10. Verify that the rate on Ixia ports is 0 (storming has stopped) stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Port Statistics') for row in stats.Rows: if row['Port Name'] == tg_ports[0]: err_msg = f'Expected 0 got : {float(row["Rx. Rate (Mbps)"])}' > assert isclose(float(row['Rx. Rate (Mbps)']), 0, rel_tol=0.1), err_msg E AssertionError: Expected 0 got : 0.001 E assert False E + where False = isclose(0.001, 0, rel_tol=0.1) E + where 0.001 = float('0.001') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py:166: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_loopback_detection[rstp]">Starting testcase:test_lacp_loopback_detection[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8741' coro=<test_lacp_loopback_detection() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py:35> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=157] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=157] Local address: 172.17.0.4, port 43256 INFO asyncssh:logging.py:92 [conn=157] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=157] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=157] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:55:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=157, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=157, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=157, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=157, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=4] Command: ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=157, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=157, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=6] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=157, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=157, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=8] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=157, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=157, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=10] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=157, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=157, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=12] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=157, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=157, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=14] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=157, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=157, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=16] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=157, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 && ip link set dev bond_4 master bridge_1 && ip link set dev bond_5 master bridge_1 && ip link set dev bond_6 master bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=18] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 && ip link set dev bond_4 master bridge_1 && ip link set dev bond_5 master bridge_1 && ip link set dev bond_6 master bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bridge_1 && ip link set dev swp2 master bridge_1 && ip link set dev swp3 master bridge_1 && ip link set dev swp4 master bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=20] Command: ip link set dev swp1 master bridge_1 && ip link set dev swp2 master bridge_1 && ip link set dev swp3 master bridge_1 && ip link set dev swp4 master bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=157, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=22] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=157, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=157, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=24] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=157, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=157, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=26] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=157, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=157, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=28] Command: ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=157, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:1:6_1.1.1.3/24', '10.36.118.199:1:7_1.1.1.4/24', '10.36.118.199:1:8_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=157, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=29] Channel closed DEBUG agg1:Logger.py:156 echo 'Hello World' INFO asyncssh:logging.py:92 [conn=157, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=30] Command: echo 'Hello World' INFO asyncssh:logging.py:92 [conn=157, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=30] Channel closed DEBUG agg1:Logger.py:156 Hello World INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a227a0e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 3823452 Rx 197408294 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 196928912 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 197006544 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 197016091 INFO asyncssh:logging.py:92 [conn=157, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=157, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=32] Command: ip link set dev bridge_1 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=157, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=33] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=34] Command: mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=35] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers bridge_1 rstp INFO asyncssh:logging.py:92 [conn=157, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=36] Command: mstpctl setforcevers bridge_1 rstp INFO asyncssh:logging.py:92 [conn=157, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=37] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=38] Command: mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=39] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers bridge_1 rstp INFO asyncssh:logging.py:92 [conn=157, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=40] Command: mstpctl setforcevers bridge_1 rstp INFO asyncssh:logging.py:92 [conn=157, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=41] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=42] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"port":"bond_1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"1","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_2","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"1","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_3","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"1","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_4","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.004","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_5","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.005","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"10","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_6","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.006","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"8","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.007","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.007","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp2","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.008","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.008","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp3","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.009","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.009","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp4","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.00A","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.00A","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a25c0430>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 5097892 Rx 288712356 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 288072315 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 288177866 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 288190278 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_loopback_detection[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py INFO asyncssh:logging.py:92 [conn=157, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=44] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:59:43 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=157, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=157, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=46] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=157, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":141,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=157, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=48] Command: ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=49] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=50] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:59:44 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=157, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=157, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=52] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=157, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0f","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:10","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":135,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":136,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":137,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:10"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":138,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":139,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":140,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0f"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=157, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=157, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=54] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=157, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=157, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=56] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=157, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=157, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=58] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=157, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=157, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=60] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=157, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=157, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=62] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=157, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=62] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=157, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=64] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=157, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=65] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=66] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:59:46 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/lacp/test_lacp_no_traffic.py::test_lacp_unsupported_modes | 0.91 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> async def test_lacp_unsupported_modes(testbed): """ Test Name: LACP unsupported modes Test Suite: suite_functional_lacp Test Overview: Test lacp unsupported modes state Test Procedure: 1. Create bond devices with unsupported modes : 'balance-rr', 'broadcast', 'balance-tlb', 'balance-alb' 2. Try to set created bond devices to `up` state 3. Verify bond(s) with unsupported modes are in `down` state """ dent_devices = await tb_get_all_devices(testbed) device = dent_devices[0].host_name unsupported_modes = ['balance-rr', 'broadcast', 'balance-tlb', 'balance-alb'] # 1. Create bond devices with unsupported modes : 'balance-rr', 'broadcast', 'balance-tlb', 'balance-alb' out = await IpLink.add(input_data=[{device: [ {'device': f'bond_{unsupported_modes.index(mode)}', 'type': 'bond', 'mode': mode} for mode in unsupported_modes]}]) assert out[0][device]['rc'] == 0, 'Fail to create bond(s)' # 2. Try to set created bond devices to `up` state out = await IpLink.set(input_data=[{device: [ {'device': f'bond_{unsupported_modes.index(mode)}', 'operstate': 'up'} for mode in unsupported_modes]}]) assert out[0][device]['rc'] == 0, 'Fail to set bond(s) to up state' # 3. Verify bond(s) with unsupported modes are in `down` state for mode in unsupported_modes: out = await IpLink.show(input_data=[{device: [{'device': f'bond_{unsupported_modes.index(mode)}', 'cmd_options': '-j'}]}], parse_output=True) err_msg = f'Bond bond_{unsupported_modes.index(mode)} with unsupported mode {mode} is in `UP` state' > assert out[0][device]['parsed_output'][0]['operstate'] == 'DOWN', err_msg E AssertionError: Bond bond_1 with unsupported mode broadcast is in `UP` state E assert 'UNKNOWN' == 'DOWN' E - DOWN E + UNKNOWN /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:52: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_unsupported_modes">Starting testcase:test_lacp_unsupported_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8973' coro=<test_lacp_unsupported_modes() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:30> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=159, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=160] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=160] Local address: 172.17.0.4, port 45858 INFO asyncssh:logging.py:92 [conn=160] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=160] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=160] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:05:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=160, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_0 type bond mode balance-rr && ip link add bond_1 type bond mode broadcast && ip link add bond_2 type bond mode balance-tlb && ip link add bond_3 type bond mode balance-alb INFO asyncssh:logging.py:92 [conn=160, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=2] Command: ip link add bond_0 type bond mode balance-rr && ip link add bond_1 type bond mode broadcast && ip link add bond_2 type bond mode balance-tlb && ip link add bond_3 type bond mode balance-alb INFO asyncssh:logging.py:92 [conn=160, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_0 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=160, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=4] Command: ip link set dev bond_0 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=160, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip -j link show bond_0 INFO asyncssh:logging.py:92 [conn=160, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=6] Command: ip -j link show bond_0 INFO asyncssh:logging.py:92 [conn=160, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=6] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":150,"ifname":"bond_0","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:cb:37:29:de:6d","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=160, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip -j link show bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=8] Command: ip -j link show bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=8] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":151,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"02:24:ea:03:70:a7","broadcast":"ff:ff:ff:ff:ff:ff"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_unsupported_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=10] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:05:36 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=160, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=160, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=12] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=160, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":150,"ifname":"bond_0","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:cb:37:29:de:6d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":151,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"02:24:ea:03:70:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"broadcast","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":152,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"2e:d4:2d:20:25:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-tlb","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":153,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"1a:75:f4:0c:38:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-alb","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=160, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=160, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=14] Command: ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=160, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=16] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=18] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=160, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=20] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=160, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:05:37 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/lacp/test_lacp_root_bridge_stp_rstp.py::test_lacp_root_bridge_selection_stp[stp] | 45.34 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> version = 'stp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_lacp_root_bridge_selection_stp(testbed, version): """ Test Name: LACP STP/RSTP interaction Test Suite: suite_functional_lacp Test Overview: Test root bridge selection based on MAC rule Test Procedure: 1. Create 3 bridge entities and 6 bonds and set link up on them 2. Enslave ports according to the test's setup topology 3. Change the MAC addresses for all bridges. 4. Set link up on all participant ports 5. Wait until topology converges 6. Verify the bridge root is bridge_1 by the lowest MAC rule. Other bridges are not root bridges 7. Verify bridge_3 has a blocking port 8. Verify bridge_1 doesn't have any blocking port. 9. Change bridge_3 priority to a priority with lower value then the root bridge. 10. Wait ~10 seconds for topology to re-build. 11. Verify bridge_3 has become the new root bridge. 12. Verify bridge_2 has a blocking port 13 Verify bridge_1 doesn't have any blocking port. """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name bonds = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): bonds[f'bond_{idx+1}'] = port bond_to_bridges = list(bonds.keys()) bridges = { 'bridge_1': bond_to_bridges[:2], 'bridge_2': bond_to_bridges[2:4], 'bridge_3': bond_to_bridges[4:] } bridge_names = list(bridges.keys()) hw_mac = ['22:AA:98:EA:D2:43', '44:0A:D1:68:4E:B9', '66:2A:31:66:1C:CD'] time_to_wait = 40 if version == 'stp' else 20 # 1. Create 3 bridge entities and 6 bonds and set link up on them out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'stp_state': 1} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge with mstpd' out = await Mstpctl.set(input_data=[{dent: [{ 'bridge': bridge, 'parameter': 'forcevers', 'version': version} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to set stp/rstp version' # 2. Enslave ports according to the test's setup topology out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bond}]} for bond, port in bonds.items()]) assert out[0][dent]['rc'] == 0, 'Failed enslaving port to bond' for bridge, lags in bridges.items(): out = await IpLink.set(input_data=[{dent: [{'device': lag, 'master': bridge} for lag in lags]}]) assert out[0][dent]['rc'] == 0, f'Failed enslaving lag to {bridge}' # 3. Change the MAC addresses for all bridges for bridge, mac in zip(bridge_names, hw_mac): rc, _ = await device.run_cmd(f'ifconfig {bridge} hw ether {mac}') assert rc == 0, 'Failed to change MAC address' # 4. Set link up on all participant ports out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in bonds.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' for bridge, bonds in bridges.items(): out = await Mstpctl.set(input_data=[{dent: [{ 'bridge': bridge, 'parameter': 'portpathcost', 'port': bond, 'cost': 1000} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting port pathcost' # 5. Wait until topology converges await asyncio.sleep(time_to_wait) # 6. Verify the bridge root is bridge_1 by the lowest MAC rule out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge_names[0], 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' assert out[0][dent]['parsed_output'][0][ 'root-port'] == '', f'Bridge { bridge_names[0]} is not a root bridge' # Other bridges do not consider themselves as root bridge for bridge in bridge_names[1:]: out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge, 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' assert out[0][dent]['parsed_output'][0][ 'root-port'] != '', f'Bridge { bridge_names[1]} or {bridge_names[2]} is a root bridge' # 7. Verify bridge_3 has a blocking port out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'portdetail', 'bridge': bridge_names[2], 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, f'Failed to get port detail of {bridge_names[2]}' ports_state = [bond['state'] for bond in out[0][dent]['parsed_output']] > assert 'discarding' in ports_state, f'Bridge {bridge_names[2]} does not have a blocking port' E AssertionError: Bridge bridge_3 does not have a blocking port E assert 'discarding' in ['forwarding', 'forwarding'] /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py:133: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_root_bridge_selection_stp[stp]">Starting testcase:test_lacp_root_bridge_selection_stp[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9190' coro=<test_lacp_root_bridge_selection_stp() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py:34> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=163] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=163] Local address: 172.17.0.4, port 54130 INFO asyncssh:logging.py:92 [conn=163] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=163] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=163] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:06:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=163, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=163, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=163, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=163, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=4] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=163, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=5] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=6] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=7] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=163, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=8] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=163, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=163, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=10] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=163, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=163, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=12] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=163, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=163, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=14] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=163, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=163, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=14] Channel closed DEBUG agg1:Logger.py:156 Error: Device can not be enslaved while up. INFO asyncssh:logging.py:92 [conn=163, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=163, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=16] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=163, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=163, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=18] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=163, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=163, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=20] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=163, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=163, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=22] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=163, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=163, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=24] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=163, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=26] Command: ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=27] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=163, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=28] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=163, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=29] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=163, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=30] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=163, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=31] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_3 hw ether 66:2A:31:66:1C:CD INFO asyncssh:logging.py:92 [conn=163, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=32] Command: ifconfig bridge_3 hw ether 66:2A:31:66:1C:CD INFO asyncssh:logging.py:92 [conn=163, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=163, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=34] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=163, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=163, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=36] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=163, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=163, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=38] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=163, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=39] Channel closed DEBUG agg1:Logger.py:156 mstpctl setportpathcost bridge_1 bond_1 1000 && mstpctl setportpathcost bridge_1 bond_2 1000 INFO asyncssh:logging.py:92 [conn=163, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=40] Command: mstpctl setportpathcost bridge_1 bond_1 1000 && mstpctl setportpathcost bridge_1 bond_2 1000 INFO asyncssh:logging.py:92 [conn=163, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=41] Channel closed DEBUG agg1:Logger.py:156 mstpctl setportpathcost bridge_2 bond_3 1000 && mstpctl setportpathcost bridge_2 bond_4 1000 INFO asyncssh:logging.py:92 [conn=163, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=42] Command: mstpctl setportpathcost bridge_2 bond_3 1000 && mstpctl setportpathcost bridge_2 bond_4 1000 INFO asyncssh:logging.py:92 [conn=163, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=43] Channel closed DEBUG agg1:Logger.py:156 mstpctl setportpathcost bridge_3 bond_5 1000 && mstpctl setportpathcost bridge_3 bond_6 1000 INFO asyncssh:logging.py:92 [conn=163, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=44] Command: mstpctl setportpathcost bridge_3 bond_5 1000 && mstpctl setportpathcost bridge_3 bond_6 1000 INFO asyncssh:logging.py:92 [conn=163, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=45] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=163, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=46] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=163, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"bond_1","last-topology-change-port":"bond_2"}] INFO asyncssh:logging.py:92 [conn=163, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=47] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=163, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=48] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=163, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=48] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"bond_4 (#2)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"23","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"bond_4"}] INFO asyncssh:logging.py:92 [conn=163, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=49] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=50] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=50] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"8.000.66:2A:31:66:1C:CD","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.66:2A:31:66:1C:CD","root-port":"bond_5 (#1)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"2","topology-change":"yes","topology-change-port":"bond_6","last-topology-change-port":"bond_5"}] INFO asyncssh:logging.py:92 [conn=163, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=51] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=52] Command: mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"port":"bond_5","bridge":"bridge_3","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"1000","internal-port-cost":"2000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"7","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"5","num-rx-tcn":"13","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_6","bridge":"bridge_3","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"1000","internal-port-cost":"2000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"1000","dsgn-regional-root":"8.000.66:2A:31:66:1C:CD","dsgn-internal-cost":"0","designated-bridge":"8.000.66:2A:31:66:1C:CD","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"22","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_root_bridge_selection_stp[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py INFO asyncssh:logging.py:92 [conn=163, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=53] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=54] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:06:45 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=163, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=163, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=56] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=163, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=56] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":225,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":226,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":227,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"66:2a:31:66:1c:cd","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=163, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=58] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=59] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=60] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:06:45 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=163, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=163, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=62] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=163, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=62] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:10","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":219,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":220,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":221,"ifname":"bond_3","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:14:78:a8:c1:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":222,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":223,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":224,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=163, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=163, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=64] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=163, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=163, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=66] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=163, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=163, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=68] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=163, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=69] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=163, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=70] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=163, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=70] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=71] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=163, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=72] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=163, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=72] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=163, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=74] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=163, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=74] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=75] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=76] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:06:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/lacp/test_lacp_root_bridge_stp_rstp.py::test_lacp_root_bridge_selection_stp[rstp] | 25.31 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> version = 'rstp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_lacp_root_bridge_selection_stp(testbed, version): """ Test Name: LACP STP/RSTP interaction Test Suite: suite_functional_lacp Test Overview: Test root bridge selection based on MAC rule Test Procedure: 1. Create 3 bridge entities and 6 bonds and set link up on them 2. Enslave ports according to the test's setup topology 3. Change the MAC addresses for all bridges. 4. Set link up on all participant ports 5. Wait until topology converges 6. Verify the bridge root is bridge_1 by the lowest MAC rule. Other bridges are not root bridges 7. Verify bridge_3 has a blocking port 8. Verify bridge_1 doesn't have any blocking port. 9. Change bridge_3 priority to a priority with lower value then the root bridge. 10. Wait ~10 seconds for topology to re-build. 11. Verify bridge_3 has become the new root bridge. 12. Verify bridge_2 has a blocking port 13 Verify bridge_1 doesn't have any blocking port. """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name bonds = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): bonds[f'bond_{idx+1}'] = port bond_to_bridges = list(bonds.keys()) bridges = { 'bridge_1': bond_to_bridges[:2], 'bridge_2': bond_to_bridges[2:4], 'bridge_3': bond_to_bridges[4:] } bridge_names = list(bridges.keys()) hw_mac = ['22:AA:98:EA:D2:43', '44:0A:D1:68:4E:B9', '66:2A:31:66:1C:CD'] time_to_wait = 40 if version == 'stp' else 20 # 1. Create 3 bridge entities and 6 bonds and set link up on them out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'stp_state': 1} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge with mstpd' out = await Mstpctl.set(input_data=[{dent: [{ 'bridge': bridge, 'parameter': 'forcevers', 'version': version} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to set stp/rstp version' # 2. Enslave ports according to the test's setup topology out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bond}]} for bond, port in bonds.items()]) assert out[0][dent]['rc'] == 0, 'Failed enslaving port to bond' for bridge, lags in bridges.items(): out = await IpLink.set(input_data=[{dent: [{'device': lag, 'master': bridge} for lag in lags]}]) assert out[0][dent]['rc'] == 0, f'Failed enslaving lag to {bridge}' # 3. Change the MAC addresses for all bridges for bridge, mac in zip(bridge_names, hw_mac): rc, _ = await device.run_cmd(f'ifconfig {bridge} hw ether {mac}') assert rc == 0, 'Failed to change MAC address' # 4. Set link up on all participant ports out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in bonds.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' for bridge, bonds in bridges.items(): out = await Mstpctl.set(input_data=[{dent: [{ 'bridge': bridge, 'parameter': 'portpathcost', 'port': bond, 'cost': 1000} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting port pathcost' # 5. Wait until topology converges await asyncio.sleep(time_to_wait) # 6. Verify the bridge root is bridge_1 by the lowest MAC rule out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge_names[0], 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' assert out[0][dent]['parsed_output'][0][ 'root-port'] == '', f'Bridge { bridge_names[0]} is not a root bridge' # Other bridges do not consider themselves as root bridge for bridge in bridge_names[1:]: out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge, 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' assert out[0][dent]['parsed_output'][0][ 'root-port'] != '', f'Bridge { bridge_names[1]} or {bridge_names[2]} is a root bridge' # 7. Verify bridge_3 has a blocking port out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'portdetail', 'bridge': bridge_names[2], 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, f'Failed to get port detail of {bridge_names[2]}' ports_state = [bond['state'] for bond in out[0][dent]['parsed_output']] > assert 'discarding' in ports_state, f'Bridge {bridge_names[2]} does not have a blocking port' E AssertionError: Bridge bridge_3 does not have a blocking port E assert 'discarding' in ['forwarding', 'forwarding'] /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py:133: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_root_bridge_selection_stp[rstp]">Starting testcase:test_lacp_root_bridge_selection_stp[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9279' coro=<test_lacp_root_bridge_selection_stp() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py:34> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=164] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=164] Local address: 172.17.0.4, port 53408 INFO asyncssh:logging.py:92 [conn=164] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=164] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=164] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:06:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=164, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=164, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=164, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=164, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=4] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=164, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=5] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=6] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=7] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=164, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=8] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=164, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=10] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=12] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=14] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=164, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=14] Channel closed DEBUG agg1:Logger.py:156 Error: Device can not be enslaved while up. INFO asyncssh:logging.py:92 [conn=164, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=164, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=16] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=164, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=164, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=18] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=164, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=164, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=20] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=164, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=22] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=164, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=24] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=164, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=26] Command: ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=27] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=164, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=28] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=164, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=29] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=164, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=30] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=164, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=31] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_3 hw ether 66:2A:31:66:1C:CD INFO asyncssh:logging.py:92 [conn=164, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=32] Command: ifconfig bridge_3 hw ether 66:2A:31:66:1C:CD INFO asyncssh:logging.py:92 [conn=164, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=164, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=34] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=164, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=164, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=36] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=164, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=164, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=38] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=164, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=39] Channel closed DEBUG agg1:Logger.py:156 mstpctl setportpathcost bridge_1 bond_1 1000 && mstpctl setportpathcost bridge_1 bond_2 1000 INFO asyncssh:logging.py:92 [conn=164, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=40] Command: mstpctl setportpathcost bridge_1 bond_1 1000 && mstpctl setportpathcost bridge_1 bond_2 1000 INFO asyncssh:logging.py:92 [conn=164, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=41] Channel closed DEBUG agg1:Logger.py:156 mstpctl setportpathcost bridge_2 bond_3 1000 && mstpctl setportpathcost bridge_2 bond_4 1000 INFO asyncssh:logging.py:92 [conn=164, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=42] Command: mstpctl setportpathcost bridge_2 bond_3 1000 && mstpctl setportpathcost bridge_2 bond_4 1000 INFO asyncssh:logging.py:92 [conn=164, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=43] Channel closed DEBUG agg1:Logger.py:156 mstpctl setportpathcost bridge_3 bond_5 1000 && mstpctl setportpathcost bridge_3 bond_6 1000 INFO asyncssh:logging.py:92 [conn=164, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=44] Command: mstpctl setportpathcost bridge_3 bond_5 1000 && mstpctl setportpathcost bridge_3 bond_6 1000 INFO asyncssh:logging.py:92 [conn=164, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=45] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=46] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"15","topology-change-count":"1","topology-change":"no","topology-change-port":"bond_2","last-topology-change-port":"bond_1"}] INFO asyncssh:logging.py:92 [conn=164, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=47] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=164, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=48] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=164, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=48] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"bond_4 (#2)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"18","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"bond_4"}] INFO asyncssh:logging.py:92 [conn=164, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=49] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=50] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=50] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"8.000.66:2A:31:66:1C:CD","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.66:2A:31:66:1C:CD","root-port":"bond_5 (#1)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"17","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"bond_5"}] INFO asyncssh:logging.py:92 [conn=164, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=51] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=52] Command: mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"port":"bond_5","bridge":"bridge_3","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"1000","internal-port-cost":"2000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"12","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_6","bridge":"bridge_3","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"1000","internal-port-cost":"2000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"1000","dsgn-regional-root":"8.000.66:2A:31:66:1C:CD","dsgn-internal-cost":"0","designated-bridge":"8.000.66:2A:31:66:1C:CD","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"12","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_root_bridge_selection_stp[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py INFO asyncssh:logging.py:92 [conn=164, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=53] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=54] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:07:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=164, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=164, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=56] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=164, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=56] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":234,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":235,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":236,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"66:2a:31:66:1c:cd","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=164, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=58] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=59] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=60] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:07:10 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=164, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=164, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=62] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=164, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=62] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:10","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":228,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":229,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":230,"ifname":"bond_3","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"8a:81:1f:cd:b4:e1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":231,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":232,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":233,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=164, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=64] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=66] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=68] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=69] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=164, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=70] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=164, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=70] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=71] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=164, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=72] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=164, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=72] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=164, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=74] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=164, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=74] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=75] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=76] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:07:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/lacp/test_lacp_traffic_during_topology_convergence.py::test_lacp_traffic_during_topology_convergence[stp] | 205.52 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> version = 'stp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_lacp_traffic_during_topology_convergence(testbed, version): """ Test Name: LACP STP/RSTP interaction Test Suite: suite_functional_lacp Test Overview: Test lacp during stp/rstp topology convergence Test Procedure: 1. Create 3 bridge entities and 6 bonds and set link up on them 2. Enslave ports to bonds, bonds to bridges 3. Change all bridges MAC addresses 4. Set link up on all participant ports, bonds, bridges 5. Send broadcast traffic for a random time between 30-60 seconds. 6. Verify device remain stable afterwards (during storming) 7. Verify there is a storming 8. Set bridge stp_state to 1 9. Verify the bridge root is bridge_2 by the lowest MAC rule. Verify other bridges do not consider themselves as root-bridge 10. Verify bridge_1 has a blocking bond 11 .Verify bridge_3 do not have any blocking bond 12. Verify that the rate on other tgen ports is 0 (storming has stopped) 13. Send broadcast traffic for a random time between 30-60 seconds 14. Verify that traffic is flooded to other tgen ports 15. Stop the traffic; Verify there is no storming" """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] dut_tgen_ports = tgen_dev.links_dict[dent][1] bonds = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): bonds[f'bond_{idx+1}'] = port bond_to_bridges = list(bonds.keys()) bridges = { 'bridge_1': bond_to_bridges[:2], 'bridge_2': bond_to_bridges[2:4], 'bridge_3': bond_to_bridges[4:] } hw_mac = ['44:AA:98:EA:D2:43', '00:45:34:43:56:55', '22:0A:D1:68:4E:B9'] bridge_names = list(bridges.keys()) tolerance = 0.15 wait_time = 40 if 'version' == 'stp' else 20 # 1. Create 3 bridge entities and 6 bonds and set link up on them out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'stp_state': 0} for bridge in bridges]}]) # stp not enabled assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave ports to bonds, bonds to bridges out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bond}]} for bond, port in bonds.items()]) assert out[0][dent]['rc'] == 0, 'Failed enslaving bonds' for bridge, lags in bridges.items(): out = await IpLink.set(input_data=[{dent: [{'device': lag, 'master': bridge} for lag in lags]}]) assert out[0][dent]['rc'] == 0, f'Failed enslaving lag to {bridge}' out = await IpLink.set(input_data=[{dent: [{'device': dut_tgen_ports[0], 'master': bridge_names[0]}]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving port' out = await IpLink.set(input_data=[{dent: [{'device': dut_tgen_ports[1], 'master': bridge_names[1]}]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving port' # 3. Change the MAC addresses for all bridges for bridge, mac in zip(bridge_names, hw_mac): rc, _ = await device.run_cmd(f'ifconfig {bridge} hw ether {mac}') assert rc == 0, 'Failed to change MAC address' # 4. Set link up on all participant ports, bonds, bridges out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in bonds.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in dut_tgen_ports]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' # 5.Send broadcast traffic for a random time between 30-60 seconds. dev_groups = tgen_utils_dev_groups_from_config(( {'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24}, )) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_tgen_ports, dev_groups) tx_ports = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = { f'{rx_ports} -> Broadcast': { 'type': 'raw', 'ip_source': tx_ports, 'ip_destination': rx_ports, 'srcMac': 'aa:bb:cc:dd:ee:ff', 'dstMac': 'ff:ff:ff:ff:ff:ff', 'frame_rate_type': 'line_rate', 'rate': 5 } } await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(wait_time) await tgen_utils_stop_traffic(tgen_dev) # 6. Verify device remain stable afterwards (during storming) rc, out = await device.run_cmd("echo 'Hello World'") assert rc == 0, 'FAIL: DUT crashed due to storming' assert out.strip() == 'Hello World', f'Expected <Hello World> got {out}' # 7. Verify there is a storming stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Port Statistics') for row in stats.Rows: if row['Port Name'] in tg_ports[:2]: err_msg = f'Expected {1400} got : {float(row["Rx. Rate (Mbps)"])}' > assert float(row['Rx. Rate (Mbps)']) > 1400, err_msg E AssertionError: Expected 1400 got : 0.0 E assert 0.0 > 1400 E + where 0.0 = float('0.000') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py:143: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_traffic_during_topology_convergence[stp]">Starting testcase:test_lacp_traffic_during_topology_convergence[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9893' coro=<test_lacp_traffic_during_topology_convergence() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py:42> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=170] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=170] Local address: 172.17.0.4, port 37426 INFO asyncssh:logging.py:92 [conn=170] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=170] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=170] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:22:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=170, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=170, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=170, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 && ip link add bridge_2 type bridge stp_state 0 && ip link add bridge_3 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=170, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=4] Command: ip link add bridge_1 type bridge stp_state 0 && ip link add bridge_2 type bridge stp_state 0 && ip link add bridge_3 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=170, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=170, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=6] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=170, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=170, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=8] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=170, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=170, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=10] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=170, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=170, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=10] Channel closed DEBUG agg1:Logger.py:156 Error: Device can not be enslaved while up. INFO asyncssh:logging.py:92 [conn=170, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=170, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=12] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=170, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=170, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=14] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=170, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=170, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=16] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=170, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=170, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=18] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=170, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=170, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=20] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=170, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=170, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=22] Command: ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=170, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bridge_1 INFO asyncssh:logging.py:92 [conn=170, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=24] Command: ip link set dev swp1 master bridge_1 INFO asyncssh:logging.py:92 [conn=170, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bridge_2 INFO asyncssh:logging.py:92 [conn=170, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=26] Command: ip link set dev swp2 master bridge_2 INFO asyncssh:logging.py:92 [conn=170, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=27] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_1 hw ether 44:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=170, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=28] Command: ifconfig bridge_1 hw ether 44:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=170, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=29] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_2 hw ether 00:45:34:43:56:55 INFO asyncssh:logging.py:92 [conn=170, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=30] Command: ifconfig bridge_2 hw ether 00:45:34:43:56:55 INFO asyncssh:logging.py:92 [conn=170, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=31] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_3 hw ether 22:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=170, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=32] Command: ifconfig bridge_3 hw ether 22:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=170, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=170, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=34] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=170, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=170, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=36] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=170, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=170, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=38] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=170, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=170, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=40] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=170, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:1:6_1.1.1.3/24', '10.36.118.199:1:7_1.1.1.4/24', '10.36.118.199:1:8_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=170, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=41] Channel closed DEBUG agg1:Logger.py:156 echo 'Hello World' INFO asyncssh:logging.py:92 [conn=170, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=42] Command: echo 'Hello World' INFO asyncssh:logging.py:92 [conn=170, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=42] Channel closed DEBUG agg1:Logger.py:156 Hello World INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22c5b10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 4191383 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 4191383 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 1 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_traffic_during_topology_convergence[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py INFO asyncssh:logging.py:92 [conn=170, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=44] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:25:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=170, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=170, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=46] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=170, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":264,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":265,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:45:34:43:56:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":266,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=170, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=170, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=48] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=170, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=49] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=50] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:25:23 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=170, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=170, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=52] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=170, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":258,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":259,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":260,"ifname":"bond_3","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:f1:5d:3f:5f:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":261,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":262,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":263,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:10","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=170, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=170, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=54] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=170, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=170, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=56] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=170, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=170, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=58] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=170, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=170, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=60] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=170, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=170, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=62] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=170, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=62] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=170, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=64] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=170, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=65] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=66] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:25:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/lacp/test_lacp_traffic_during_topology_convergence.py::test_lacp_traffic_during_topology_convergence[rstp] | 206.40 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> version = 'rstp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_lacp_traffic_during_topology_convergence(testbed, version): """ Test Name: LACP STP/RSTP interaction Test Suite: suite_functional_lacp Test Overview: Test lacp during stp/rstp topology convergence Test Procedure: 1. Create 3 bridge entities and 6 bonds and set link up on them 2. Enslave ports to bonds, bonds to bridges 3. Change all bridges MAC addresses 4. Set link up on all participant ports, bonds, bridges 5. Send broadcast traffic for a random time between 30-60 seconds. 6. Verify device remain stable afterwards (during storming) 7. Verify there is a storming 8. Set bridge stp_state to 1 9. Verify the bridge root is bridge_2 by the lowest MAC rule. Verify other bridges do not consider themselves as root-bridge 10. Verify bridge_1 has a blocking bond 11 .Verify bridge_3 do not have any blocking bond 12. Verify that the rate on other tgen ports is 0 (storming has stopped) 13. Send broadcast traffic for a random time between 30-60 seconds 14. Verify that traffic is flooded to other tgen ports 15. Stop the traffic; Verify there is no storming" """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] dut_tgen_ports = tgen_dev.links_dict[dent][1] bonds = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): bonds[f'bond_{idx+1}'] = port bond_to_bridges = list(bonds.keys()) bridges = { 'bridge_1': bond_to_bridges[:2], 'bridge_2': bond_to_bridges[2:4], 'bridge_3': bond_to_bridges[4:] } hw_mac = ['44:AA:98:EA:D2:43', '00:45:34:43:56:55', '22:0A:D1:68:4E:B9'] bridge_names = list(bridges.keys()) tolerance = 0.15 wait_time = 40 if 'version' == 'stp' else 20 # 1. Create 3 bridge entities and 6 bonds and set link up on them out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'stp_state': 0} for bridge in bridges]}]) # stp not enabled assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave ports to bonds, bonds to bridges out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bond}]} for bond, port in bonds.items()]) assert out[0][dent]['rc'] == 0, 'Failed enslaving bonds' for bridge, lags in bridges.items(): out = await IpLink.set(input_data=[{dent: [{'device': lag, 'master': bridge} for lag in lags]}]) assert out[0][dent]['rc'] == 0, f'Failed enslaving lag to {bridge}' out = await IpLink.set(input_data=[{dent: [{'device': dut_tgen_ports[0], 'master': bridge_names[0]}]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving port' out = await IpLink.set(input_data=[{dent: [{'device': dut_tgen_ports[1], 'master': bridge_names[1]}]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving port' # 3. Change the MAC addresses for all bridges for bridge, mac in zip(bridge_names, hw_mac): rc, _ = await device.run_cmd(f'ifconfig {bridge} hw ether {mac}') assert rc == 0, 'Failed to change MAC address' # 4. Set link up on all participant ports, bonds, bridges out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in bonds.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in dut_tgen_ports]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' # 5.Send broadcast traffic for a random time between 30-60 seconds. dev_groups = tgen_utils_dev_groups_from_config(( {'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24}, )) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_tgen_ports, dev_groups) tx_ports = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = { f'{rx_ports} -> Broadcast': { 'type': 'raw', 'ip_source': tx_ports, 'ip_destination': rx_ports, 'srcMac': 'aa:bb:cc:dd:ee:ff', 'dstMac': 'ff:ff:ff:ff:ff:ff', 'frame_rate_type': 'line_rate', 'rate': 5 } } await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(wait_time) await tgen_utils_stop_traffic(tgen_dev) # 6. Verify device remain stable afterwards (during storming) rc, out = await device.run_cmd("echo 'Hello World'") assert rc == 0, 'FAIL: DUT crashed due to storming' assert out.strip() == 'Hello World', f'Expected <Hello World> got {out}' # 7. Verify there is a storming stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Port Statistics') for row in stats.Rows: if row['Port Name'] in tg_ports[:2]: err_msg = f'Expected {1400} got : {float(row["Rx. Rate (Mbps)"])}' > assert float(row['Rx. Rate (Mbps)']) > 1400, err_msg E AssertionError: Expected 1400 got : 0.0 E assert 0.0 > 1400 E + where 0.0 = float('0.000') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py:143: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_traffic_during_topology_convergence[rstp]">Starting testcase:test_lacp_traffic_during_topology_convergence[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9972' coro=<test_lacp_traffic_during_topology_convergence() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py:42> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=171] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=171] Local address: 172.17.0.4, port 39976 INFO asyncssh:logging.py:92 [conn=171] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=171] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=171] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:25:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=171, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=171, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=171, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 && ip link add bridge_2 type bridge stp_state 0 && ip link add bridge_3 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=171, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=4] Command: ip link add bridge_1 type bridge stp_state 0 && ip link add bridge_2 type bridge stp_state 0 && ip link add bridge_3 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=171, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=171, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=6] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=171, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=171, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=8] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=171, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=171, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=10] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=171, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=171, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=10] Channel closed DEBUG agg1:Logger.py:156 Error: Device can not be enslaved while up. INFO asyncssh:logging.py:92 [conn=171, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=171, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=12] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=171, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=171, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=14] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=171, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=171, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=16] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=171, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=171, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=18] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=171, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=171, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=20] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=171, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=171, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=22] Command: ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=171, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bridge_1 INFO asyncssh:logging.py:92 [conn=171, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=24] Command: ip link set dev swp1 master bridge_1 INFO asyncssh:logging.py:92 [conn=171, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bridge_2 INFO asyncssh:logging.py:92 [conn=171, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=26] Command: ip link set dev swp2 master bridge_2 INFO asyncssh:logging.py:92 [conn=171, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=27] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_1 hw ether 44:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=171, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=28] Command: ifconfig bridge_1 hw ether 44:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=171, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=29] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_2 hw ether 00:45:34:43:56:55 INFO asyncssh:logging.py:92 [conn=171, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=30] Command: ifconfig bridge_2 hw ether 00:45:34:43:56:55 INFO asyncssh:logging.py:92 [conn=171, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=31] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_3 hw ether 22:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=171, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=32] Command: ifconfig bridge_3 hw ether 22:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=171, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=171, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=34] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=171, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=171, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=36] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=171, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=171, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=38] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=171, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=171, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=40] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=171, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:1:6_1.1.1.3/24', '10.36.118.199:1:7_1.1.1.4/24', '10.36.118.199:1:8_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=171, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=41] Channel closed DEBUG agg1:Logger.py:156 echo 'Hello World' INFO asyncssh:logging.py:92 [conn=171, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=42] Command: echo 'Hello World' INFO asyncssh:logging.py:92 [conn=171, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=42] Channel closed DEBUG agg1:Logger.py:156 Hello World INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a255f820>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 3978844 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 3978844 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 1 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_traffic_during_topology_convergence[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py INFO asyncssh:logging.py:92 [conn=171, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=44] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:28:49 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=171, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=171, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=46] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=171, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":273,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":274,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:45:34:43:56:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":275,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=171, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=171, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=48] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=171, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=49] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=50] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:28:50 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=171, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=171, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=52] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=171, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":267,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":268,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":269,"ifname":"bond_3","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"12:71:1a:31:95:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":270,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":271,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:10","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":272,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=171, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=171, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=54] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=171, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=171, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=56] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=171, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=171, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=58] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=171, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=171, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=60] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=171, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=171, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=62] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=171, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=62] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=171, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=64] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=171, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=65] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=66] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:28:51 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/storm_control/test_storm_control_different_rates.py::test_storm_control_different_rates | 271.45 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> async def test_storm_control_different_rates(testbed): """ Test Name: test_storm_control_different_rates Test Suite: suite_functional_storm_control Test Overview: Verify rate is limited according to the changes in Storm Control Rules. Test Author: Kostiantyn Stavruk Test Procedure: 1. Set entities swp1, swp2, swp3, swp4 UP state. 2. Init vlan aware bridge entity br0. 3. Set bridge br0 admin state UP. 4. Set ports swp1, swp2, swp3, swp4 master br0. 5. Add swp1 and swp2 to the same vlan. Add swp3 and swp4 to another vlan. 6. Set up the following streams: Ixia port 1: broadcast, multicast and unknown unicast streams, with random generated size of packet; Ixia port 2: broadcast stream, with random generated size of packet; Ixia port 3: multicast stream, with random generated size of packet; Ixia port 4: unknown unicast stream, with random generated size of packet. 7. Set a storm control rate limit for all types of traffic on all ports. 8. Transmit continues traffic by TG. 9. Verify the RX rate on the RX port is as expected - the rate is limited by storm control. 10. Change storm control rates for all ports. 11. Verify the RX rate on the RX port is as expected - the rate is limited by storm control. 12. Change storm control rates for all ports again. 13. Verify the RX rate on the RX port is as expected - the rate is limited by storm control. 14. Disable storm control for all ports. 15. Verify the RX rate on the RX port is as expected - the rate is not limited by storm control. """ bridge = 'br0' tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] device_host_name = dent_dev.host_name tg_ports = tgen_dev.links_dict[device_host_name][0] ports = tgen_dev.links_dict[device_host_name][1] traffic_duration = 15 correlation = 0.33 deviation = 0.10 kbyte_value_stream = [randrange(start, end+1) for start, end in [(1500, 1700), (2800, 3000), (3800, 4000), (4500, 4700), (1000, 1200), (5100, 5300)]] out = await IpLink.set( input_data=[{device_host_name: [ {'device': port, 'operstate': 'up'} for port in ports]}]) assert out[0][device_host_name]['rc'] == 0, f"Verify that entities set to 'UP' state.\n{out}" out = await IpLink.add( input_data=[{device_host_name: [ {'device': bridge, 'vlan_filtering': 1, 'vlan_default_pvid': 0, 'type': 'bridge'}]}]) err_msg = f"Verify that bridge created, vlan filtering set to 'ON' and vlan_default_pvid set to '0'.\n{out}" assert out[0][device_host_name]['rc'] == 0, err_msg out = await IpLink.set( input_data=[{device_host_name: [ {'device': bridge, 'operstate': 'up'}]}]) assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}" out = await IpLink.set( input_data=[{device_host_name: [ {'device': port, 'master': bridge} for port in ports]}]) err_msg = f'Verify that bridge entities enslaved to bridge.\n{out}' assert out[0][device_host_name]['rc'] == 0, err_msg out = await BridgeVlan.add( input_data=[{device_host_name: [ {'device': ports[x], 'vid': f'{1 if x<2 else 2}', 'untagged': True, 'pvid': True} for x in range(4)]}]) assert out[0][device_host_name]['rc'] == 0, f"Verify that entities added to vid '1' and '2'.\n{out}" # set a storm control rate limits await set_rates(kbyte_value_stream, ports, device_host_name) try: address_map = ( # swp port, tg port, tg ip, gw, plen (ports[0], tg_ports[0], '1.1.1.2', '1.1.1.1', 24), (ports[1], tg_ports[1], '1.1.1.3', '1.1.1.1', 24), (ports[2], tg_ports[2], '1.1.1.4', '1.1.1.1', 24), (ports[3], tg_ports[3], '1.1.1.5', '1.1.1.1', 24) ) dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, ip, gw, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) """ Set up the following streams: — stream_1 — | — stream_2 — | — stream_3 — | — stream_4 — | — stream_5 — | — stream_6 — swp1 -> swp4 | swp1 -> swp4 | swp1 -> swp4 | swp2 -> swp4 | swp3 -> swp4 | swp4 -> swp3 — stream_1 — | — stream_2 — | — stream_3 — | — stream_4 — | — stream_5 — | — stream_6 — swp1 -> swp3 | swp1 -> swp3 | swp1 -> swp3 | swp2 -> swp3 | swp3 -> swp2 | swp4 -> swp2 — stream_1 — | — stream_2 — | — stream_3 — | — stream_4 — | — stream_5 — | — stream_6 — swp1 -> swp2 | swp1 -> swp2 | swp1 -> swp2 | swp2 -> swp1 | swp3 -> swp1 | swp4 -> swp1 """ streams = { f'stream_1_swp1->swp{4-x}': { 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[3-x]][0]['name'], 'srcMac': f'16:ea:c3:{x+5}d:1e:ec', 'dstMac': 'ff:ff:ff:ff:ff:ff', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 5, 'protocol': '0x0800', 'type': 'raw' } for x in range(3) } streams.update({ f'stream_2_swp1->swp{4-x}': { 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[3-x]][0]['name'], 'srcIp': f'3.6.92.20{x+1}', 'dstIp': f'228.68.176.2{x+11}', 'srcMac': f'36:11:3d:38:9a:{x+5}e', 'dstMac': f'01:00:5E:4{x+4}:b0:d3', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 5, 'protocol': '0x0800', 'type': 'raw' } for x in range(3) }) streams.update({ f'stream_3_swp1->swp{4-x}': { 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[3-x]][0]['name'], 'srcMac': f'72:88:c5:ec:f5:0{x+5}', 'dstMac': f'92:ff:e{x+6}:07:88:a2', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 5, 'protocol': '0x0800', 'type': 'raw' } for x in range(3) }) streams.update({ f'stream_4_swp2->swp{4-x if x < 2 else 1}': { 'ip_source': dev_groups[tg_ports[1]][0]['name'], 'ip_destination': dev_groups[tg_ports[3-x if x < 2 else 0]][0]['name'], 'srcMac': f'84:fc:70:36:2a:7{x+3}', 'dstMac': 'ff:ff:ff:ff:ff:ff', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 5, 'protocol': '0x0800', 'type': 'raw' } for x in range(3) }) streams.update({ f'stream_5_swp3->swp{4-x if x <= 0 else 3-x}': { 'ip_source': dev_groups[tg_ports[2]][0]['name'], 'ip_destination': dev_groups[tg_ports[3-x if x <= 0 else 2-x]][0]['name'], 'srcMac': f'e4:c7:7f:{x+6}e:60:2b', 'dstMac': f'01:00:5E:19:bd:a{x+5}', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 5, 'protocol': '0x9100', 'type': 'raw' } for x in range(3) }) streams.update({ f'stream_6_swp4->swp{3-x}': { 'ip_source': dev_groups[tg_ports[3]][0]['name'], 'ip_destination': dev_groups[tg_ports[2-x]][0]['name'], 'srcMac': f'70:c5:30:7c:ef:f{x+5}', 'dstMac': f'00:8{x+5}:4f:1b:80:91', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 5, 'protocol': '0x88a8', 'type': 'raw' } for x in range(3) }) await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) # verify the rate is limited > await verify_rates(kbyte_value_stream, tgen_dev, correlation, deviation) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py:248: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ kbyte_value_stream = [1512, 2918, 3850, 4620, 1063, 5160] tgen_dev = [Ixia Traffic Generator: 10.36.118.213], correlation = 0.33 deviation = 0.1 async def verify_rates(kbyte_value_stream, tgen_dev, correlation, deviation): # check the traffic stats stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Traffic Item Statistics') collected = {row['Traffic Item']: {'tx_rate': row['Tx Rate (Bps)'], 'rx_rate': row['Rx Rate (Bps)']} for row in stats.Rows} rate_value = { 'stream_1_swp1->swp2': kbyte_value_stream[0], 'stream_2_swp1->swp2': kbyte_value_stream[1], 'stream_3_swp1->swp2': kbyte_value_stream[2], 'stream_4_swp2->swp1': kbyte_value_stream[3], 'stream_5_swp3->swp4': kbyte_value_stream[4], 'stream_6_swp4->swp3': kbyte_value_stream[5] } for stream, value in rate_value.items(): > assert math.isclose(value*correlation*1000, float(collected[stream]['rx_rate']), rel_tol=deviation), \ f'Failed: the rate is not limited by storm control for {rate_value}.' E AssertionError: Failed: the rate is not limited by storm control for {'stream_1_swp1->swp2': 1512, 'stream_2_swp1->swp2': 2918, 'stream_3_swp1->swp2': 3850, 'stream_4_swp2->swp1': 4620, 'stream_5_swp3->swp4': 1063, 'stream_6_swp4->swp3': 5160}. E assert False E + where False = <built-in function isclose>(((1512 * 0.33) * 1000), 3667054.418, rel_tol=0.1) E + where <built-in function isclose> = math.isclose E + and 3667054.418 = float('3667054.418') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py:57: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_different_rates">Starting testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16523' coro=<test_storm_control_different_rates() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py:90> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=230, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=231] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=231] Local address: 172.17.0.4, port 60798 INFO asyncssh:logging.py:92 [conn=231] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=231] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=231] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:54:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=231, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=231, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=2] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=231, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=231, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=231, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=231, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=231, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master br0 && ip link set dev swp2 master br0 && ip link set dev swp3 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=231, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=8] Command: ip link set dev swp1 master br0 && ip link set dev swp2 master br0 && ip link set dev swp3 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=231, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 1 pvid untagged && bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp3 vid 2 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=231, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=10] Command: bridge vlan add dev swp1 vid 1 pvid untagged && bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp3 vid 2 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=231, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 1512 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=12] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 1512 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=14] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=14] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1512}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 2918 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=16] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 2918 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=18] Command: devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=18] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2918}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 3850 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=20] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 3850 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=22] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=22] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3850}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 4620 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=24] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 4620 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=26] Command: devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=26] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4620}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=27] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 1063 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=28] Command: devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 1063 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=29] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=30] Command: devlink -j port param show pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=30] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1063}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=31] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 5160 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=32] Command: devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 5160 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=33] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=34] Command: devlink -j port param show pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=34] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/4":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5160}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1dd44f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 287117 Rx 0 Frames Delta 287117 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 928486 Rx 0 Frames Delta 928486 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 266609 Rx 2250 Frames Delta 264359 Loss 99.156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 442766 Rx 0 Frames Delta 442766 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 1025416 Rx 0 Frames Delta 1025416 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 917080 Rx 14851 Frames Delta 902229 Loss 98.381 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 811416 Rx 0 Frames Delta 811416 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 293437 Rx 0 Frames Delta 293437 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 287338 Rx 6077 Frames Delta 281261 Loss 97.885 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 262853 Rx 0 Frames Delta 262853 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 592463 Rx 0 Frames Delta 592463 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 2744495 Rx 72128 Frames Delta 2672367 Loss 97.372 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 870050 Rx 5044 Frames Delta 865006 Loss 99.420 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 438604 Rx 0 Frames Delta 438604 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 972009 Rx 0 Frames Delta 972009 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 952172 Rx 27052 Frames Delta 925120 Loss 97.159 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 272845 Rx 0 Frames Delta 272845 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 823955 Rx 0 Frames Delta 823955 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=231, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=35] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=231, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=36] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=231, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=36] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1512}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3850}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2918}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4620}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1063}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5160}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=37] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=38] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=39] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=40] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=41] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=42] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=42] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=231, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=44] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:58:50 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=231, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=45] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=46] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:58:56 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=231, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=231, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=48] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=231, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=48] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":330,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=231, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=231, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=50] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=231, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=50] Channel closed DEBUG agg1:Logger.py:156 | |||
| Failed | functional/storm_control/test_storm_control_interaction_span_rule.py::test_storm_control_interaction_span_rule | 200.70 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> async def test_storm_control_interaction_span_rule(testbed): """ Test Name: test_storm_control_interaction_span_rule Test Suite: suite_functional_storm_control Test Overview: Verify rate is not limited by Storm Control due to the mirred rule. Test Author: Kostiantyn Stavruk Test Procedure: 1. Init bridge entity br0. 2. Set bridge br0 admin state UP. 3. Set ports swp1, swp2, swp3, swp4 master br0. 4. Set entities swp1, swp2, swp3, swp4 UP state. 5. Set storm control rate limit rule for all streams. 6. Define a SPAN rule with a source port. 7. Set up the following streams: - broadcast with random generated size of packet; - multicast with random generated size of packet; - unknown unicast with random generated size of packet. 8. Transmit continues traffic by TG. 9. Verify the RX rate on the RX port is as expected - the rate is limited according to storm control limits. Echamine the impact of the SPAN rule. 10. Disable storm control rate limit rule for all streams. 12. Verify the RX rate on the RX port is as expected - the rate is not limited by storm control. """ bridge = 'br0' tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] device_host_name = dent_dev.host_name tg_ports = tgen_dev.links_dict[device_host_name][0] ports = tgen_dev.links_dict[device_host_name][1] size_packets = randrange(500, 1000) traffic_duration = 15 deviation = 0.10 kbyte_value_stream = [randrange(start, end+1) for start, end in [(1500, 1700), (3800, 4000), (5100, 5300)]] out = await IpLink.add( input_data=[{device_host_name: [ {'device': bridge, 'vlan_filtering': 1, 'type': 'bridge'}]}]) err_msg = f"Verify that bridge created and vlan filtering set to 'ON'.\n{out}" assert out[0][device_host_name]['rc'] == 0, err_msg out = await IpLink.set( input_data=[{device_host_name: [ {'device': bridge, 'operstate': 'up'}]}]) assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}" out = await IpLink.set( input_data=[{device_host_name: [ {'device': port, 'master': bridge, 'operstate': 'up'} for port in ports]}]) err_msg = f"Verify that bridge entities set to 'UP' state and links enslaved to bridge.\n{out}" assert out[0][device_host_name]['rc'] == 0, err_msg # set a storm control rate limits await set_rates(kbyte_value_stream, ports, device_host_name) try: out = await TcQdisc.add( input_data=[{device_host_name: [ {'dev': ports[0], 'kind': 'ingress'}]}]) assert out[0][device_host_name]['rc'] == 0, f'Failed to configure ingress qdisc.\n{out}' rc, out = await dent_dev.run_cmd(f'tc filter add dev {ports[0]} ingress matchall skip_sw action mirred \ egress mirror dev {ports[1]}') assert rc == 0, 'Failed to configure ingress matchall.' address_map = ( # swp port, tg port, tg ip, gw, plen (ports[0], tg_ports[0], '1.1.1.2', '1.1.1.1', 24), (ports[1], tg_ports[1], '1.1.1.3', '1.1.1.1', 24), (ports[2], tg_ports[2], '1.1.1.4', '1.1.1.1', 24), (ports[3], tg_ports[3], '1.1.1.5', '1.1.1.1', 24) ) dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, ip, gw, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) """ Set up the following streams: — stream_1 — | — stream_2 — | — stream_3 — | swp1 -> swp2 | swp1 -> swp3 | swp1 -> swp4 | """ streams = { 'stream_1': { 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name'], 'srcMac': '10:62:5a:cf:ab:39', 'dstMac': '34:1e:60:35:58:ac', 'frameSize': size_packets, 'frame_rate_type': 'line_rate', 'rate': 33, 'protocol': '0x0800', 'type': 'raw' }, 'stream_2': { 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[2]][0]['name'], 'srcMac': '98:92:be:4c:c8:53', 'dstMac': '01:00:5E:51:14:af', 'frameSize': size_packets, 'frame_rate_type': 'line_rate', 'rate': 33, 'protocol': '0x0800', 'type': 'raw' }, 'stream_3': { 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[3]][0]['name'], 'srcMac': '54:84:c3:74:89:37', 'dstMac': 'ff:ff:ff:ff:ff:ff', 'frameSize': size_packets, 'frame_rate_type': 'line_rate', 'rate': 33, 'protocol': '0x0800', 'type': 'raw' } } await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) # check the traffic stats stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Traffic Item Statistics') collected = {row['Traffic Item']: {'tx_rate': row['Tx Rate (Bps)'], 'rx_rate': row['Rx Rate (Bps)']} for row in stats.Rows} assert math.isclose(float(collected['stream_1']['tx_rate']), float(collected['stream_1']['rx_rate']), rel_tol=deviation), \ 'Failed: the rate is limited by storm control due to mirred rule.' for x in range(2): > assert math.isclose(kbyte_value_stream[x+1]*1000, float(collected[f'stream_{x+2}']['rx_rate']), rel_tol=deviation), \ 'Failed: the rate is not limited by storm control.' E AssertionError: Failed: the rate is not limited by storm control. E assert False E + where False = <built-in function isclose>((3989 * 1000), 0.0, rel_tol=0.1) E + where <built-in function isclose> = math.isclose E + and 0.0 = float('0.000') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py:176: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_interaction_span_rule">Starting testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16791' coro=<test_storm_control_interaction_span_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py:65> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=232, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=233] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=233] Local address: 172.17.0.4, port 56714 INFO asyncssh:logging.py:92 [conn=233] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=233] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=233] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:03:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=233, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=233, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=233, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=233, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=233, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=233, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=233, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=7] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 1530 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=8] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 1530 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=233, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=10] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=233, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1530}]}]}} INFO asyncssh:logging.py:92 [conn=233, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 3989 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=12] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 3989 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=233, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=14] Command: devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=233, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=14] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3989}]}]}} INFO asyncssh:logging.py:92 [conn=233, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 5275 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=16] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 5275 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=233, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=18] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=233, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=18] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5275}]}]}} INFO asyncssh:logging.py:92 [conn=233, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=233, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=20] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=233, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress matchall skip_sw action mirred egress mirror dev swp2 INFO asyncssh:logging.py:92 [conn=233, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=22] Command: tc filter add dev swp1 ingress matchall skip_sw action mirred egress mirror dev swp2 INFO asyncssh:logging.py:92 [conn=233, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ef1fc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 0 Rx 0 Frames Delta 0 Loss 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 0 Rx 0 Frames Delta 0 Loss 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 0 Rx 0 Frames Delta 0 Loss 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=233, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=233, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=24] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=233, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=24] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5275}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1530}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3989}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=233, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=26] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=27] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=28] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=29] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=30] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=30] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py INFO asyncssh:logging.py:92 [conn=233, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=32] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:06:32 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=233, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=233, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=233, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=233, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=233, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=233, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=233, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=233, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=233, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=56] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=233, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=233, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=58] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=233, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=233, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=233, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=233, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=233, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=233, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=64] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=233, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=233, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=66] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=233, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=233, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=68] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=233, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=233, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=70] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=233, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=233, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=72] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=233, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=233, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=74] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=233, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=233, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=76] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=233, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=233, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=78] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=233, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=233, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=80] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=233, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=233, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=82] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=233, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=233, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=84] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=233, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=233, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=86] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=233, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=233, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=88] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=233, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=233, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=90] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=233, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=233, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=92] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=233, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=233, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=94] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=233, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=233, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=96] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=233, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=233, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=98] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=233, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=233, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=100] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=233, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=233, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=102] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=233, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=233, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=104] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=233, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=233, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=106] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=233, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=233, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=108] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=233, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=233, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=110] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=233, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=233, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=112] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=233, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=233, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=114] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=233, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=233, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=116] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=233, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=233, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=118] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=233, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=233, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=120] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=233, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=233, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=122] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=233, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=233, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=124] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=233, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=233, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=126] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=233, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=233, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=128] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=233, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=233, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=130] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=233, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=233, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=132] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=233, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=233, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=134] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=233, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=233, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=136] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=233, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=233, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=138] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=233, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=233, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=140] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=233, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=233, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=142] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=233, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=233, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=144] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=233, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=233, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=146] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=233, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=233, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=148] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=233, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=233, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=150] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=233, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=233, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=152] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=233, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=233, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=154] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=233, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=233, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=155] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=156] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=156] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:06:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=233, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=157] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=158] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=158] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:06:37 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=233, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=159] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=233, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=160] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=233, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=160] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":332,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=233, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=161] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=233, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=162] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=233, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=162] Channel closed DEBUG agg1:Logger.py:156 | |||
| Failed | functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py::test_storm_control_rule_set_for_br_and_mc_traffic | 204.63 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> async def test_storm_control_rule_set_for_br_and_mc_traffic(testbed): """ Test Name: test_storm_control_rule_set_for_br_and_mc_traffic Test Suite: suite_functional_storm_control Test Overview: Verify Storm Control limits the rate of specific traffic types. Test Author: Kostiantyn Stavruk Test Procedure: 1. Init bridge entity br0. 2. Set ports swp1, swp2 master br0. 3. Set entities swp1, swp2 UP state. 4. Set bridge br0 admin state UP. 5. Set up the following streams: - broadcast stream with random generated size of packet, on TX port; - multicast stream with random generated size of packet, on TX port; - unknown unicast stream with random generated size of packet, on TX port. 6. Set storm control rate limit of broadcast traffic on TX port. 7. Transmit continues traffic by TG. 8. Verify broadcast traffic is limited on RX port. Verify multicast and unknown unicast are not limited. 9. Disable storm control rate limit for broadcast traffic. 10. Set storm control rate limit of multicast traffic on TX port. 11. Verify multicast traffic is limited on RX port. Verify broadcast and unknown unicast are not limited. """ bridge = 'br0' tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] device_host_name = dent_dev.host_name tg_ports = tgen_dev.links_dict[device_host_name][0] ports = tgen_dev.links_dict[device_host_name][1] kbyte_value_bc = 15689 kbyte_value_mc = 27713 traffic_duration = 15 deviation = 0.10 out = await IpLink.add( input_data=[{device_host_name: [ {'device': bridge, 'vlan_filtering': 1, 'type': 'bridge'}]}]) err_msg = f"Verify that bridge created and vlan filtering set to 'ON'.\n{out}" assert out[0][device_host_name]['rc'] == 0, err_msg out = await IpLink.set( input_data=[{device_host_name: [ {'device': bridge, 'operstate': 'up'}]}]) assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}" out = await IpLink.set( input_data=[{device_host_name: [ {'device': port, 'master': bridge, 'operstate': 'up'} for port in ports]}]) err_msg = f"Verify that bridge entities set to 'UP' state and links enslaved to bridge.\n{out}" assert out[0][device_host_name]['rc'] == 0, err_msg await devlink_rate_value(dev=f'pci/0000:01:00.0/{ports[0].replace("swp","")}', name='bc_kbyte_per_sec_rate', value=kbyte_value_bc, cmode='runtime', device_host_name=device_host_name, set=True, verify=True) try: address_map = ( # swp port, tg port, tg ip, gw, plen (ports[0], tg_ports[0], '1.1.1.2', '1.1.1.1', 24), (ports[1], tg_ports[1], '1.1.1.3', '1.1.1.1', 24), (ports[2], tg_ports[2], '1.1.1.4', '1.1.1.1', 24), (ports[3], tg_ports[3], '1.1.1.5', '1.1.1.1', 24) ) dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, ip, gw, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) """ Set up the following streams: — stream_1 — | — stream_2 — | — stream_3 — swp1 -> swp4 | swp1 -> swp3 | swp1 -> swp2 """ streams = { 'stream_1': { 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[3]][0]['name'], 'srcIp': '147.126.111.32', 'dstIp': '255.255.255.255', 'srcMac': 'b2:ac:8f:b3:fb:2c', 'dstMac': 'ff:ff:ff:ff:ff:ff', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 30, 'protocol': '0x0800', 'type': 'raw' }, 'stream_2': { 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[2]][0]['name'], 'srcIp': '109.51.220.173', 'dstIp': '224.33.57.130', 'srcMac': '76:07:44:b7:38:07', 'dstMac': '01:00:5E:21:39:82', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 30, 'protocol': '0x0800', 'type': 'raw' }, 'stream_3': { 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name'], 'srcMac': '98:ba:45:33:c7:ee', 'dstMac': 'd2:15:8d:45:e1:1e', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 30, 'protocol': '0x0800', 'type': 'raw' } } await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) # check the traffic stats stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Traffic Item Statistics') collected = {row['Traffic Item']: {'tx_rate': row['Tx Rate (Bps)'], 'rx_rate': row['Rx Rate (Bps)']} for row in stats.Rows} > assert math.isclose(kbyte_value_bc*1000, float(collected['stream_1']['rx_rate']), rel_tol=deviation), \ f"The rate is not limited by storm control, \ actual rate {kbyte_value_bc*1000} instead of {float(collected['stream_1']['rx_rate'])}." E AssertionError: The rate is not limited by storm control, actual rate 15689000 instead of 105132001.3. E assert False E + where False = <built-in function isclose>((15689 * 1000), 105132001.3, rel_tol=0.1) E + where <built-in function isclose> = math.isclose E + and 105132001.3 = float('105132001.300') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py:154: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_mc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17158' coro=<test_storm_control_rule_set_for_br_and_mc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=236] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=236] Local address: 172.17.0.4, port 37076 INFO asyncssh:logging.py:92 [conn=236] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=236] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=236] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:19:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=236, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=236, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=236, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=236, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=236, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=7] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=8] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=10] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ef1e40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 3356125 Rx 144939 Frames Delta 3211186 Loss 95.681 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 1759984 Rx 1759982 Frames Delta 2 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 1868879 Rx 1868878 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=236, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=236, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=12] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=236, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15689}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=236, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=14] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=16] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=18] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=18] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=236, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=20] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:23:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=236, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:23:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=236, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=236, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=236, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":336,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=236, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=236, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=236, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=26] Channel closed DEBUG agg1:Logger.py:156 | |||
| Failed | functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py::test_storm_control_rule_set_for_br_and_unk_uc_traffic | 207.25 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> async def test_storm_control_rule_set_for_br_and_unk_uc_traffic(testbed): """ Test Name: test_storm_control_rule_set_for_br_and_unk_uc_traffic Test Suite: suite_functional_storm_control Test Overview: Verify Storm Control limits the rate of specific traffic types. Test Author: Kostiantyn Stavruk Test Procedure: 1. Init bridge entity br0. 2. Set ports swp1, swp2 master br0. 3. Set entities swp1, swp2 UP state. 4. Set bridge br0 admin state UP. 5. Set up the following streams: - broadcast stream with random generated size of packet, on TX port; - multicast stream with random generated size of packet, on TX port; - unknown unicast stream with random generated size of packet, on TX port. 6. Set storm control rate limit of broadcast traffic on TX port. 7. Transmit continues traffic by TG. 8. Verify broadcast traffic is limited on RX port. Verify multicast and unknown unicast are not limited. 9. Disable storm control rate limit for broadcast traffic. 10. Set storm control rate limit of unknown unicast traffic on TX port. 11. Verify unknown unicast traffic is limited on RX port. Verify broadcast and multicast are not limited. """ bridge = 'br0' tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] device_host_name = dent_dev.host_name tg_ports = tgen_dev.links_dict[device_host_name][0] ports = tgen_dev.links_dict[device_host_name][1] kbyte_value_unk_uc = 7229 kbyte_value_bc = 21689 traffic_duration = 15 deviation = 0.10 out = await IpLink.add( input_data=[{device_host_name: [ {'device': bridge, 'vlan_filtering': 1, 'type': 'bridge'}]}]) err_msg = f"Verify that bridge created and vlan filtering set to 'ON'.\n{out}" assert out[0][device_host_name]['rc'] == 0, err_msg out = await IpLink.set( input_data=[{device_host_name: [ {'device': bridge, 'operstate': 'up'}]}]) assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}" out = await IpLink.set( input_data=[{device_host_name: [ {'device': port, 'master': bridge, 'operstate': 'up'} for port in ports]}]) err_msg = f"Verify that bridge entities set to 'UP' state and links enslaved to bridge.\n{out}" assert out[0][device_host_name]['rc'] == 0, err_msg await devlink_rate_value(dev=f'pci/0000:01:00.0/{ports[0].replace("swp","")}', name='bc_kbyte_per_sec_rate', value=kbyte_value_bc, cmode='runtime', device_host_name=device_host_name, set=True, verify=True) try: address_map = ( # swp port, tg port, tg ip, gw, plen (ports[0], tg_ports[0], '1.1.1.2', '1.1.1.1', 24), (ports[1], tg_ports[1], '1.1.1.3', '1.1.1.1', 24), (ports[2], tg_ports[2], '1.1.1.4', '1.1.1.1', 24), (ports[3], tg_ports[3], '1.1.1.5', '1.1.1.1', 24) ) dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, ip, gw, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) """ Set up the following streams: — stream_1 — | — stream_2 — | — stream_3 — swp1 -> swp4 | swp1 -> swp3 | swp1 -> swp2 """ streams = { 'stream_1': { 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[3]][0]['name'], 'srcIp': '147.126.111.32', 'dstIp': '255.255.255.255', 'srcMac': 'b2:ac:8f:b3:fb:2c', 'dstMac': 'ff:ff:ff:ff:ff:ff', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 30, 'protocol': '0x0800', 'type': 'raw' }, 'stream_2': { 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[2]][0]['name'], 'srcIp': '109.51.220.173', 'dstIp': '224.33.57.130', 'srcMac': '76:07:44:b7:38:07', 'dstMac': '01:00:5E:21:39:82', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 30, 'protocol': '0x0800', 'type': 'raw' }, 'stream_3': { 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name'], 'srcMac': '98:ba:45:33:c7:ee', 'dstMac': 'd2:15:8d:45:e1:1e', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 30, 'protocol': '0x0800', 'type': 'raw' } } await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) # check the traffic stats stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Traffic Item Statistics') collected = {row['Traffic Item']: {'tx_rate': row['Tx Rate (Bps)'], 'rx_rate': row['Rx Rate (Bps)']} for row in stats.Rows} > assert math.isclose(kbyte_value_bc*1000, float(collected['stream_1']['rx_rate']), rel_tol=deviation), \ f"The rate is not limited by storm control, \ actual rate {kbyte_value_bc*1000} instead of {float(collected['stream_1']['rx_rate'])}." E AssertionError: The rate is not limited by storm control, actual rate 21689000 instead of 139567292.913. E assert False E + where False = <built-in function isclose>((21689 * 1000), 139567292.913, rel_tol=0.1) E + where <built-in function isclose> = math.isclose E + and 139567292.913 = float('139567292.913') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py:154: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_unk_uc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17194' coro=<test_storm_control_rule_set_for_br_and_unk_uc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=236, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=237] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=237] Local address: 172.17.0.4, port 36126 INFO asyncssh:logging.py:92 [conn=237] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=237] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=237] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:23:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=237, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=237, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=237, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=237, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=237, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=237, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=237, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=7] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=8] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=237, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=10] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=237, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":21689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2280f70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 1799501 Rx 105915 Frames Delta 1693586 Loss 94.114 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 6169717 Rx 6169713 Frames Delta 4 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 1828809 Rx 1828807 Frames Delta 2 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=237, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=237, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=12] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=237, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":21689}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=237, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=14] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=16] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=18] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=20] Command: devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=22] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=24] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=26] Command: devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=27] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=28] Command: devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=28] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=237, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=30] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:26:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=237, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=32] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:26:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=237, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=237, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=237, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":337,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=237, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=237, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=237, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=36] Channel closed DEBUG agg1:Logger.py:156 | |||
| Failed | functional/stp/test_stp_select_root.py::test_stp_select_root_bridge[stp] | 44.27 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> version = 'stp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_stp_select_root_bridge(testbed, version): """ Test Name: STP/RSTP selecting root bridge Test Suite: suite_functional_stp Test Overview: Test root bridge selection based on bridge priority Test Procedure: 1. Create 3 bridge entities and set link up on them 2. Enslave ports to bridges 3. Change the MAC addresses for all bridges. 4. Set link up on all participant ports, bridges. Change priority of the bridges 5. Wait until topology converges 6. Verify the bridge root is br1 by the lowest MAC rule Verify other bridges do not consider themselves as root-bridge 7. Verify bridge_2 has a blocking port 8. Verify bridge_1 doesn't have any blocking port. 9. Change the highest bridge priority to a priority with lower value then the root bridge. 10. Wait for topology to re-build. 11. Verify bridge_2 has a blocking port and is not the same port as before 12.Verify bridge_2 has a blocking port 13.Verify bridge_1 does not have a blocking port """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name loopback_ports = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): loopback_ports[f'loopback_{idx+1}'] = port port_to_bridges = list(loopback_ports.values()) bridges = { 'bridge_1': port_to_bridges[:2], 'bridge_2': port_to_bridges[2:4], 'bridge_3': port_to_bridges[4:] } wait_time = 40 if version == 'stp' else 20 bridge_names = list(bridges.keys()) bridges_priorities = [2, 3, 4] hw_mac = ['44:DD:D2:85:22:A4', '22:67:05:4B:CC:25', '00:97:03:21:D9:68'] # 1. Create 3 bridge entities4 bonds and set link up on them out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'vlan_filstering': 0, 'stp_state': 1} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge with mstpd' out = await Mstpctl.set(input_data=[{dent: [{ 'bridge': bridge, 'parameter': 'forcevers', 'version': version} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to set stp/rstp version' # 2. Enslave ports to bridges out = await IpLink.set(input_data=[{dent: [{ 'device': port, 'operstate': 'down'} for port in loopback_ports.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting links to state down' for bridge, ports in bridges.items(): out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bridge} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving ports' # 3. Change the MAC addresses for all bridges for bridge, mac in zip(bridge_names, hw_mac): rc, _ = await device.run_cmd(f'ifconfig {bridge} hw ether {mac}') assert rc == 0, 'Failed to change MAC address' # 4. Set link up on all participant ports, bridges out = await IpLink.set(input_data=[{dent: [{ 'device': port, 'operstate': 'up'} for port in loopback_ports.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' for bridge, priority in zip(bridge_names, bridges_priorities): out = await Mstpctl.set(input_data=[{dent: [ {'parameter': 'treeprio', 'bridge': bridge, 'mstid': 0, 'priority': priority} ]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge priority' # 5. Wait until topology converges await asyncio.sleep(wait_time) # 6. Verify the bridge root is bridge_1 by the lowest MAC rule; # verify other bridges do not consider themselves as root-bridge out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge_names[0], 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' assert out[0][dent]['parsed_output'][0]['root-port'] == '', f'Bridge { bridge_names[0]} is not a root bridge' # Other bridges do not consider themselves as root bridge for bridge in bridge_names: out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge, 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' > assert out[0][dent]['parsed_output'][0][ 'root-port'] != '', f'Bridge {bridge_names[1]} or {bridge_names[2]} is a root bridge' E AssertionError: Bridge bridge_2 or bridge_3 is a root bridge E assert '' != '' /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py:121: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17864' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_bridge[stp]">Starting testcase:test_stp_select_root_bridge[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=250] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=250] Local address: 172.17.0.4, port 60752 INFO asyncssh:logging.py:92 [conn=250] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=250] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=250] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:04:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=250, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=1] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=250, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=250, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=3] Channel closed DEBUG agg1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=250, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=250, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=4] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:04:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=250, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=250, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=250, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=9] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=250, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=250, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=11] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=250, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=12] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=250, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=250, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=250, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=250, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=250, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=250, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=18] Command: ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=250, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=250, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=20] Command: ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=250, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=21] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_1 hw ether 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=250, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=22] Command: ifconfig bridge_1 hw ether 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=250, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=23] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_2 hw ether 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=250, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=24] Command: ifconfig bridge_2 hw ether 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=250, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=25] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_3 hw ether 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=250, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=26] Command: ifconfig bridge_3 hw ether 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=250, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=250, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=28] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=250, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=250, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=30] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=250, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=31] Channel closed DEBUG agg1:Logger.py:156 mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=250, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=32] Command: mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=250, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=33] Channel closed DEBUG agg1:Logger.py:156 mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=250, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=34] Command: mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=250, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=35] Channel closed DEBUG agg1:Logger.py:156 mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=250, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=36] Command: mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=250, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=37] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=250, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=38] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=250, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"swp5","last-topology-change-port":"swp7"}] INFO asyncssh:logging.py:92 [conn=250, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=39] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=250, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=40] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=250, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"swp5","last-topology-change-port":"swp7"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_bridge[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=250, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=41] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=250, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=42] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=250, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=44] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:04:45 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=250, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=250, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=46] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=250, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":354,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:dd:d2:85:22:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":355,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:67:05:4b:cc:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":356,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:97:03:21:d9:68","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=250, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=250, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=48] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=250, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=49] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=50] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:04:46 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=250, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=250, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=52] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=250, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=53] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=54] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:04:46 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/stp/test_stp_select_root.py::test_stp_select_root_bridge[rstp] | 24.69 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> version = 'rstp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_stp_select_root_bridge(testbed, version): """ Test Name: STP/RSTP selecting root bridge Test Suite: suite_functional_stp Test Overview: Test root bridge selection based on bridge priority Test Procedure: 1. Create 3 bridge entities and set link up on them 2. Enslave ports to bridges 3. Change the MAC addresses for all bridges. 4. Set link up on all participant ports, bridges. Change priority of the bridges 5. Wait until topology converges 6. Verify the bridge root is br1 by the lowest MAC rule Verify other bridges do not consider themselves as root-bridge 7. Verify bridge_2 has a blocking port 8. Verify bridge_1 doesn't have any blocking port. 9. Change the highest bridge priority to a priority with lower value then the root bridge. 10. Wait for topology to re-build. 11. Verify bridge_2 has a blocking port and is not the same port as before 12.Verify bridge_2 has a blocking port 13.Verify bridge_1 does not have a blocking port """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name loopback_ports = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): loopback_ports[f'loopback_{idx+1}'] = port port_to_bridges = list(loopback_ports.values()) bridges = { 'bridge_1': port_to_bridges[:2], 'bridge_2': port_to_bridges[2:4], 'bridge_3': port_to_bridges[4:] } wait_time = 40 if version == 'stp' else 20 bridge_names = list(bridges.keys()) bridges_priorities = [2, 3, 4] hw_mac = ['44:DD:D2:85:22:A4', '22:67:05:4B:CC:25', '00:97:03:21:D9:68'] # 1. Create 3 bridge entities4 bonds and set link up on them out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'vlan_filstering': 0, 'stp_state': 1} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge with mstpd' out = await Mstpctl.set(input_data=[{dent: [{ 'bridge': bridge, 'parameter': 'forcevers', 'version': version} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to set stp/rstp version' # 2. Enslave ports to bridges out = await IpLink.set(input_data=[{dent: [{ 'device': port, 'operstate': 'down'} for port in loopback_ports.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting links to state down' for bridge, ports in bridges.items(): out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bridge} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving ports' # 3. Change the MAC addresses for all bridges for bridge, mac in zip(bridge_names, hw_mac): rc, _ = await device.run_cmd(f'ifconfig {bridge} hw ether {mac}') assert rc == 0, 'Failed to change MAC address' # 4. Set link up on all participant ports, bridges out = await IpLink.set(input_data=[{dent: [{ 'device': port, 'operstate': 'up'} for port in loopback_ports.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' for bridge, priority in zip(bridge_names, bridges_priorities): out = await Mstpctl.set(input_data=[{dent: [ {'parameter': 'treeprio', 'bridge': bridge, 'mstid': 0, 'priority': priority} ]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge priority' # 5. Wait until topology converges await asyncio.sleep(wait_time) # 6. Verify the bridge root is bridge_1 by the lowest MAC rule; # verify other bridges do not consider themselves as root-bridge out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge_names[0], 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' assert out[0][dent]['parsed_output'][0]['root-port'] == '', f'Bridge { bridge_names[0]} is not a root bridge' # Other bridges do not consider themselves as root bridge for bridge in bridge_names: out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge, 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' > assert out[0][dent]['parsed_output'][0][ 'root-port'] != '', f'Bridge {bridge_names[1]} or {bridge_names[2]} is a root bridge' E AssertionError: Bridge bridge_2 or bridge_3 is a root bridge E assert '' != '' /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py:121: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17936' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_bridge[rstp]">Starting testcase:test_stp_select_root_bridge[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=251] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=251] Local address: 172.17.0.4, port 38782 INFO asyncssh:logging.py:92 [conn=251] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=251] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=251] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:04:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=251, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=1] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=251, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=251, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=3] Channel closed DEBUG agg1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=251, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=251, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=4] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:04:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=251, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=251, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=251, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=9] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=251, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=251, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=11] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=251, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=12] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=251, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=251, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=251, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=251, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=251, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=251, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=18] Command: ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=251, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=251, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=20] Command: ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=251, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=21] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_1 hw ether 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=251, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=22] Command: ifconfig bridge_1 hw ether 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=251, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=23] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_2 hw ether 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=251, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=24] Command: ifconfig bridge_2 hw ether 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=251, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=25] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_3 hw ether 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=251, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=26] Command: ifconfig bridge_3 hw ether 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=251, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=251, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=28] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=251, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=251, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=30] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=251, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=31] Channel closed DEBUG agg1:Logger.py:156 mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=251, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=32] Command: mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=251, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=33] Channel closed DEBUG agg1:Logger.py:156 mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=251, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=34] Command: mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=251, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=35] Channel closed DEBUG agg1:Logger.py:156 mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=251, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=36] Command: mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=251, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=37] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=251, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=38] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=251, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"14","topology-change-count":"1","topology-change":"no","topology-change-port":"swp7","last-topology-change-port":"swp5"}] INFO asyncssh:logging.py:92 [conn=251, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=39] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=251, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=40] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=251, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"14","topology-change-count":"1","topology-change":"no","topology-change-port":"swp7","last-topology-change-port":"swp5"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_bridge[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=251, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=41] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=251, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=42] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=251, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=44] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:05:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=251, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=251, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=46] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=251, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":357,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:dd:d2:85:22:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":358,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:67:05:4b:cc:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":359,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:97:03:21:d9:68","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=251, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=251, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=48] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=251, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=49] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=50] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:05:10 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=251, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=251, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=52] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=251, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=53] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=54] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:05:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| XFailed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_size | 132.75 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> @pytest.mark.xfail(reason='Device does not support fragmentation') async def test_ipv4_ping_size(testbed): """ Test Name: test_ipv4_ping_size Test Suite: suite_functional_ipv4 Test Overview: Test IPv4 ping size Test Procedure: 1. Init interfaces 2. Configure ports up 3. Configure IP addrs 4. Add dynamic arp entries 5. Generate ping with size smaller than mru and larger than mru and verify fragmentation on the larger ping """ # 1. Init interfaces tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] dent = dent_dev.host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] address_map = ( # swp port, tg port, swp ip, tg ip, plen (ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24), (ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24), (ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24), (ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24), ) # 2. Configure ports up out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port, *_ in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Configure IP addrs out = await IpAddress.add(input_data=[{dent: [ {'dev': port, 'prefix': f'{ip}/{plen}'} for port, _, ip, _, plen in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, gw, ip, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # 4. Add dynamic arp entries streams = { 'ipv4': {'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name']} } await tgen_utils_setup_streams(tgen_dev, None, streams) # will send arps to all ports # 5. Generate ping with size smaller than mru await asyncio.gather(*(do_ping(dent_dev, port, dst, size=100, timeout=15) for port, *_, dst, _ in address_map)) # Generate ping with size larger than mru and verify fragmentation > await asyncio.gather(*(do_ping(dent_dev, port, dst, size=1473, timeout=15) for port, *_, dst, _ in address_map)) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:278: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ dev = [DENT aggregation 1: 10.36.118.44], port = 'swp1', dst = '1.1.1.2' count = 1, interval = 0.1, size = 1473, timeout = 15 async def do_ping(dev, port, dst, count=1, interval=0.1, size=0, timeout=120): cmd = f'ping -I {port} -c {count} -i {interval} -s {size} -w {timeout} {dst}' cmd += ' | grep "ping statistics" -A 2' # filter ouptut rc, out = await dev.run_cmd(cmd) assert rc == 0, f'Failed to send ping from {port} to {dst}' > assert ' 0% ' in out, f'Some pings did not reach their destination\n{out}' E AssertionError: Some pings did not reach their destination E --- 1.1.1.2 ping statistics --- E 145 packets transmitted, 0 received, 100% packet loss, time 14982ms E E E assert ' 0% ' in '--- 1.1.1.2 ping statistics ---\n145 packets transmitted, 0 received, 100% packet loss, time 14982ms\n\n' /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:35: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7070' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_size">Starting testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=129] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=129] Local address: 172.17.0.4, port 51682 INFO asyncssh:logging.py:92 [conn=129] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=129] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=129] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:34:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=129, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=129, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=129, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=129, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=129, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=129, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:34:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=129, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=129, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=129, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=129, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=129, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=129, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=13] Received channel close DEBUG agg1:Logger.py:156 ping -I swp1 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=14] Received channel close DEBUG agg1:Logger.py:156 ping -I swp2 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=16] Requesting new SSH session DEBUG agg1:Logger.py:156 ping -I swp3 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=15] Command: ping -I swp1 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 DEBUG agg1:Logger.py:156 ping -I swp4 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=16] Command: ping -I swp2 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=17] Command: ping -I swp3 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=18] Command: ping -I swp4 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=15] Channel closed DEBUG agg1:Logger.py:156 --- 1.1.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.314/0.314/0.314/0.000 ms INFO asyncssh:logging.py:92 [conn=129, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=18] Received channel close DEBUG agg1:Logger.py:156 --- 2.2.2.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.186/0.186/0.186/0.000 ms INFO asyncssh:logging.py:92 [conn=129, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=18] Channel closed DEBUG agg1:Logger.py:156 --- 3.3.3.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.216/0.216/0.216/0.000 ms DEBUG agg1:Logger.py:156 --- 4.4.4.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.172/0.172/0.172/0.000 ms INFO asyncssh:logging.py:92 [conn=129, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=21] Received channel close DEBUG agg1:Logger.py:156 ping -I swp1 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=22] Received channel close DEBUG agg1:Logger.py:156 ping -I swp2 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=24] Requesting new SSH session DEBUG agg1:Logger.py:156 ping -I swp3 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=23] Command: ping -I swp1 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 DEBUG agg1:Logger.py:156 ping -I swp4 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=24] Command: ping -I swp2 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=25] Command: ping -I swp3 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=26] Command: ping -I swp4 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=23] Channel closed DEBUG agg1:Logger.py:156 --- 1.1.1.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14982ms INFO asyncssh:logging.py:92 [conn=129, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=25] Received channel close DEBUG agg1:Logger.py:156 --- 2.2.2.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14981ms INFO asyncssh:logging.py:92 [conn=129, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=26] Received channel close DEBUG agg1:Logger.py:156 --- 3.3.3.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14978ms INFO asyncssh:logging.py:92 [conn=129, chan=26] Channel closed -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py DEBUG agg1:Logger.py:156 --- 4.4.4.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14992ms INFO asyncssh:logging.py:92 [conn=129, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=27] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=129, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=129, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=28] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:37:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:37:09 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=129, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=129, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=34] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=129, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=129, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=129, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=129, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=129, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=38] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=129, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=38] Channel closed DEBUG agg1:Logger.py:156 | |||
| XFailed | functional/ipv4/test_ipv4_mtu.py::test_ipv4_fragmentation | 142.57 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f67a45f9c90> @pytest.mark.xfail(reason='Device does not support fragmentation') async def test_ipv4_fragmentation(testbed): """ Test Name: test_ipv4_fragmentation Test Suite: suite_functional_ipv4 Test Overview: Test IPv4 fragmentation Test Procedure: 1. Init interfaces 2. Configure ports up 3. Configure IP addrs 4. Generate Non-fragment/fragment traffic and verify reception """ # 1. Init interfaces tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] traffic_duration = 10 fragmented = 1522 non_fragmented = 1420 address_map = ( # swp port, tg port, swp ip, tg ip, plen (ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24), (ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24), (ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24), (ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24), ) # 2. Configure ports up out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port, *_ in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Configure IP addrs out = await IpAddress.add(input_data=[{dent: [ {'dev': port, 'prefix': f'{ip}/{plen}'} for port, _, ip, _, plen in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, gw, ip, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) streams = { f'{tg1} <-> {tg2} | frame size {size}': { 'type': 'ipv4', 'ip_source': dev_groups[tg1][0]['name'], 'ip_destination': dev_groups[tg2][0]['name'], 'protocol': 'ip', 'rate': '1000', # pps 'frameSize': size, 'bi_directional': True, } for tg1, tg2, size in ((tg_ports[0], tg_ports[1], non_fragmented), (tg_ports[2], tg_ports[3], fragmented)) } # 4. Generate Non-fragment/fragment traffic and verify reception await tgen_utils_setup_streams(tgen_dev, None, streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) # Verify packet discarded/fwd stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Flow Statistics') for row in stats.Rows: loss = tgen_utils_get_loss(row) if str(non_fragmented) in row['Traffic Item']: assert loss == 0, f'Expected loss: 0%, actual: {loss}%' assert row['Tx Frames'] == row['Rx Frames'], \ f"Expected Tx Frames {row['Tx Frames']} to equal Rx Frames {row['Rx Frames']}" else: # fragmented traffic > assert int(row['Rx Frames']) == int(row['Tx Frames']) * 2, \ f"Expected Rx Frames {row['Rx Frames']} to equal 2 * Tx Frames {2 * int(row['Tx Frames'])}" E AssertionError: Expected Rx Frames 0 to equal 2 * Tx Frames 8750 E assert 0 == (4375 * 2) E + where 0 = int('0') E + and 4375 = int('4375') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py:214: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7276' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_fragmentation">Starting testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=133] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=133] Local address: 172.17.0.4, port 43076 INFO asyncssh:logging.py:92 [conn=133] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=133] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=133] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:43:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=133, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=133, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=133, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=133, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=133, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=133, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:43:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=133, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=133, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=133, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=133, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=133, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 | frame size 1420 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 | frame size 1522 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2252cb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 | frame size 1420 SIP-DIP 1.1.1.2-2.2.2.2 Tx 4375 Rx 4375 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 | frame size 1420 SIP-DIP 2.2.2.2-1.1.1.2 Tx 4375 Rx 4375 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 | frame size 1522 SIP-DIP 3.3.3.2-4.4.4.2 Tx 4375 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 | frame size 1522 SIP-DIP 4.4.4.2-3.3.3.2 Tx 4375 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py INFO asyncssh:logging.py:92 [conn=133, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=133, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=133, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:46:11 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:46:11 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=133, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=133, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=18] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=133, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=133, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=133, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=133, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=133, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=22] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=133, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Skipped | functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-full] | 11.23 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 68, 'Skipped: Need 2 ports with the same speed of 10 and duplex full') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-full]">Starting testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=0, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=1] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=1] Local address: 172.17.0.4, port 41752 INFO asyncssh:logging.py:92 [conn=1] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=1] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=1] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=1, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=1, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=1, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=4] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=1, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=8] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=1, chan=9] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=1, chan=10] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=1, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=8] Channel closed DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=1, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=9] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=1, chan=10] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=1, chan=11] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=1, chan=12] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=1, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=12] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=12] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=1, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=1, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=16] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=1, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=18] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=1, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=18] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=1, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=19] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=1, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=20] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=1, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=1, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:32 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=1, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=26] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-half] | 0.46 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 68, 'Skipped: Need 2 ports with the same speed of 10 and duplex half') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-58' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-half]">Starting testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=2] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=2] Local address: 172.17.0.4, port 57780 INFO asyncssh:logging.py:92 [conn=2] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=2] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=2] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=2, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=2, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=2, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=2, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=2, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=2, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=2, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=2, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=2, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=7] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=2, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=2, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=2, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=2, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=2, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=2, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=2, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=2, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:32 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=2, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-full] | 0.43 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 68, 'Skipped: Need 2 ports with the same speed of 100 and duplex full') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-98' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-full]">Starting testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=3] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=3] Local address: 172.17.0.4, port 57786 INFO asyncssh:logging.py:92 [conn=3] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=3] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=3] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=3, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=3, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=3, chan=7] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=3, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=3, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=6] Channel closed DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=3, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=3, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=3, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=3, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=3, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=9] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=3, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=3, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=3, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=3, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=3, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=3, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=3, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:33 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=3, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:33 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=3, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-half] | 0.43 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 68, 'Skipped: Need 2 ports with the same speed of 100 and duplex half') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-138' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-half]">Starting testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=4] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=4] Local address: 172.17.0.4, port 57798 INFO asyncssh:logging.py:92 [conn=4] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=4] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=4] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=4, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=4, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=4, chan=7] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=4, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=4, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=6] Channel closed DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=4, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=4, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=4, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=4, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=4, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=9] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=4, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=4, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=4, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=4, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=4, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=4, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=4, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:33 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=4, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:33 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=4, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_autodetect.py::test_l1_autodetect[1000-full] | 0.43 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 68, 'Skipped: Need 2 ports with the same speed of 1000 and duplex full') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-178' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[1000-full]">Starting testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=5] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=5] Local address: 172.17.0.4, port 57800 INFO asyncssh:logging.py:92 [conn=5] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=5] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=5] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=5, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=5, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=5, chan=7] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=5, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=6] Channel closed DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=5, chan=9] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=5, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=5, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=5, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=5, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=5, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=5, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=5, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=5, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=5, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=5, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=5, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:34 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=5, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-full] | 0.44 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 75, 'Skipped: Need 2 ports with the same speed of 10 and duplex full') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-218' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-full]">Starting testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=6] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=6] Local address: 172.17.0.4, port 57804 INFO asyncssh:logging.py:92 [conn=6] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=6] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=6] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=6, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=6, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=6, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=6, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=6, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=6, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=6, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=6, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=6, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=7] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=6, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=6, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=6, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=6, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=6, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=6, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=6, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=6, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:34 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=6, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-half] | 0.44 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 75, 'Skipped: Need 2 ports with the same speed of 10 and duplex half') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-258' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-half]">Starting testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=7] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=7] Local address: 172.17.0.4, port 57816 INFO asyncssh:logging.py:92 [conn=7] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=7] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=7] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=7, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=7, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=4] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=7, chan=7] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=7, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=7, chan=8] Command: ethtool swp2 DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=7, chan=9] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=7, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=7, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=7, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=7] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=7, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=7, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=7, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=7, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=7, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=7, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=7, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=7, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=7, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-full] | 0.42 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 75, 'Skipped: Need 2 ports with the same speed of 100 and duplex full') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-298' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-full]">Starting testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=8] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=8] Local address: 172.17.0.4, port 57820 INFO asyncssh:logging.py:92 [conn=8] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=8] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=8] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=8, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=8, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=8, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=8, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=8, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=8, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=8, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=8, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=8, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=7] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=8, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=8, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=8, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=8, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=8, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=8, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=8, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=8, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=8, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-half] | 0.42 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 75, 'Skipped: Need 2 ports with the same speed of 100 and duplex half') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-338' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-half]">Starting testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=9] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=9] Local address: 172.17.0.4, port 57824 INFO asyncssh:logging.py:92 [conn=9] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=9] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=9] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=9, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=9, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=9, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=9, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=9, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=9, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=9, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=9, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=9, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=8] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=9, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=9, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=9, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=9, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=9, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=9, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=9, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=9, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:36 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=9, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_autoneg.py::test_l1_autoneg[1000-full] | 0.44 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 75, 'Skipped: Need 2 ports with the same speed of 1000 and duplex full') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-378' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[1000-full]">Starting testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=10] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=10] Local address: 172.17.0.4, port 57830 INFO asyncssh:logging.py:92 [conn=10] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=10] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=10] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=10, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=10, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=10, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=10, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=10, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=10, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=10, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=10, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=10, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=7] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=10, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=10, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=10, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=10, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=10, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=10, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=10, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=10, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:36 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=10, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_config.py::test_l1_settings_[autodetect] | 0.48 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py', 49, 'Skipped: Need 1 ports with the same speed of 1000 and duplex full') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-418' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autodetect]">Starting testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=11] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=11] Local address: 172.17.0.4, port 57840 INFO asyncssh:logging.py:92 [conn=11] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=11] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=11] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=11, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=11, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=11, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=11, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=11, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=11, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=11, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=11, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=11, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=8] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=11, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=11, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=11, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=11, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=11, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=18] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=18] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=19] Channel closed DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=11, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=20] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=20] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=11, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=21] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=11, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=22] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=11, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=11, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:36 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=11, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=28] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_config.py::test_l1_settings_[autoneg] | 0.52 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py', 49, 'Skipped: Need 1 ports with the same speed of 1000 and duplex full') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-462' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autoneg]">Starting testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=12] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=12] Local address: 172.17.0.4, port 57848 INFO asyncssh:logging.py:92 [conn=12] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=12] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=12] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=12, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=12, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=12, chan=7] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=12, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=12, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=6] Channel closed DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=12, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=12, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=12, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=12, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=12, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=12, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=12, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=12, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=12, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=12, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=18] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=18] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=19] Channel closed DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=12, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=20] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=20] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=12, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=21] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=12, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=22] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=12, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:37 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=12, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:37 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=12, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=28] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-full] | 0.47 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Need 2 ports with the same speed of 10 and duplex full') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-506' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-full]">Starting testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=13] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=13] Local address: 172.17.0.4, port 57858 INFO asyncssh:logging.py:92 [conn=13] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=13] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=13] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=13, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=13, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=13, chan=7] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=13, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=5] Channel closed DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=13, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=13, chan=8] Command: ethtool swp2 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=13, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=13, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=13, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=9] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=13, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=13, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=13, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=13, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=13, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=13, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=13, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:37 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=13, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:37 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=13, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-half] | 0.49 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Need 2 ports with the same speed of 10 and duplex half') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-546' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-half]">Starting testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=14] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=14] Local address: 172.17.0.4, port 57872 INFO asyncssh:logging.py:92 [conn=14] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=14] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=14] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:38 UTC 2023 INFO asyncssh:logging.py:92 [conn=14, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=14, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=4] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=14, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=14, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=14, chan=6] Channel closed DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=14, chan=9] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=14, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=14, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=14, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=14, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=9] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=9] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:38 UTC 2023 INFO asyncssh:logging.py:92 [conn=14, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=14, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=14, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=14, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=14, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=14, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=14, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:38 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=14, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:38 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=14, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-full] | 0.47 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Need 2 ports with the same speed of 100 and duplex full') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-586' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-full]">Starting testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=15] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=15] Local address: 172.17.0.4, port 57886 INFO asyncssh:logging.py:92 [conn=15] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=15] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=15] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:38 UTC 2023 INFO asyncssh:logging.py:92 [conn=15, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=15, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=6] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=15, chan=7] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=15, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=15, chan=9] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=15, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=15, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=15, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=15, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=15, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=9] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:38 UTC 2023 INFO asyncssh:logging.py:92 [conn=15, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=15, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=15, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=15, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=15, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:38 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=15, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:38 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=15, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-half] | 0.49 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Need 2 ports with the same speed of 100 and duplex half') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-626' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-half]">Starting testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=16] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=16] Local address: 172.17.0.4, port 57890 INFO asyncssh:logging.py:92 [conn=16] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=16] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=16] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=16, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=16, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=4] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=16, chan=7] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=16, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=5] Channel closed DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=16, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=6] Channel closed DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=16, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=7] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=16, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=16, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=16, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=16, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=9] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=16, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=16, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=16, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=16, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=16, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=16, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=16, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:39 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=16, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:39 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=16, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[1000-full] | 0.42 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Need 2 ports with the same speed of 1000 and duplex full') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-666' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[1000-full]">Starting testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=17] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=17] Local address: 172.17.0.4, port 57894 INFO asyncssh:logging.py:92 [conn=17] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=17] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=17] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=17, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=17, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=17, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=17, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=17, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=17, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=17, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=17, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=17, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=7] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=17, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=17, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=17, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=17, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=17, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=18] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:39 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': 'Ixia not connected'}}] INFO asyncssh:logging.py:92 [conn=17, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:39 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=17, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_mixed_speed.py::test_l1_mixed_speed | 0.75 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py', 66, 'Skipped: Need 1 ports with the same speed of 10 and duplex full') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-760' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_mixed_speed">Starting testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=19] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=19] Local address: 172.17.0.4, port 34142 INFO asyncssh:logging.py:92 [conn=19] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=19] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=19] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:44:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=19, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=19, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=19, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=19, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=19, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=19, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=19, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=19, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=19, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=7] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:44:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=19, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=19, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=19, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=19, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=19, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=18] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=18] Channel closed DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=19] Channel closed DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=19, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=20] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=20] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py INFO asyncssh:logging.py:92 [conn=19, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=21] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=22] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:44:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=19, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:44:28 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=19, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=28] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_port_state.py::test_l1_link_up_state_software_power_cycle | 0.00 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py', 95, 'Skipped: https://github.com/dentproject/dentOS/issues/152') -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_link_up_state_software_power_cycle from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_on[port] | 3.04 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-19000' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_on[port]">Starting testcase:test_vrrp_basic_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=277, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=278] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=278] Local address: 172.17.0.4, port 42720 INFO asyncssh:logging.py:92 [conn=278] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=278] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=278] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=278, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=278, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=278, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=278, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=278, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=278, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=278, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=278, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=278, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:51 UTC 2023 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=278, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=278, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=8] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:51 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=278, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=278, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=278, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=10] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=278, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=278, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=278, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=278, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=278, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:51 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=278, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=278, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=278, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=278, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=278, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=278, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=278, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up INFO asyncssh:logging.py:92 [conn=278, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up INFO asyncssh:logging.py:92 [conn=278, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=20] Channel closed DEBUG agg1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_on[bridge] | 2.80 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-19035' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_on[bridge]">Starting testcase:test_vrrp_basic_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=278, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=279] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=279] Local address: 172.17.0.4, port 42726 INFO asyncssh:logging.py:92 [conn=279] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=279] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=279] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=279, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=279, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=279, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=279, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=279, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=279, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=279, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=279, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=279, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:54 UTC 2023 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=279, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=279, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=8] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:54 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=279, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=279, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=279, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=10] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=279, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=279, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=279, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=279, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=279, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:54 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=279, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=279, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=279, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=279, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=279, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=279, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=279, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=279, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=279, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=20] Channel closed DEBUG agg1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_down_on[port] | 2.30 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-19070' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_down_on[port]">Starting testcase:test_vrrp_basic_down_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=279, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=280] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=280] Local address: 172.17.0.4, port 42742 INFO asyncssh:logging.py:92 [conn=280] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=280] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=280] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=280, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=280, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=280, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=280, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=280, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=280, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=280, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=280, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=280, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:57 UTC 2023 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_down_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=280, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=280, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=8] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:57 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=280, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=280, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=280, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=10] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=280, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=280, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=280, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=280, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=280, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:57 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=280, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=280, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=280, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=280, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=280, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=280, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=280, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=280, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=280, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=20] Channel closed DEBUG agg1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_down_on[bridge] | 1.09 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-19105' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_down_on[bridge]">Starting testcase:test_vrrp_basic_down_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=280, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=281] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=281] Local address: 172.17.0.4, port 42758 INFO asyncssh:logging.py:92 [conn=281] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=281] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=281] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=281, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=281, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=281, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=281, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=281, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=281, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=281, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=281, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=281, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:59 UTC 2023 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_down_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=281, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=281, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=8] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:59 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=281, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=281, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=281, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=10] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=281, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=281, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=281, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=281, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=281, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:37:00 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=281, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=281, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=281, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=281, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=281, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=281, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=281, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 up && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=281, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 up && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=281, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=20] Channel closed DEBUG agg1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_priority.py::test_vrrp_priority_on[port] | 0.67 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-19140' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_priority_on[port]">Starting testcase:test_vrrp_priority_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=281, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=282] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=282] Local address: 172.17.0.4, port 38274 INFO asyncssh:logging.py:92 [conn=282] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=282] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=282] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=282, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:37:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=282, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=282, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=282, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=282, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=282, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=282, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=282, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=282, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:37:00 UTC 2023 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_priority_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py INFO asyncssh:logging.py:92 [conn=282, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=282, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=8] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:37:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=282, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=282, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=282, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=10] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=282, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=282, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=282, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=282, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=282, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:37:01 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=282, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=282, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=282, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=282, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=282, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=282, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=282, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=282, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=282, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=20] Channel closed DEBUG agg1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_priority.py::test_vrrp_priority_on[bridge] | 0.56 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-19175' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_priority_on[bridge]">Starting testcase:test_vrrp_priority_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=282, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=283] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=283] Local address: 172.17.0.4, port 38290 INFO asyncssh:logging.py:92 [conn=283] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=283] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=283] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=283, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:37:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=283, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=283, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=283, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=283, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=283, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=283, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=283, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=283, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:37:01 UTC 2023 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_priority_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py INFO asyncssh:logging.py:92 [conn=283, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=283, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=8] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:37:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=283, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=283, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=283, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=10] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=283, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=283, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=283, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=283, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=283, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:37:01 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=283, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=283, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=283, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=283, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=283, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=283, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=283, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=283, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=283, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=20] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10000-full] | 167.82 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-706' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10000-full]">Starting testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=18] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=18] Local address: 172.17.0.4, port 57904 INFO asyncssh:logging.py:92 [conn=18] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=18] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=18] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=18, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=18, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=3] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=5] Received channel close DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=18, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=4] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=6] Received channel close DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=8] Requesting new SSH session DEBUG agg1:Logger.py:156 ethtool swp3 INFO asyncssh:logging.py:92 [conn=18, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=7] Command: ethtool swp1 DEBUG agg1:Logger.py:156 ethtool swp4 INFO asyncssh:logging.py:92 [conn=18, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=8] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=9] Command: ethtool swp3 INFO asyncssh:logging.py:92 [conn=18, chan=10] Command: ethtool swp4 INFO asyncssh:logging.py:92 [conn=18, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=9] Received channel close DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=10] Received channel close DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes DEBUG agg1:Logger.py:156 Settings for swp3: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=10] Channel closed DEBUG agg1:Logger.py:156 Settings for swp4: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:41:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=18, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=18, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=14] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=18, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=14] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=16] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=16] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=18, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=18] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=18, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=18, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=18, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=18, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=18, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 INFO asyncssh:logging.py:92 [conn=18, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=22] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 INFO asyncssh:logging.py:92 [conn=18, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=18, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=23] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=18, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=24] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=18, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10000 to 10000 on tgen_port 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10000 to 10000 on tgen_port 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=18, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=25] Channel closed DEBUG agg1:Logger.py:156 ethtool swp1 INFO asyncssh:logging.py:92 [conn=18, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=26] Command: ethtool swp1 INFO asyncssh:logging.py:92 [conn=18, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=26] Channel closed DEBUG agg1:Logger.py:156 Settings for swp1: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=27] Channel closed DEBUG agg1:Logger.py:156 ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=28] Command: ethtool swp2 INFO asyncssh:logging.py:92 [conn=18, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=28] Channel closed DEBUG agg1:Logger.py:156 Settings for swp2: Supported ports: [ FIBRE ] Supported link modes: 10000baseSR/Full Supported pause frame use: No Supports auto-negotiation: No Supported FEC modes: Not reported Advertised link modes: 10000baseSR/Full Advertised pause frame use: No Advertised auto-negotiation: No Advertised FEC modes: Not reported Speed: 10000Mb/s Duplex: Full Auto-negotiation: off Port: FIBRE PHYAD: 0 Transceiver: internal Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 --> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 --> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2812ef0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 --> 10.36.118.199:1:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6845808 Rx 6845808 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:6 --> 10.36.118.199:1:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 6845808 Rx 6845808 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=18, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=29] Channel closed DEBUG agg1:Logger.py:156 ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=18, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=30] Command: ethtool -s swp1 speed 10000 autoneg off duplex full && ethtool -s swp2 speed 10000 autoneg off duplex full && ethtool -s swp3 speed 10000 autoneg off duplex full && ethtool -s swp4 speed 10000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=18, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:44:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=18, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=34] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:44:27 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=18, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":54,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=18, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=18, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=18, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=38] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_port_state.py::test_l1_port_state_status | 0.50 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_port_state_status">Starting testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-803' coro=<test_l1_port_state_status() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py:92> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete It took 0:00:00.034537 to grep count of entities. It took 0:00:00.040072 to set entities to 'UP' state. -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=20] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=20] Local address: 172.17.0.4, port 34150 INFO asyncssh:logging.py:92 [conn=20] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=20] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=20] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:44:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=20, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=1] Channel closed DEBUG agg1:Logger.py:156 ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=2] Command: ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=2] Channel closed DEBUG agg1:Logger.py:156 bond0: flags=5122<BROADCAST,MASTER,MULTICAST> mtu 1500 ether ee:24:75:28:9d:b8 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 dummy0: flags=130<BROADCAST,NOARP> mtu 1500 ether 6e:ee:25:a0:db:1d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 4 bytes 272 (272.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 4 bytes 272 (272.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ma1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.36.118.44 netmask 255.255.255.0 broadcast 10.36.118.255 inet6 fe80::36ef:b6ff:feec:3804 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:04 txqueuelen 2048 (Ethernet) RX packets 4641 bytes 481935 (470.6 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 4278 bytes 541222 (528.5 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 sit0: flags=128<NOARP> mtu 1480 sit txqueuelen 1000 (IPv6-in-IPv4) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:3807 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:07 txqueuelen 1000 (Ethernet) RX packets 6845816 bytes 3505054208 (3.2 GiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 6845849 bytes 3505058040 (3.2 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:3808 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:08 txqueuelen 1000 (Ethernet) RX packets 6845816 bytes 3505054208 (3.2 GiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 6845846 bytes 3505057718 (3.2 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:3809 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:09 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 18 bytes 2604 (2.5 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp4: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:380a prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:0a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 18 bytes 2604 (2.5 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp5: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp6: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp7: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp8: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp9: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp10: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:10 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp11: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:11 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp12: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:12 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp13: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:13 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp14: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:14 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp15: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:15 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp16: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:16 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp17: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:17 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp18: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:18 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp19: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:19 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp20: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp21: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp22: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp23: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp24: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp25: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp26: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:20 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp27: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:21 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp28: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:22 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp29: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:23 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp30: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:24 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp31: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:25 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp32: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:26 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp33: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:27 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp34: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:28 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp35: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:29 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp36: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp37: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp38: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp39: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp40: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp41: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp42: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:30 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp43: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:31 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp44: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:32 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp45: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:33 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp46: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:34 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp47: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:35 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp48: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:36 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=4] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=20, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=6] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=6] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:44:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[pass] | 181.10 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[pass]">Starting testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-820' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=21] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=21] Local address: 172.17.0.4, port 34154 INFO asyncssh:logging.py:92 [conn=21] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=21] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=21] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:44:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=21, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=8] Command: tc filter add dev swp1 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2d4afb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 456 Rx 456 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=10] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":233472,"packets":456,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":233472,"hw_packets":456,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 456, Rx Frames: 456, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 456, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 456, packets = 456, expected = 456, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 456, hw_packets = 456, expected = 456, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=12] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=14] Command: tc filter add dev swp1 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a287ce20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 807 Rx 807 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=16] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":14,"stats":{"bytes":401388,"packets":806,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 807, Rx Frames: 807, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 807, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 807, packets = 806, expected = 807, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=18] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=20] Command: tc filter add dev swp1 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2898dc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 809 Rx 809 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=22] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"first_used":14,"stats":{"bytes":817090,"packets":1618,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":402882,"sw_packets":809,"hw_bytes":414208,"hw_packets":809,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 809, Rx Frames: 809, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 809, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 809, packets = 1618, expected = 1618, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 809, hw_packets = 809, expected = 809, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 809, sw_packets = 809, expected = 809, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=21, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:47:29 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=21, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":55,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=21, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:47:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:47:29 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=21, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=21, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=56] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=58] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=64] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[drop] | 182.36 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[drop]">Starting testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-897' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=22] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=22] Local address: 172.17.0.4, port 50158 INFO asyncssh:logging.py:92 [conn=22] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=22] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=22] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:47:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=22, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=8] Command: tc filter add dev swp1 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a289aad0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 460 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=10] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":235520,"packets":460,"drops":460,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":235520,"hw_packets":460,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 460, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 460, drops = 460, expected = 460, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 460, packets = 460, expected = 460, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 460, hw_packets = 460, expected = 460, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=12] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=14] Command: tc filter add dev swp1 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2fc4070>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 809 Rx 809 Loss 0.000 INFO asyncssh:logging.py:92 [conn=22, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=16] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":14,"stats":{"bytes":402882,"packets":809,"drops":809,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 809, Rx Frames: 809, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 809, drops = 809, expected = 809, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 809, packets = 809, expected = 809, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=18] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=20] Command: tc filter add dev swp1 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a295f220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 804 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=22] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":411648,"packets":804,"drops":804,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":411648,"hw_packets":804,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 804, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 804, drops = 804, expected = 804, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 804, packets = 804, expected = 804, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 804, hw_packets = 804, expected = 804, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 804, sw_packets = 0, expected = 0, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=22, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:50:31 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=22, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":56,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=22, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:50:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:50:31 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=22, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=22, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=56] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=58] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=64] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[trap] | 181.36 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[trap]">Starting testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-974' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=23] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=23] Local address: 172.17.0.4, port 42772 INFO asyncssh:logging.py:92 [conn=23] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=23] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=23] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:50:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=23, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=8] Command: tc filter add dev swp1 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2e16b00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 454 Rx 454 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=10] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":232448,"packets":454,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":232448,"hw_packets":454,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 454, Rx Frames: 454, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 454, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 454, packets = 454, expected = 454, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 454, hw_packets = 454, expected = 454, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=12] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=14] Command: tc filter add dev swp1 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2d4b0d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 811 Rx 811 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=16] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":14,"stats":{"bytes":403380,"packets":810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 811, Rx Frames: 811, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 811, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 811, packets = 810, expected = 811, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=18] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=20] Command: tc filter add dev swp1 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2d48bb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream SIP-DIP N/A Tx 809 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=23, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=22] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":17,"first_used":14,"stats":{"bytes":817090,"packets":1618,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":402882,"sw_packets":809,"hw_bytes":414208,"hw_packets":809,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 809, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 809, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 809, packets = 1618, expected = 1618, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 809, hw_packets = 809, expected = 809, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 809, sw_packets = 809, expected = 809, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=23, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:53:32 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=23, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":57,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=23, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:53:33 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:53:33 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=23, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=23, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=56] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=58] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=64] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_rule_deletion | 15.34 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_deletion">Starting testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1051' coro=<test_acl_rule_deletion() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:198> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=24] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=24] Local address: 172.17.0.4, port 55270 INFO asyncssh:logging.py:92 [conn=24] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=24] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=24] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:53:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=24, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=1] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=2] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=3] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 10000 flower src_mac 02:a1:e1:26:5b:17 dst_mac 02:04:51:f0:15:d5 vlan_id 9 vlan_ethtype ip src_ip 122.6.53.242 dst_ip 71.30.240.118 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10001 flower src_mac 02:96:d4:d2:4e:65 dst_mac 02:3f:e9:3d:5f:33 src_ip 34.255.94.209 dst_ip 74.38.145.61 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10002 flower src_mac 02:93:09:ed:0a:be dst_mac 02:d5:47:9e:6b:8d src_ip 33.63.206.13 dst_ip 84.110.59.139 ip_proto tcp src_port 55710 dst_port 50976 action trap && tc filter add dev swp1 ingress protocol ip pref 10003 flower src_mac 02:6a:e9:84:6b:ee dst_mac 02:b2:a2:4f:6e:40 src_ip 69.132.209.26 dst_ip 49.151.56.250 ip_proto icmp code 54 type 13 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10004 flower src_mac 02:f1:e7:cf:dd:8b dst_mac 02:18:b8:ce:2a:a0 vlan_id 3511 vlan_ethtype ipv4 src_ip 21.112.52.198 dst_ip 30.32.2.232 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10005 flower src_mac 02:19:8a:26:91:2c dst_mac 02:9a:07:a0:d9:42 vlan_id 4018 vlan_ethtype 0x0800 src_ip 50.12.125.49 dst_ip 121.249.216.149 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10006 flower src_mac 02:23:f5:8a:c5:94 dst_mac 02:f7:d0:a0:c5:2e action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10007 flower src_mac 02:9f:9c:21:f3:3d dst_mac 02:97:73:71:0f:8e vlan_id 3781 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10008 flower src_mac 02:7f:a7:05:71:97 dst_mac 02:0d:8e:8d:74:47 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10009 flower src_mac 02:5c:9f:82:3f:1c dst_mac 02:ed:10:7b:d6:bc action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10010 flower src_mac 02:92:48:84:b9:85 dst_mac 02:96:a2:53:fd:10 vlan_id 3857 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10011 flower src_mac 02:87:be:1b:37:9d dst_mac 02:11:14:b1:22:c8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10012 flower src_mac 02:05:4a:bf:5b:7a dst_mac 02:15:ea:59:e8:53 vlan_id 1073 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10013 flower src_mac 02:91:a3:14:2d:0b dst_mac 02:4f:9f:c6:ca:3a src_ip 57.196.225.12 dst_ip 23.17.104.208 ip_proto icmp code 153 type 4 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10014 flower src_mac 02:b8:25:b3:e6:dc dst_mac 02:0f:7e:3b:00:d6 src_ip 124.110.124.58 dst_ip 115.42.82.164 ip_proto icmp code 3 type 18 action trap && tc filter add dev swp1 ingress protocol ip pref 10015 flower src_mac 02:4d:7d:d6:9e:0e dst_mac 02:15:60:34:2c:1b src_ip 29.103.243.122 dst_ip 32.62.161.61 ip_proto tcp src_port 34208 dst_port 65072 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10016 flower src_mac 02:32:18:50:a6:68 dst_mac 02:b4:c2:fe:0b:35 vlan_id 3106 vlan_ethtype ipv4 src_ip 27.173.148.107 dst_ip 110.251.10.190 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10017 flower src_mac 02:de:95:ef:e5:07 dst_mac 02:84:a8:a2:32:68 vlan_id 49 vlan_ethtype 0x0800 src_ip 113.122.73.112 dst_ip 108.138.51.107 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10018 flower src_mac 02:5e:e9:65:c2:d2 dst_mac 02:f5:31:55:3d:cc vlan_id 2336 vlan_ethtype ipv4 src_ip 85.205.125.213 dst_ip 22.20.180.190 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10019 flower src_mac 02:73:b4:89:77:08 dst_mac 02:d4:8a:42:23:c8 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10020 flower src_mac 02:78:c2:80:1f:01 dst_mac 02:42:02:ac:82:f3 vlan_id 1660 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10021 flower src_mac 02:51:02:2f:7a:bf dst_mac 02:45:1e:8d:f6:67 vlan_id 1208 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10022 flower src_mac 02:73:bb:29:ca:8f dst_mac 02:39:4f:3c:7b:b5 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10023 flower src_mac 02:75:9b:1f:e9:c7 dst_mac 02:a5:85:0f:fb:c5 vlan_id 284 vlan_ethtype ip src_ip 81.147.73.91 dst_ip 120.28.161.9 ip_proto tcp src_port 64840 dst_port 1559 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10024 flower src_mac 02:5c:cc:75:fd:34 dst_mac 02:f8:d5:43:f9:7d vlan_id 1406 vlan_ethtype 0x0800 src_ip 53.68.170.6 dst_ip 84.132.5.209 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10025 flower src_mac 02:b3:8e:08:7c:b9 dst_mac 02:3b:a3:bc:c1:ff vlan_id 1585 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10026 flower src_mac 02:56:47:e9:b9:36 dst_mac 02:eb:eb:c7:e7:54 vlan_id 2531 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10027 flower src_mac 02:a2:bf:a3:8d:d2 dst_mac 02:b8:40:ea:3c:79 vlan_id 780 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10028 flower src_mac 02:13:df:a6:8d:c0 dst_mac 02:a6:f7:8a:e3:74 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10029 flower src_mac 02:0a:32:95:1a:92 dst_mac 02:4f:cb:14:6a:77 vlan_id 3850 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10030 flower src_mac 02:f1:ce:82:98:23 dst_mac 02:fc:d0:9e:0f:44 vlan_id 1946 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10031 flower src_mac 02:07:82:c7:e5:01 dst_mac 02:8b:29:44:46:7e vlan_id 338 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10032 flower src_mac 02:cc:99:46:1f:50 dst_mac 02:64:65:65:a9:e6 vlan_id 345 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10033 flower src_mac 02:81:c9:9e:d5:e4 dst_mac 02:c9:56:28:ee:48 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10034 flower src_mac 02:dc:a7:39:eb:0a dst_mac 02:d9:5d:db:34:06 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10035 flower src_mac 02:f7:97:47:c3:23 dst_mac 02:8b:9e:2a:6b:a0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10036 flower src_mac 02:7b:22:d0:12:c7 dst_mac 02:26:ae:ef:6d:62 vlan_id 2144 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10037 flower src_mac 02:51:62:98:de:f8 dst_mac 02:4b:c0:22:3b:f9 src_ip 60.184.204.6 dst_ip 48.162.220.88 ip_proto icmp code 181 type 18 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10038 flower src_mac 02:a4:c5:8c:f3:8d dst_mac 02:da:8c:c7:33:78 vlan_id 2588 vlan_ethtype ipv4 src_ip 112.137.42.98 dst_ip 99.93.112.132 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10039 flower src_mac 02:5f:85:c7:69:bc dst_mac 02:fd:a0:9a:5f:f4 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10040 flower src_mac 02:e9:d4:5a:98:69 dst_mac 02:56:18:c7:83:28 src_ip 22.91.53.167 dst_ip 31.89.118.129 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10041 flower src_mac 02:46:e3:c7:bc:60 dst_mac 02:fb:7f:3f:36:50 src_ip 47.27.141.86 dst_ip 37.152.49.89 ip_proto icmp code 157 type 8 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10042 flower src_mac 02:c2:09:e4:db:b9 dst_mac 02:53:d5:49:4c:22 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10043 flower src_mac 02:1d:1a:de:59:56 dst_mac 02:18:f0:16:dd:4f vlan_id 782 vlan_ethtype 0x0800 src_ip 63.244.172.16 dst_ip 121.174.106.161 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10044 flower src_mac 02:94:38:ca:0b:56 dst_mac 02:e2:91:17:60:6a vlan_id 3651 vlan_ethtype 0x0800 src_ip 39.66.49.249 dst_ip 117.176.187.89 ip_proto udp src_port 35315 dst_port 44442 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10045 flower src_mac 02:ab:18:9e:c8:34 dst_mac 02:f9:55:bd:90:da src_ip 66.208.212.79 dst_ip 24.240.194.193 ip_proto tcp src_port 25194 dst_port 8819 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10046 flower src_mac 02:a2:0d:06:63:1e dst_mac 02:dc:19:68:44:fa src_ip 113.6.126.59 dst_ip 87.53.221.240 action pass && tc filter add dev swp1 ingress protocol ip pref 10047 flower src_mac 02:83:f2:cd:53:74 dst_mac 02:ef:ec:06:66:9c src_ip 65.81.74.221 dst_ip 105.27.222.170 ip_proto udp src_port 18522 dst_port 35286 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10048 flower src_mac 02:bd:e3:6f:ff:01 dst_mac 02:9f:55:3a:3a:f5 vlan_id 1179 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10049 flower src_mac 02:0f:1e:4e:fc:79 dst_mac 02:51:c6:a3:75:6d vlan_id 1255 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10050 flower src_mac 02:87:e9:90:12:f3 dst_mac 02:4a:86:1c:26:74 vlan_id 2065 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10051 flower src_mac 02:d3:4d:4e:99:ab dst_mac 02:20:61:9a:0d:cb src_ip 63.33.234.239 dst_ip 57.74.70.80 ip_proto udp src_port 1222 dst_port 55952 action drop && tc filter add dev swp1 ingress protocol ip pref 10052 flower src_mac 02:91:32:47:c0:ec dst_mac 02:20:97:20:67:fa src_ip 64.56.191.95 dst_ip 81.241.159.46 ip_proto icmp code 184 type 0 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10053 flower src_mac 02:8a:64:e3:a1:3f dst_mac 02:4c:a0:1b:27:7b vlan_id 3438 vlan_ethtype ip src_ip 37.170.235.121 dst_ip 64.78.107.73 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10054 flower src_mac 02:7b:07:e4:b8:79 dst_mac 02:92:c9:aa:33:ea action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10055 flower src_mac 02:eb:1f:35:9f:4d dst_mac 02:24:1b:0e:c1:85 vlan_id 2623 vlan_ethtype 0x0800 src_ip 74.18.250.143 dst_ip 69.178.165.120 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10056 flower src_mac 02:ab:2f:f2:3f:88 dst_mac 02:a0:76:4a:c9:c7 vlan_id 1508 vlan_ethtype 0x0800 src_ip 120.190.10.1 dst_ip 46.188.114.61 ip_proto udp src_port 55116 dst_port 32691 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10057 flower src_mac 02:a8:ee:62:42:43 dst_mac 02:37:ab:8b:49:df vlan_id 2888 vlan_ethtype ip src_ip 106.97.152.26 dst_ip 78.151.131.143 ip_proto tcp src_port 50548 dst_port 21644 action trap && tc filter add dev swp1 ingress protocol ip pref 10058 flower src_mac 02:0f:b5:f4:e4:87 dst_mac 02:18:f1:2d:77:b1 src_ip 72.203.138.74 dst_ip 97.158.113.38 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10059 flower src_mac 02:45:1c:fb:aa:ad dst_mac 02:3b:29:ab:2e:8b action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10060 flower src_mac 02:dd:32:3c:2f:ec dst_mac 02:3b:b4:10:27:2b vlan_id 1252 vlan_ethtype ip src_ip 89.156.125.217 dst_ip 105.219.206.153 ip_proto tcp src_port 20466 dst_port 52380 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10061 flower src_mac 02:55:ab:9e:d2:83 dst_mac 02:60:8b:3f:9a:80 vlan_id 2443 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10062 flower src_mac 02:fd:1d:47:7a:58 dst_mac 02:56:57:92:23:13 src_ip 22.241.65.173 dst_ip 72.81.168.152 ip_proto udp src_port 52203 dst_port 48887 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10063 flower src_mac 02:b6:c4:e0:2f:42 dst_mac 02:2c:0f:d8:ad:70 vlan_id 926 vlan_ethtype ip src_ip 15.16.144.15 dst_ip 43.3.224.225 action trap && tc filter add dev swp1 ingress protocol ip pref 10064 flower src_mac 02:a3:99:d2:59:1d dst_mac 02:20:1e:db:4a:0c src_ip 59.169.64.147 dst_ip 108.11.64.215 ip_proto tcp src_port 16216 dst_port 24434 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10065 flower src_mac 02:03:9f:69:de:18 dst_mac 02:b4:94:88:bc:ba vlan_id 3378 vlan_ethtype ip src_ip 35.89.192.128 dst_ip 110.231.104.65 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10066 flower src_mac 02:ab:92:13:76:0a dst_mac 02:c1:4e:ba:5d:80 vlan_id 371 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10067 flower src_mac 02:f4:cb:e0:4c:9d dst_mac 02:c7:6a:7a:ee:5d src_ip 84.228.85.10 dst_ip 60.104.96.190 ip_proto udp src_port 34318 dst_port 22276 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10068 flower src_mac 02:46:e8:6d:35:71 dst_mac 02:96:0c:f2:4e:3b action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10069 flower src_mac 02:55:93:54:d3:77 dst_mac 02:5f:01:46:45:f4 vlan_id 2390 vlan_ethtype ipv4 src_ip 60.32.64.104 dst_ip 118.98.106.165 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10070 flower src_mac 02:a1:7c:33:64:93 dst_mac 02:7e:46:5e:81:9d vlan_id 2342 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10071 flower src_mac 02:cf:77:94:03:25 dst_mac 02:e2:fa:b7:73:91 vlan_id 824 vlan_ethtype 0x0800 src_ip 102.181.60.7 dst_ip 70.91.164.124 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10072 flower src_mac 02:ab:7a:4f:da:e7 dst_mac 02:6b:f4:57:ec:9b vlan_id 3835 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10073 flower src_mac 02:6c:b1:1c:5b:1e dst_mac 02:dd:de:b8:57:d3 vlan_id 88 vlan_ethtype ipv4 src_ip 112.211.7.110 dst_ip 59.50.154.56 ip_proto tcp src_port 11946 dst_port 32930 action drop && tc filter add dev swp1 ingress protocol ip pref 10074 flower src_mac 02:d5:b6:c4:4c:3f dst_mac 02:83:7d:a8:a5:2d src_ip 120.194.76.6 dst_ip 16.192.56.15 ip_proto icmp code 128 type 14 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10075 flower src_mac 02:0d:27:25:51:58 dst_mac 02:bb:f1:78:94:3c vlan_id 3944 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10076 flower src_mac 02:75:6a:02:1c:d2 dst_mac 02:c1:64:c4:a8:88 src_ip 119.220.179.172 dst_ip 17.163.136.45 ip_proto tcp src_port 22371 dst_port 2216 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10077 flower src_mac 02:2c:05:1d:2d:93 dst_mac 02:62:21:61:b9:9e vlan_id 2844 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10078 flower src_mac 02:c4:2e:71:4a:9e dst_mac 02:05:31:4f:99:02 vlan_id 1851 vlan_ethtype 0x0800 src_ip 21.99.183.28 dst_ip 81.1.19.152 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10079 flower src_mac 02:df:1d:f8:3d:ef dst_mac 02:8d:92:6a:2a:38 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10080 flower src_mac 02:e3:f3:50:a3:0f dst_mac 02:cb:f3:ca:5d:c9 vlan_id 1401 vlan_ethtype 0x0800 src_ip 29.122.205.173 dst_ip 71.63.175.48 ip_proto tcp src_port 50514 dst_port 15416 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10081 flower src_mac 02:0c:10:3c:03:0f dst_mac 02:da:21:84:9d:df vlan_id 573 vlan_ethtype ipv4 src_ip 123.247.50.100 dst_ip 125.108.236.153 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10082 flower src_mac 02:ba:5d:75:b2:c2 dst_mac 02:0e:46:19:7e:e4 src_ip 102.71.9.38 dst_ip 46.137.187.19 ip_proto udp src_port 38510 dst_port 248 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10083 flower src_mac 02:8b:d7:53:6f:d7 dst_mac 02:77:98:0a:ec:2d action drop && tc filter add dev swp1 ingress protocol ip pref 10084 flower src_mac 02:41:07:ba:56:4c dst_mac 02:e8:bf:30:22:19 src_ip 35.222.65.35 dst_ip 86.48.105.209 ip_proto tcp src_port 23685 dst_port 5305 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10085 flower src_mac 02:56:91:29:cd:e2 dst_mac 02:0b:14:d1:03:48 vlan_id 3655 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10086 flower src_mac 02:52:b7:c1:f2:89 dst_mac 02:12:93:44:eb:91 vlan_id 550 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10087 flower src_mac 02:1b:86:28:ab:23 dst_mac 02:3d:59:07:31:3d vlan_id 1859 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10088 flower src_mac 02:77:da:49:da:06 dst_mac 02:32:0b:25:80:bd action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10089 flower src_mac 02:e0:a8:e8:f4:af dst_mac 02:fa:0b:fc:3e:86 vlan_id 3901 vlan_ethtype ip src_ip 51.159.214.164 dst_ip 120.9.113.80 ip_proto tcp src_port 34284 dst_port 20508 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10090 flower src_mac 02:1a:33:79:0a:a7 dst_mac 02:30:59:b9:06:39 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10091 flower src_mac 02:ea:b4:99:cb:d0 dst_mac 02:56:17:d7:f4:94 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10092 flower src_mac 02:c3:b0:df:07:62 dst_mac 02:e9:55:ee:67:f3 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10093 flower src_mac 02:d2:62:0d:7c:f4 dst_mac 02:f1:1d:dc:15:e1 vlan_id 3717 vlan_ethtype 0x0800 src_ip 75.23.251.110 dst_ip 16.49.206.210 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10094 flower src_mac 02:d5:8f:0f:64:aa dst_mac 02:0e:5d:15:6e:72 vlan_id 1081 vlan_ethtype 0x0800 src_ip 29.1.163.68 dst_ip 43.109.201.39 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10095 flower src_mac 02:e5:dd:1d:82:16 dst_mac 02:35:1c:e5:db:21 src_ip 37.121.141.179 dst_ip 84.124.250.250 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10096 flower src_mac 02:e2:a2:2e:63:91 dst_mac 02:89:a4:7d:a8:82 src_ip 14.12.86.142 dst_ip 90.46.224.176 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10097 flower src_mac 02:c3:f4:fd:b9:d5 dst_mac 02:fe:25:78:ec:81 src_ip 83.70.201.10 dst_ip 107.229.105.60 ip_proto tcp src_port 52084 dst_port 34144 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10098 flower src_mac 02:ba:9c:4f:5d:f1 dst_mac 02:99:85:ce:3a:2b src_ip 119.112.195.178 dst_ip 49.176.194.231 ip_proto udp src_port 29180 dst_port 30827 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10099 flower src_mac 02:ab:1d:4a:0f:dc dst_mac 02:c8:f7:85:33:0d vlan_id 3605 vlan_ethtype ip src_ip 79.8.232.169 dst_ip 79.241.91.112 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10100 flower src_mac 02:f6:e5:ad:da:3d dst_mac 02:64:f3:15:bf:43 vlan_id 1250 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 10101 flower src_mac 02:d6:9a:99:50:db dst_mac 02:4f:b3:e3:c3:5b src_ip 124.128.84.81 dst_ip 104.193.98.154 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10102 flower src_mac 02:72:61:30:40:c4 dst_mac 02:2f:11:78:2d:64 src_ip 85.248.254.173 dst_ip 78.160.61.201 ip_proto icmp code 33 type 4 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10103 flower src_mac 02:b2:eb:c1:84:a4 dst_mac 02:5e:8f:b1:be:88 action trap && tc filter add dev swp1 ingress protocol ip pref 10104 flower src_mac 02:9a:10:05:44:ff dst_mac 02:bf:57:78:ec:2c src_ip 31.73.172.126 dst_ip 58.215.172.76 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10105 flower src_mac 02:82:0b:47:4e:91 dst_mac 02:71:80:11:ac:ec vlan_id 3058 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10106 flower src_mac 02:45:82:6e:9e:cd dst_mac 02:d4:ed:ba:4f:8c vlan_id 2983 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10107 flower src_mac 02:45:24:16:21:d0 dst_mac 02:be:4d:8f:45:f7 vlan_id 571 vlan_ethtype 0x0800 src_ip 40.125.255.188 dst_ip 92.27.214.113 action drop && tc filter add dev swp1 ingress protocol ip pref 10108 flower src_mac 02:6c:43:e8:18:4d dst_mac 02:74:2a:52:d0:5c src_ip 38.115.66.213 dst_ip 110.244.245.209 ip_proto udp src_port 21304 dst_port 41591 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10109 flower src_mac 02:2e:24:58:d3:94 dst_mac 02:ce:2c:1a:38:6e vlan_id 571 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10110 flower src_mac 02:a2:92:6c:49:32 dst_mac 02:b3:56:cc:fa:d5 vlan_id 754 vlan_ethtype 0x0800 src_ip 18.150.82.240 dst_ip 93.247.116.15 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10111 flower src_mac 02:7c:7e:3f:41:42 dst_mac 02:5e:19:7e:97:b1 vlan_id 2569 vlan_ethtype ipv4 src_ip 48.173.146.157 dst_ip 89.242.211.223 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10112 flower src_mac 02:53:f0:c8:c6:a1 dst_mac 02:f7:43:51:07:08 vlan_id 2600 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10113 flower src_mac 02:29:e4:cc:2c:3e dst_mac 02:54:83:82:7e:f2 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10114 flower src_mac 02:cd:7c:b8:5b:f9 dst_mac 02:36:db:c4:cb:62 vlan_id 1005 vlan_ethtype 0x0800 src_ip 96.32.215.135 dst_ip 64.243.181.216 ip_proto tcp src_port 62556 dst_port 25688 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10115 flower src_mac 02:1f:fe:02:e3:4a dst_mac 02:92:27:3e:2b:81 vlan_id 3078 vlan_ethtype ipv4 src_ip 55.121.106.220 dst_ip 26.222.73.236 ip_proto udp src_port 24490 dst_port 37972 action drop && tc filter add dev swp1 ingress protocol ip pref 10116 flower src_mac 02:f0:81:21:cc:ab dst_mac 02:28:cd:3c:89:46 src_ip 62.245.231.36 dst_ip 85.45.76.203 ip_proto icmp code 43 type 0 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10117 flower src_mac 02:4b:b5:f4:bc:79 dst_mac 02:f9:3b:bc:64:9b vlan_id 3761 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10118 flower src_mac 02:7f:56:8a:e4:4e dst_mac 02:ea:84:1b:86:4c vlan_id 1498 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10119 flower src_mac 02:3f:9b:4e:1e:18 dst_mac 02:51:cb:21:f8:e2 vlan_id 1233 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10120 flower src_mac 02:0a:4c:0c:1f:f1 dst_mac 02:ac:51:1a:e4:e8 vlan_id 2983 vlan_ethtype ip src_ip 56.151.42.51 dst_ip 13.115.7.237 ip_proto tcp src_port 3602 dst_port 13959 action drop && tc filter add dev swp1 ingress protocol ip pref 10121 flower src_mac 02:d5:ad:25:c2:50 dst_mac 02:51:63:4d:03:26 src_ip 58.249.145.68 dst_ip 71.237.2.201 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10122 flower src_mac 02:44:9c:70:55:1f dst_mac 02:8c:27:2f:57:a4 src_ip 99.31.52.130 dst_ip 55.97.186.195 ip_proto icmp code 144 type 14 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10123 flower src_mac 02:bb:af:b9:09:8a dst_mac 02:7a:56:89:bf:b7 vlan_id 3800 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10124 flower src_mac 02:63:a5:62:fe:90 dst_mac 02:46:d9:7a:06:c5 src_ip 83.95.40.139 dst_ip 66.133.202.246 ip_proto udp src_port 55809 dst_port 45166 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10125 flower src_mac 02:f6:75:00:1a:f3 dst_mac 02:cf:50:b0:04:ad vlan_id 1507 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10126 flower src_mac 02:85:ed:a8:aa:23 dst_mac 02:64:cf:cc:b0:1c src_ip 47.168.211.58 dst_ip 73.185.232.68 ip_proto udp src_port 47346 dst_port 42129 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10127 flower src_mac 02:a6:4e:92:08:6d dst_mac 02:61:ea:36:59:dc src_ip 94.5.240.57 dst_ip 71.16.154.152 ip_proto icmp code 50 type 0 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10128 flower src_mac 02:af:07:a5:c2:8a dst_mac 02:7a:ce:9c:e0:7f action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10129 flower src_mac 02:8f:85:8d:c0:3b dst_mac 02:ec:6c:55:0d:f6 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10130 flower src_mac 02:7a:6c:c7:61:d5 dst_mac 02:0e:7f:92:9c:4c action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10131 flower src_mac 02:bd:17:0b:37:b7 dst_mac 02:bb:59:99:c8:c8 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10132 flower src_mac 02:6c:db:e9:27:44 dst_mac 02:23:af:92:81:89 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10133 flower src_mac 02:be:15:bb:55:b5 dst_mac 02:87:ee:17:fd:a3 src_ip 87.231.55.225 dst_ip 75.1.42.55 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10134 flower src_mac 02:bc:f3:9e:83:12 dst_mac 02:b7:94:42:59:c1 vlan_id 2549 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10135 flower src_mac 02:9f:33:3e:b7:1c dst_mac 02:ef:6d:0c:dc:22 vlan_id 3202 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10136 flower src_mac 02:a0:51:4d:ca:7e dst_mac 02:5a:28:ea:1a:d4 vlan_id 2728 vlan_ethtype ipv4 src_ip 43.143.59.250 dst_ip 70.179.173.218 ip_proto tcp src_port 36713 dst_port 43871 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10137 flower src_mac 02:20:6f:4b:46:40 dst_mac 02:bb:31:2a:08:9a vlan_id 1478 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10138 flower src_mac 02:c9:65:39:3a:88 dst_mac 02:22:fb:2d:2f:67 vlan_id 1896 vlan_ethtype ipv4 src_ip 84.242.69.149 dst_ip 18.150.193.201 ip_proto tcp src_port 7567 dst_port 4980 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10139 flower src_mac 02:5f:70:8b:69:39 dst_mac 02:e0:c5:f9:2d:05 vlan_id 2881 vlan_ethtype ip src_ip 18.105.195.18 dst_ip 101.132.114.71 ip_proto tcp src_port 30959 dst_port 35128 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10140 flower src_mac 02:9c:95:c8:fa:4f dst_mac 02:2a:98:88:32:e8 vlan_id 2615 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10141 flower src_mac 02:84:8b:0f:f5:e2 dst_mac 02:a9:9c:68:c3:92 vlan_id 3146 vlan_ethtype ip src_ip 67.2.72.74 dst_ip 17.97.192.45 ip_proto udp src_port 54642 dst_port 13362 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10142 flower src_mac 02:93:d1:61:1d:6f dst_mac 02:44:13:72:3b:c3 vlan_id 1788 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10143 flower src_mac 02:b7:45:1d:58:fa dst_mac 02:03:7f:75:53:1f action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10144 flower src_mac 02:1d:09:7b:c3:07 dst_mac 02:bd:59:ee:e2:ba action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10145 flower src_mac 02:32:12:f2:42:e5 dst_mac 02:c2:63:20:d7:07 vlan_id 3924 vlan_ethtype 0x0800 src_ip 25.169.49.243 dst_ip 122.193.255.225 ip_proto udp src_port 26153 dst_port 42872 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10146 flower src_mac 02:e3:5a:68:6e:1d dst_mac 02:a7:6e:37:b3:9a vlan_id 3044 vlan_ethtype ip src_ip 69.70.170.151 dst_ip 108.184.234.194 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10147 flower src_mac 02:f6:ac:3a:1c:4c dst_mac 02:12:7c:f9:68:67 vlan_id 2378 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10148 flower src_mac 02:46:fe:c1:94:61 dst_mac 02:d7:62:44:d5:dd vlan_id 1380 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10149 flower src_mac 02:67:8d:0c:86:f9 dst_mac 02:1f:e2:f7:a6:b9 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10150 flower src_mac 02:97:03:86:d2:14 dst_mac 02:b9:e0:02:d0:c7 src_ip 115.85.95.16 dst_ip 81.105.7.150 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10151 flower src_mac 02:bc:63:e0:07:80 dst_mac 02:04:a1:ad:c0:92 src_ip 91.181.97.147 dst_ip 91.48.205.235 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10152 flower src_mac 02:7e:e3:b7:57:f0 dst_mac 02:81:2b:30:b0:00 src_ip 17.91.30.171 dst_ip 24.11.242.101 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10153 flower src_mac 02:46:c8:a0:13:2f dst_mac 02:20:56:39:77:85 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10154 flower src_mac 02:c9:09:83:31:a1 dst_mac 02:f6:f6:fa:0a:3b action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10155 flower src_mac 02:0e:b7:8b:f8:2a dst_mac 02:65:5f:ef:f3:58 vlan_id 3799 vlan_ethtype 0x0800 src_ip 120.140.252.37 dst_ip 73.135.67.132 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10156 flower src_mac 02:95:69:fb:bd:a2 dst_mac 02:bd:e1:11:d6:02 vlan_id 3029 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10157 flower src_mac 02:94:15:d5:0c:c2 dst_mac 02:61:38:a6:37:27 src_ip 11.116.121.66 dst_ip 125.120.243.186 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10158 flower src_mac 02:0d:a1:08:35:0e dst_mac 02:75:67:18:d3:49 src_ip 73.73.98.149 dst_ip 35.207.17.64 ip_proto tcp src_port 65465 dst_port 21129 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10159 flower src_mac 02:16:3e:d8:f0:f0 dst_mac 02:d9:23:19:ad:32 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10160 flower src_mac 02:83:c5:fa:1a:54 dst_mac 02:5f:09:c9:0a:27 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10161 flower src_mac 02:e7:57:04:f7:e4 dst_mac 02:77:ac:af:22:8f src_ip 112.219.129.231 dst_ip 76.137.227.79 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10162 flower src_mac 02:bf:03:17:bd:26 dst_mac 02:8b:54:20:84:8d vlan_id 2424 vlan_ethtype ipv4 src_ip 25.141.90.136 dst_ip 104.51.170.43 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10163 flower src_mac 02:40:49:f4:d8:ee dst_mac 02:33:74:47:fe:3b vlan_id 638 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10164 flower src_mac 02:e5:71:8e:ca:e5 dst_mac 02:1b:c9:da:6f:60 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10165 flower src_mac 02:91:cf:d6:e2:cf dst_mac 02:db:99:c4:d2:15 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10166 flower src_mac 02:35:73:3f:2e:7f dst_mac 02:d3:c4:d2:fe:97 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10167 flower src_mac 02:6e:66:5e:8e:ef dst_mac 02:5c:b3:d0:da:5d vlan_id 3282 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10168 flower src_mac 02:b3:3a:47:6a:5d dst_mac 02:b6:14:fa:28:61 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10169 flower src_mac 02:3d:8d:16:ec:7d dst_mac 02:8f:03:7c:6d:10 vlan_id 2183 vlan_ethtype ip src_ip 30.185.34.24 dst_ip 21.27.97.183 ip_proto udp src_port 1633 dst_port 3281 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10170 flower src_mac 02:85:4e:14:b8:bf dst_mac 02:1e:c1:71:c6:7f action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10171 flower src_mac 02:09:f4:cd:4c:86 dst_mac 02:1d:08:ba:63:91 vlan_id 1775 vlan_ethtype ip src_ip 125.212.84.239 dst_ip 41.105.184.72 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10172 flower src_mac 02:4b:55:18:b0:2c dst_mac 02:97:7c:d5:cf:5d vlan_id 2824 vlan_ethtype ipv4 src_ip 13.218.146.170 dst_ip 90.183.143.240 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10173 flower src_mac 02:a3:e5:c7:19:e0 dst_mac 02:c5:1f:00:6e:a8 vlan_id 2702 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10174 flower src_mac 02:85:83:55:ea:df dst_mac 02:58:06:7c:7a:c5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10175 flower src_mac 02:0c:59:2f:95:a4 dst_mac 02:2b:cf:9f:ba:ec vlan_id 3280 vlan_ethtype 0x0800 src_ip 32.13.172.182 dst_ip 26.85.252.65 ip_proto udp src_port 47905 dst_port 65061 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10176 flower src_mac 02:98:00:62:49:6a dst_mac 02:60:8e:0e:6c:b0 vlan_id 1505 vlan_ethtype 0x0800 src_ip 100.142.87.215 dst_ip 68.201.217.81 ip_proto tcp src_port 56082 dst_port 26945 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10177 flower src_mac 02:8f:79:4c:47:d4 dst_mac 02:6e:41:4f:e2:c8 src_ip 85.152.232.101 dst_ip 15.200.253.62 ip_proto tcp src_port 51403 dst_port 27726 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10178 flower src_mac 02:ce:ba:97:02:30 dst_mac 02:c3:8c:a7:00:af action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10179 flower src_mac 02:73:9b:0b:fc:99 dst_mac 02:96:bd:79:d9:1a action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10180 flower src_mac 02:c1:53:a0:5f:94 dst_mac 02:14:56:fa:86:d0 vlan_id 1049 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10181 flower src_mac 02:f1:31:6e:71:fe dst_mac 02:63:94:6c:db:e1 vlan_id 686 vlan_ethtype 0x0800 src_ip 110.24.208.15 dst_ip 80.207.164.149 ip_proto tcp src_port 35321 dst_port 43846 action trap && tc filter add dev swp1 ingress protocol ip pref 10182 flower src_mac 02:3a:bd:73:7d:ef dst_mac 02:b7:cf:19:2a:56 src_ip 48.106.134.183 dst_ip 40.207.110.20 ip_proto tcp src_port 6806 dst_port 3092 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10183 flower src_mac 02:b3:ba:1d:cc:2a dst_mac 02:e8:01:44:e0:60 vlan_id 1452 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10184 flower src_mac 02:52:b2:2f:7a:92 dst_mac 02:48:1d:be:f1:8b action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10185 flower src_mac 02:71:ac:d8:a2:8c dst_mac 02:68:85:ce:31:20 vlan_id 2788 vlan_ethtype ipv4 src_ip 93.243.94.88 dst_ip 106.77.196.35 ip_proto tcp src_port 36080 dst_port 3667 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10186 flower src_mac 02:47:87:15:d5:22 dst_mac 02:bf:4c:58:0a:5e src_ip 87.130.111.98 dst_ip 126.87.142.27 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10187 flower src_mac 02:be:e2:f9:6a:d5 dst_mac 02:1c:a8:1f:40:2f vlan_id 3878 vlan_ethtype ipv4 src_ip 79.46.76.31 dst_ip 105.135.214.123 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10188 flower src_mac 02:03:56:34:7c:d1 dst_mac 02:9d:0f:bf:00:4f action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10189 flower src_mac 02:07:a0:a1:e0:c8 dst_mac 02:eb:fa:35:9e:92 vlan_id 583 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10190 flower src_mac 02:fc:76:4e:db:42 dst_mac 02:b1:56:a6:e3:fd action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10191 flower src_mac 02:7f:a7:95:e3:2e dst_mac 02:fd:4c:3e:d9:2b src_ip 53.55.77.137 dst_ip 44.100.19.20 ip_proto udp src_port 63602 dst_port 30139 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10192 flower src_mac 02:c4:47:92:a7:be dst_mac 02:f6:97:cf:3c:04 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10193 flower src_mac 02:9b:57:38:72:7f dst_mac 02:7c:4b:51:98:69 vlan_id 385 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10194 flower src_mac 02:1d:a1:b6:e1:16 dst_mac 02:8a:7f:ac:92:83 vlan_id 2309 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10195 flower src_mac 02:f1:7b:58:cb:60 dst_mac 02:e0:36:21:38:52 src_ip 40.19.186.196 dst_ip 50.87.123.228 ip_proto udp src_port 54152 dst_port 45384 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10196 flower src_mac 02:79:46:3f:a9:e7 dst_mac 02:18:fe:56:1d:63 src_ip 84.231.245.93 dst_ip 62.133.81.232 ip_proto tcp src_port 1347 dst_port 41325 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10197 flower src_mac 02:f6:fe:0b:aa:12 dst_mac 02:47:23:4f:56:3f action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10198 flower src_mac 02:04:63:6f:12:56 dst_mac 02:9f:ce:a8:20:14 src_ip 41.36.98.26 dst_ip 65.43.196.218 ip_proto udp src_port 14312 dst_port 57050 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10199 flower src_mac 02:e9:d5:97:3a:f2 dst_mac 02:c7:57:3c:28:e2 vlan_id 3285 vlan_ethtype ipv4 src_ip 72.206.95.116 dst_ip 78.34.168.13 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10200 flower src_mac 02:2d:90:91:af:f0 dst_mac 02:04:23:ae:8d:df action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10201 flower src_mac 02:c7:9e:17:6d:dd dst_mac 02:f8:89:f2:2d:b3 vlan_id 2226 vlan_ethtype 0x0800 src_ip 79.132.42.106 dst_ip 80.195.54.153 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10202 flower src_mac 02:64:f6:5a:c5:d6 dst_mac 02:3a:81:d8:1b:43 src_ip 38.22.245.209 dst_ip 25.207.107.50 ip_proto icmp code 216 type 3 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10203 flower src_mac 02:0c:98:46:5f:5e dst_mac 02:96:69:29:47:71 vlan_id 642 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10204 flower src_mac 02:57:88:2d:c7:15 dst_mac 02:f9:97:09:d3:05 src_ip 64.36.156.89 dst_ip 40.144.147.199 ip_proto tcp src_port 45845 dst_port 63417 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10205 flower src_mac 02:41:6a:0d:ee:0d dst_mac 02:78:e8:5c:d7:08 vlan_id 3753 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10206 flower src_mac 02:75:e6:e8:46:e0 dst_mac 02:87:fe:39:1a:f9 vlan_id 1578 vlan_ethtype ip src_ip 56.151.177.122 dst_ip 101.28.150.181 ip_proto udp src_port 6607 dst_port 59988 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10207 flower src_mac 02:e5:4f:72:27:20 dst_mac 02:a7:00:c0:ef:a9 action pass && tc filter add dev swp1 ingress protocol ip pref 10208 flower src_mac 02:70:b4:02:57:21 dst_mac 02:65:40:9e:73:3e src_ip 79.77.60.8 dst_ip 78.15.188.80 ip_proto tcp src_port 60283 dst_port 47822 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10209 flower src_mac 02:86:f8:77:fc:c0 dst_mac 02:82:f5:c8:65:ce vlan_id 2175 vlan_ethtype ip src_ip 27.105.25.223 dst_ip 43.107.8.111 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10210 flower src_mac 02:50:fb:ed:08:87 dst_mac 02:e7:16:6c:c5:15 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10211 flower src_mac 02:d9:58:14:d9:9b dst_mac 02:d7:aa:d3:83:de action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10212 flower src_mac 02:ba:ca:25:94:f5 dst_mac 02:8a:bc:d8:9d:23 vlan_id 3793 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10213 flower src_mac 02:a1:df:bb:db:5f dst_mac 02:1c:a3:2e:e2:ec vlan_id 1355 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10214 flower src_mac 02:7e:e9:37:b3:79 dst_mac 02:b9:65:81:69:e9 action drop && tc filter add dev swp1 ingress protocol ip pref 10215 flower src_mac 02:f2:bd:d6:b5:a0 dst_mac 02:a1:96:a5:86:82 src_ip 38.32.238.84 dst_ip 41.168.12.163 ip_proto tcp src_port 30008 dst_port 10082 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10216 flower src_mac 02:bc:ae:fb:a8:4a dst_mac 02:bf:da:2b:f3:88 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10217 flower src_mac 02:1d:58:ce:07:e9 dst_mac 02:ec:a1:c1:bb:7a action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10218 flower src_mac 02:ef:c1:c2:a8:2e dst_mac 02:c9:cb:22:93:ea action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10219 flower src_mac 02:17:0f:62:cf:e7 dst_mac 02:a4:21:20:f0:ce src_ip 121.101.184.85 dst_ip 111.219.232.235 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10220 flower src_mac 02:d3:33:72:d1:a4 dst_mac 02:2e:45:8d:8e:01 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10221 flower src_mac 02:ac:0e:f5:70:8d dst_mac 02:a7:f8:38:b4:52 vlan_id 3066 vlan_ethtype ip src_ip 43.49.6.47 dst_ip 119.85.7.87 ip_proto udp src_port 42296 dst_port 24892 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10222 flower src_mac 02:d4:7a:55:12:e3 dst_mac 02:12:b5:80:f6:23 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10223 flower src_mac 02:f8:97:d1:f7:b1 dst_mac 02:2f:3d:af:71:13 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10224 flower src_mac 02:53:ac:bf:3b:7c dst_mac 02:d2:e3:59:5f:21 vlan_id 121 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10225 flower src_mac 02:12:2a:a3:52:96 dst_mac 02:eb:e0:28:82:fa vlan_id 5 vlan_ethtype 0x0800 src_ip 76.27.204.158 dst_ip 23.36.18.127 ip_proto tcp src_port 8487 dst_port 14606 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10226 flower src_mac 02:27:ed:66:2e:d8 dst_mac 02:c4:df:49:7e:4c vlan_id 2026 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 10227 flower src_mac 02:43:41:17:9e:e6 dst_mac 02:24:3c:0f:d5:2c src_ip 44.13.81.104 dst_ip 11.73.106.176 ip_proto icmp code 184 type 14 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10228 flower src_mac 02:e8:fb:0e:58:1d dst_mac 02:2c:09:31:bf:e5 vlan_id 2945 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10229 flower src_mac 02:dc:be:e1:84:93 dst_mac 02:0a:b7:f7:ed:d1 vlan_id 2305 vlan_ethtype ip src_ip 57.111.107.234 dst_ip 114.127.12.124 ip_proto udp src_port 19507 dst_port 11860 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10230 flower src_mac 02:47:ac:5f:c8:3e dst_mac 02:ee:5b:b0:74:9a vlan_id 244 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10231 flower src_mac 02:63:8f:01:5e:6e dst_mac 02:a3:f8:a8:54:66 src_ip 84.29.199.214 dst_ip 88.11.185.235 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10232 flower src_mac 02:e0:16:35:34:15 dst_mac 02:d0:c9:ee:06:0c vlan_id 944 vlan_ethtype 0x0800 src_ip 96.182.189.132 dst_ip 96.219.28.87 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10233 flower src_mac 02:a2:1d:74:1d:d0 dst_mac 02:62:1e:8f:4b:3a src_ip 124.97.187.136 dst_ip 122.218.210.227 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10234 flower src_mac 02:1b:40:13:41:57 dst_mac 02:d3:a8:d9:e7:8c vlan_id 1672 vlan_ethtype 0x0800 src_ip 52.59.73.184 dst_ip 46.66.4.226 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10235 flower src_mac 02:cd:33:d5:1c:e4 dst_mac 02:a4:11:c8:85:bb action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10236 flower src_mac 02:07:af:e6:eb:9f dst_mac 02:1c:df:8e:58:af action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10237 flower src_mac 02:5f:53:02:48:42 dst_mac 02:b9:89:97:2c:59 vlan_id 1331 vlan_ethtype ip src_ip 93.94.187.77 dst_ip 74.41.27.32 action trap && tc filter add dev swp1 ingress protocol ip pref 10238 flower src_mac 02:1c:5e:2d:44:8e dst_mac 02:ee:39:f5:26:01 src_ip 43.233.171.214 dst_ip 42.65.25.79 ip_proto tcp src_port 10036 dst_port 17896 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10239 flower src_mac 02:51:d9:75:02:2b dst_mac 02:b6:fb:39:6d:ad vlan_id 2172 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10240 flower src_mac 02:6b:41:39:b7:64 dst_mac 02:8d:20:b0:e5:12 vlan_id 4036 vlan_ethtype 0x0800 src_ip 104.36.15.250 dst_ip 13.102.179.21 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10241 flower src_mac 02:88:cd:2d:85:35 dst_mac 02:bb:b5:55:e8:ce src_ip 67.126.47.130 dst_ip 124.228.89.56 ip_proto udp src_port 59212 dst_port 9177 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10242 flower src_mac 02:5a:4e:2c:61:6a dst_mac 02:05:64:d2:4e:7d action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10243 flower src_mac 02:1c:1b:13:06:0d dst_mac 02:e3:23:81:33:c8 vlan_id 755 vlan_ethtype 0x0800 src_ip 112.31.56.8 dst_ip 123.167.14.29 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10244 flower src_mac 02:78:5a:85:a8:c9 dst_mac 02:86:a2:34:32:89 vlan_id 4046 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10245 flower src_mac 02:94:a7:a6:fa:24 dst_mac 02:dd:7d:a1:0e:e0 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10246 flower src_mac 02:9f:cc:c1:01:96 dst_mac 02:09:37:9d:a3:e4 vlan_id 3832 vlan_ethtype ipv4 src_ip 91.132.83.213 dst_ip 112.152.38.216 ip_proto udp src_port 31269 dst_port 18441 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10247 flower src_mac 02:02:44:52:6b:ac dst_mac 02:4c:1d:ee:28:4b vlan_id 3611 vlan_ethtype ipv4 src_ip 108.244.107.208 dst_ip 116.161.122.48 ip_proto udp src_port 32777 dst_port 17332 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10248 flower src_mac 02:01:0e:42:f4:57 dst_mac 02:13:3f:7c:ce:bd vlan_id 2932 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10249 flower src_mac 02:fb:39:d9:f9:1d dst_mac 02:42:da:71:9f:9e action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10250 flower src_mac 02:c7:a1:cd:57:14 dst_mac 02:01:df:47:12:5a src_ip 66.209.235.108 dst_ip 103.217.62.164 ip_proto udp src_port 13606 dst_port 28899 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10251 flower src_mac 02:38:bb:72:72:57 dst_mac 02:67:cd:4a:67:9e src_ip 105.167.183.172 dst_ip 116.96.91.239 ip_proto icmp code 162 type 3 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10252 flower src_mac 02:70:89:ca:d5:57 dst_mac 02:fe:11:30:6c:fb action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10253 flower src_mac 02:62:64:47:f0:a7 dst_mac 02:23:74:8e:ed:b4 src_ip 48.12.129.94 dst_ip 20.98.188.99 ip_proto icmp code 212 type 13 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10254 flower src_mac 02:a7:38:90:b5:88 dst_mac 02:be:80:b3:7a:e0 vlan_id 1142 vlan_ethtype 0x0800 src_ip 29.143.98.70 dst_ip 115.247.158.155 ip_proto tcp src_port 59761 dst_port 41760 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10255 flower src_mac 02:47:0d:a7:4f:60 dst_mac 02:18:10:d5:9b:97 vlan_id 3523 vlan_ethtype ip src_ip 46.30.50.183 dst_ip 41.14.186.64 ip_proto udp src_port 29624 dst_port 37521 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10256 flower src_mac 02:4c:f0:bf:b1:5c dst_mac 02:52:5d:83:a5:66 src_ip 124.237.114.77 dst_ip 73.189.19.162 ip_proto tcp src_port 13645 dst_port 5932 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10257 flower src_mac 02:38:e7:88:ee:c6 dst_mac 02:9c:08:c0:3b:8a vlan_id 1274 vlan_ethtype ip src_ip 68.38.234.69 dst_ip 19.114.178.250 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10258 flower src_mac 02:04:50:7b:6b:a4 dst_mac 02:ab:0f:44:18:33 vlan_id 2350 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10259 flower src_mac 02:47:3c:70:bd:56 dst_mac 02:a9:3e:fe:1a:2b vlan_id 273 vlan_ethtype ip src_ip 11.10.59.190 dst_ip 34.141.173.127 ip_proto tcp src_port 59299 dst_port 52114 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10260 flower src_mac 02:75:f0:84:6a:d6 dst_mac 02:53:50:48:b3:04 vlan_id 571 vlan_ethtype 0x0800 src_ip 108.191.235.163 dst_ip 94.206.131.166 ip_proto udp src_port 18325 dst_port 57462 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10261 flower src_mac 02:31:0b:f5:18:26 dst_mac 02:29:46:49:6b:79 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10262 flower src_mac 02:f0:07:fc:78:b2 dst_mac 02:77:79:aa:86:96 vlan_id 145 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10263 flower src_mac 02:e8:bd:2b:49:6c dst_mac 02:1c:a1:c5:3c:32 vlan_id 3159 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10264 flower src_mac 02:2c:45:1f:58:85 dst_mac 02:1f:14:cf:92:a8 action pass && tc filter add dev swp1 ingress protocol ip pref 10265 flower src_mac 02:2f:3c:ee:4d:d4 dst_mac 02:a2:77:61:73:92 src_ip 56.243.15.191 dst_ip 87.118.192.11 ip_proto icmp code 27 type 14 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10266 flower src_mac 02:9c:ae:b1:be:14 dst_mac 02:fc:ca:97:63:cb src_ip 110.221.97.22 dst_ip 91.221.79.162 ip_proto tcp src_port 55786 dst_port 27265 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10267 flower src_mac 02:0d:8d:a3:5c:06 dst_mac 02:f2:c4:fe:a1:3b action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10268 flower src_mac 02:61:4b:f7:22:27 dst_mac 02:f0:57:8e:43:5f action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10269 flower src_mac 02:6b:f9:be:e4:99 dst_mac 02:48:7f:19:ad:7f vlan_id 2940 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10270 flower src_mac 02:32:61:df:a6:df dst_mac 02:fd:91:25:68:f4 src_ip 75.255.200.2 dst_ip 90.211.25.220 ip_proto tcp src_port 16378 dst_port 29556 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10271 flower src_mac 02:ef:8e:a3:d2:a0 dst_mac 02:0a:73:46:ea:5d vlan_id 2933 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10272 flower src_mac 02:24:ac:a0:a0:a3 dst_mac 02:10:79:36:84:74 vlan_id 2011 vlan_ethtype 0x0800 src_ip 16.159.169.210 dst_ip 116.87.86.147 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10273 flower src_mac 02:ee:ff:88:42:09 dst_mac 02:77:0b:60:db:80 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10274 flower src_mac 02:54:ea:19:8e:5c dst_mac 02:1a:f0:94:ad:55 vlan_id 1843 vlan_ethtype ip src_ip 124.98.214.98 dst_ip 69.236.201.3 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10275 flower src_mac 02:0c:5e:23:16:96 dst_mac 02:d4:ae:11:a5:66 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10276 flower src_mac 02:42:89:03:cb:7a dst_mac 02:40:dd:85:cb:7a vlan_id 2750 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10277 flower src_mac 02:66:23:90:75:ba dst_mac 02:8b:8a:fa:d9:7c action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10278 flower src_mac 02:5a:80:f0:2f:29 dst_mac 02:c0:6f:ac:41:17 vlan_id 3376 vlan_ethtype ipv4 src_ip 22.252.218.98 dst_ip 44.75.76.53 ip_proto tcp src_port 63889 dst_port 52969 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10279 flower src_mac 02:9f:aa:f5:19:a5 dst_mac 02:07:a6:0f:ed:89 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10280 flower src_mac 02:8b:ab:da:ba:bf dst_mac 02:db:c2:d5:34:79 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10281 flower src_mac 02:86:c7:de:75:cf dst_mac 02:0a:ca:0d:29:c8 vlan_id 1427 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10282 flower src_mac 02:62:cd:ae:9f:1d dst_mac 02:b6:78:d5:41:28 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10283 flower src_mac 02:ef:a8:1a:dc:56 dst_mac 02:a5:75:15:f3:56 vlan_id 1765 vlan_ethtype 0x0800 src_ip 63.87.214.236 dst_ip 75.195.220.103 ip_proto udp src_port 19051 dst_port 21830 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10284 flower src_mac 02:e8:cf:7c:98:a7 dst_mac 02:87:ce:ab:2b:88 vlan_id 3252 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ip pref 10285 flower src_mac 02:f2:f4:1a:47:81 dst_mac 02:e5:42:25:c4:f8 src_ip 72.252.55.96 dst_ip 76.143.154.190 ip_proto udp src_port 60136 dst_port 42790 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10286 flower src_mac 02:1f:67:10:ec:26 dst_mac 02:65:2a:af:2e:0c src_ip 33.251.181.57 dst_ip 51.231.208.3 ip_proto tcp src_port 41150 dst_port 47742 action trap && tc filter add dev swp1 ingress protocol ip pref 10287 flower src_mac 02:f6:0b:78:5e:35 dst_mac 02:8d:b5:bc:df:3d src_ip 33.123.61.104 dst_ip 41.56.218.95 ip_proto tcp src_port 659 dst_port 49918 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10288 flower src_mac 02:b6:a5:9b:fe:e1 dst_mac 02:2a:b4:08:75:d0 vlan_id 1629 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 10289 flower src_mac 02:db:38:ce:30:6c dst_mac 02:7b:cc:c4:53:e3 src_ip 28.60.122.1 dst_ip 26.10.171.222 ip_proto udp src_port 63402 dst_port 51879 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10290 flower src_mac 02:fb:bc:74:1f:dc dst_mac 02:16:fe:5a:88:6d vlan_id 488 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10291 flower src_mac 02:02:aa:b7:1b:82 dst_mac 02:6e:fb:0d:3b:d6 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10292 flower src_mac 02:40:80:cb:f5:5e dst_mac 02:03:00:9a:45:8a vlan_id 1643 vlan_ethtype ip src_ip 21.71.154.85 dst_ip 113.28.57.120 ip_proto udp src_port 56390 dst_port 36618 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10293 flower src_mac 02:c8:6f:6f:ab:7c dst_mac 02:97:e0:a5:2f:e7 vlan_id 2469 vlan_ethtype 0x0800 src_ip 68.47.193.228 dst_ip 52.7.32.8 ip_proto tcp src_port 56851 dst_port 36239 action drop && tc filter add dev swp1 ingress protocol ip pref 10294 flower src_mac 02:1b:b3:64:6a:6c dst_mac 02:d3:f5:94:d8:33 src_ip 99.74.145.42 dst_ip 36.148.212.102 ip_proto udp src_port 50959 dst_port 4404 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10295 flower src_mac 02:1b:0f:b1:58:5f dst_mac 02:a6:a9:cf:46:36 vlan_id 2741 vlan_ethtype ip src_ip 72.13.17.235 dst_ip 16.24.226.221 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10296 flower src_mac 02:f7:93:c7:6e:4f dst_mac 02:f5:c4:af:fa:c9 vlan_id 1054 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10297 flower src_mac 02:08:98:1c:fc:14 dst_mac 02:fb:1a:09:66:47 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10298 flower src_mac 02:5a:34:e8:88:33 dst_mac 02:ad:55:3e:f7:7b vlan_id 2652 vlan_ethtype ip src_ip 55.104.198.192 dst_ip 100.184.130.73 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10299 flower src_mac 02:d5:b5:19:a0:05 dst_mac 02:96:e0:7c:49:b5 vlan_id 418 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10300 flower src_mac 02:cc:3a:01:07:55 dst_mac 02:ab:61:15:b0:48 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10301 flower src_mac 02:c2:05:4f:b2:f9 dst_mac 02:d1:bc:de:55:4b vlan_id 863 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10302 flower src_mac 02:93:30:e6:36:97 dst_mac 02:51:e7:8a:94:4e src_ip 59.101.91.142 dst_ip 56.2.28.125 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10303 flower src_mac 02:67:e7:50:7c:26 dst_mac 02:ca:9d:b6:bf:1d vlan_id 2031 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10304 flower src_mac 02:77:e4:e3:4c:16 dst_mac 02:08:3a:df:3a:e2 vlan_id 1411 vlan_ethtype ipv4 src_ip 40.156.101.137 dst_ip 125.209.209.31 ip_proto udp src_port 7841 dst_port 39379 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10305 flower src_mac 02:3e:85:cc:f4:90 dst_mac 02:a4:b3:c1:06:ca src_ip 83.2.159.237 dst_ip 52.225.95.170 ip_proto icmp code 164 type 18 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10306 flower src_mac 02:3d:ca:7b:ba:c0 dst_mac 02:99:da:60:c3:22 vlan_id 3149 vlan_ethtype ipv4 src_ip 70.182.211.160 dst_ip 59.75.97.157 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10307 flower src_mac 02:5e:9b:00:84:ac dst_mac 02:2f:40:13:cc:88 src_ip 71.168.243.235 dst_ip 117.217.228.169 ip_proto icmp code 156 type 13 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10308 flower src_mac 02:a8:73:25:13:78 dst_mac 02:74:14:3a:25:87 vlan_id 656 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10309 flower src_mac 02:9c:21:70:00:b3 dst_mac 02:ea:2b:8e:a7:44 vlan_id 1903 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10310 flower src_mac 02:66:3a:ff:64:d0 dst_mac 02:e2:1b:cf:6c:ab src_ip 81.147.118.204 dst_ip 97.150.47.74 ip_proto icmp code 106 type 15 action drop && tc filter add dev swp1 ingress protocol ip pref 10311 flower src_mac 02:d4:2e:47:c6:c6 dst_mac 02:da:ac:43:c8:05 src_ip 86.64.26.53 dst_ip 101.144.254.24 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10312 flower src_mac 02:c6:9e:2b:50:57 dst_mac 02:a6:49:c3:41:0c vlan_id 52 vlan_ethtype ip src_ip 20.212.29.145 dst_ip 74.228.94.64 ip_proto udp src_port 38684 dst_port 25717 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10313 flower src_mac 02:e8:67:31:0b:55 dst_mac 02:8c:24:27:0f:d8 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10314 flower src_mac 02:43:93:94:73:e6 dst_mac 02:f4:01:d7:b3:b4 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10315 flower src_mac 02:8b:c8:5f:d4:da dst_mac 02:e1:04:72:dc:ec action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10316 flower src_mac 02:8d:ab:7b:d7:32 dst_mac 02:c4:90:2d:d8:97 vlan_id 2251 vlan_ethtype 0x0800 src_ip 114.111.140.234 dst_ip 126.157.90.207 ip_proto tcp src_port 11881 dst_port 19045 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10317 flower src_mac 02:1b:68:b3:a4:20 dst_mac 02:23:c5:67:36:b4 src_ip 110.82.177.248 dst_ip 15.133.211.184 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10318 flower src_mac 02:cd:3e:e1:f3:24 dst_mac 02:23:9c:10:d2:42 vlan_id 3512 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10319 flower src_mac 02:ac:77:cc:35:41 dst_mac 02:d8:46:9b:ca:fe action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10320 flower src_mac 02:d0:96:3d:9f:33 dst_mac 02:11:82:62:53:47 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10321 flower src_mac 02:e5:e3:b9:5f:2c dst_mac 02:50:b0:ea:01:ba action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10322 flower src_mac 02:9a:8c:51:6a:dc dst_mac 02:9f:36:f7:4e:df vlan_id 2474 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10323 flower src_mac 02:4c:e3:e2:d9:fa dst_mac 02:2e:58:1d:e4:b7 vlan_id 3172 vlan_ethtype ipv4 src_ip 100.240.7.141 dst_ip 14.50.84.148 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10324 flower src_mac 02:67:1c:51:f1:55 dst_mac 02:05:31:43:cf:e7 src_ip 114.40.242.146 dst_ip 79.64.29.111 ip_proto icmp code 176 type 8 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10325 flower src_mac 02:6c:bb:a0:96:c1 dst_mac 02:ba:98:8b:15:35 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10326 flower src_mac 02:c4:b6:c7:db:2c dst_mac 02:56:e0:35:c1:36 vlan_id 290 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10327 flower src_mac 02:39:eb:fd:6f:14 dst_mac 02:e9:b3:fe:a9:96 src_ip 104.153.33.145 dst_ip 72.11.20.91 action trap && tc filter add dev swp1 ingress protocol ip pref 10328 flower src_mac 02:8d:34:15:d5:6d dst_mac 02:de:a6:8c:5b:37 src_ip 58.10.97.56 dst_ip 62.184.98.145 ip_proto tcp src_port 35017 dst_port 45388 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10329 flower src_mac 02:4d:6d:8c:eb:5d dst_mac 02:e1:bd:36:9b:71 vlan_id 2914 vlan_ethtype ipv4 src_ip 111.18.26.226 dst_ip 30.235.94.119 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10330 flower src_mac 02:10:6d:0f:53:5c dst_mac 02:d5:b5:ae:4a:4d vlan_id 3244 vlan_ethtype ipv4 src_ip 123.220.128.1 dst_ip 91.226.186.115 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10331 flower src_mac 02:48:02:51:8e:68 dst_mac 02:0f:23:05:be:ec vlan_id 3366 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10332 flower src_mac 02:1b:9e:ba:c6:f1 dst_mac 02:72:37:cc:34:60 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10333 flower src_mac 02:63:93:e8:5d:a4 dst_mac 02:69:53:f1:e6:e7 vlan_id 2237 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10334 flower src_mac 02:12:a4:92:43:e4 dst_mac 02:9b:b5:ef:8d:ea action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10335 flower src_mac 02:6d:a5:69:73:d8 dst_mac 02:ef:a8:e3:ef:c0 src_ip 126.231.171.225 dst_ip 94.32.183.145 ip_proto udp src_port 11345 dst_port 23942 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10336 flower src_mac 02:c3:75:e9:2f:20 dst_mac 02:23:3e:95:a7:37 action trap && tc filter add dev swp1 ingress protocol ip pref 10337 flower src_mac 02:cc:da:23:d7:88 dst_mac 02:06:c4:c2:15:61 src_ip 79.56.10.48 dst_ip 62.232.35.236 ip_proto udp src_port 42142 dst_port 47661 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10338 flower src_mac 02:f6:1c:dc:9f:b8 dst_mac 02:c1:1f:c3:9f:5f vlan_id 2473 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10339 flower src_mac 02:8c:11:88:c1:9b dst_mac 02:58:2b:7d:cc:aa src_ip 35.116.194.21 dst_ip 25.119.39.195 ip_proto icmp code 223 type 14 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10340 flower src_mac 02:6f:0c:6e:4a:ea dst_mac 02:7c:60:97:d2:45 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10341 flower src_mac 02:6d:66:61:9b:65 dst_mac 02:de:9d:4d:4d:8f action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10342 flower src_mac 02:50:91:0c:e5:50 dst_mac 02:70:4e:91:b6:de action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10343 flower src_mac 02:3f:7d:4e:35:19 dst_mac 02:33:ee:d4:58:51 vlan_id 3677 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10344 flower src_mac 02:ba:43:7e:17:ce dst_mac 02:06:72:0e:74:b9 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10345 flower src_mac 02:91:5f:e3:78:07 dst_mac 02:46:78:74:04:2f action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10346 flower src_mac 02:19:29:a3:51:12 dst_mac 02:81:71:e8:fa:bb src_ip 123.189.30.233 dst_ip 109.135.113.8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10347 flower src_mac 02:64:a5:84:a1:be dst_mac 02:db:ca:5b:53:7a vlan_id 120 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10348 flower src_mac 02:11:42:1a:67:0c dst_mac 02:60:14:13:e3:90 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10349 flower src_mac 02:35:4d:89:d0:75 dst_mac 02:69:18:a3:50:0a vlan_id 1584 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10350 flower src_mac 02:1f:26:f0:ab:90 dst_mac 02:4d:b9:ed:cd:41 vlan_id 2089 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10351 flower src_mac 02:68:14:af:5d:30 dst_mac 02:19:cc:eb:fb:19 vlan_id 3274 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10352 flower src_mac 02:22:c4:01:5b:73 dst_mac 02:84:b7:fc:38:9e vlan_id 2609 vlan_ethtype 0x0800 src_ip 25.5.77.207 dst_ip 89.180.223.193 ip_proto tcp src_port 48556 dst_port 7245 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10353 flower src_mac 02:95:de:e6:83:b3 dst_mac 02:e8:fd:3b:fe:90 vlan_id 893 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10354 flower src_mac 02:36:3c:6b:ea:4a dst_mac 02:46:39:a7:ec:54 src_ip 98.109.129.177 dst_ip 107.110.81.145 ip_proto icmp code 133 type 5 action trap && tc filter add dev swp1 ingress protocol ip pref 10355 flower src_mac 02:f2:f7:bc:af:c5 dst_mac 02:7c:82:9f:fd:19 src_ip 30.64.38.59 dst_ip 60.47.80.240 ip_proto tcp src_port 40458 dst_port 55748 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10356 flower src_mac 02:61:ff:fc:d0:fe dst_mac 02:90:40:87:0a:6d vlan_id 2940 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10357 flower src_mac 02:16:1b:18:02:50 dst_mac 02:93:29:e6:8f:78 action drop && tc filter add dev swp1 ingress protocol ip pref 10358 flower src_mac 02:70:17:18:3a:1e dst_mac 02:46:8c:b4:2c:02 src_ip 27.120.100.127 dst_ip 73.81.108.149 ip_proto udp src_port 63841 dst_port 55476 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10359 flower src_mac 02:7e:10:83:cb:be dst_mac 02:f6:cc:f7:aa:57 src_ip 42.14.29.199 dst_ip 89.26.96.59 ip_proto tcp src_port 52274 dst_port 55944 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10360 flower src_mac 02:31:0e:1c:e1:ba dst_mac 02:23:ef:be:89:d9 vlan_id 283 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10361 flower src_mac 02:d6:e8:d8:74:ff dst_mac 02:56:87:0c:64:e5 vlan_id 1814 vlan_ethtype 0x0800 src_ip 81.80.107.229 dst_ip 99.214.225.83 ip_proto udp src_port 57315 dst_port 59847 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10362 flower src_mac 02:6e:b0:10:df:aa dst_mac 02:09:95:da:89:83 vlan_id 1251 vlan_ethtype ip src_ip 112.199.91.116 dst_ip 124.97.153.51 ip_proto udp src_port 13380 dst_port 35206 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10363 flower src_mac 02:e7:ee:19:29:76 dst_mac 02:38:24:77:99:9f action trap && tc filter add dev swp1 ingress protocol ip pref 10364 flower src_mac 02:5a:d1:32:f1:00 dst_mac 02:a6:6d:08:26:b8 src_ip 113.5.215.207 dst_ip 33.119.74.42 ip_proto udp src_port 55672 dst_port 8993 action drop && tc filter add dev swp1 ingress protocol ip pref 10365 flower src_mac 02:3b:eb:8a:39:fd dst_mac 02:6d:6b:92:78:41 src_ip 99.87.56.132 dst_ip 71.140.77.29 ip_proto tcp src_port 32456 dst_port 18737 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10366 flower src_mac 02:d8:f6:57:00:28 dst_mac 02:e2:c5:e1:fb:53 vlan_id 3121 vlan_ethtype ip src_ip 49.45.66.3 dst_ip 35.207.240.115 ip_proto udp src_port 23481 dst_port 54836 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10367 flower src_mac 02:34:57:78:1b:34 dst_mac 02:72:47:f2:38:43 vlan_id 2113 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10368 flower src_mac 02:cc:9a:5d:40:25 dst_mac 02:18:97:99:32:3a vlan_id 1169 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10369 flower src_mac 02:f9:9a:b5:a2:b7 dst_mac 02:75:5e:22:d3:c1 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10370 flower src_mac 02:12:e3:ac:00:04 dst_mac 02:ce:96:9d:e3:39 vlan_id 1136 vlan_ethtype ipv4 src_ip 54.202.24.109 dst_ip 92.157.192.111 ip_proto tcp src_port 38340 dst_port 6795 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10371 flower src_mac 02:95:b3:18:88:ad dst_mac 02:ab:3e:04:ba:eb action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10372 flower src_mac 02:bf:74:0b:00:ae dst_mac 02:9d:09:9d:d7:de src_ip 57.63.205.80 dst_ip 76.229.37.97 ip_proto udp src_port 41968 dst_port 2191 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10373 flower src_mac 02:77:fc:63:4f:12 dst_mac 02:05:c0:e7:e5:1d action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10374 flower src_mac 02:3a:05:d6:21:81 dst_mac 02:e0:bd:33:01:54 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10375 flower src_mac 02:f0:75:21:46:b4 dst_mac 02:f6:3e:b8:28:d3 vlan_id 1486 vlan_ethtype 0x0800 src_ip 18.238.148.237 dst_ip 35.185.184.68 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10376 flower src_mac 02:ad:90:a3:01:c0 dst_mac 02:d4:89:68:7a:6a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10377 flower src_mac 02:81:b7:ce:d4:c8 dst_mac 02:47:1d:83:8d:f1 vlan_id 3900 vlan_ethtype 0x0800 src_ip 115.104.143.239 dst_ip 32.4.242.175 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10378 flower src_mac 02:06:eb:70:41:55 dst_mac 02:19:2d:b6:ab:b8 vlan_id 1700 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10379 flower src_mac 02:1f:c7:c1:59:54 dst_mac 02:50:04:99:5d:d6 vlan_id 1744 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10380 flower src_mac 02:a7:cc:92:91:d3 dst_mac 02:c3:db:2e:d1:86 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10381 flower src_mac 02:d4:18:60:2e:3f dst_mac 02:3a:b7:d7:0d:18 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10382 flower src_mac 02:fa:ab:76:b7:7b dst_mac 02:4e:5d:68:66:b8 vlan_id 417 vlan_ethtype ipv4 src_ip 28.87.112.114 dst_ip 122.36.99.33 ip_proto tcp src_port 28844 dst_port 1380 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10383 flower src_mac 02:78:0d:71:09:f4 dst_mac 02:5a:69:6d:13:83 src_ip 114.241.36.36 dst_ip 100.59.156.141 ip_proto udp src_port 45227 dst_port 58600 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10384 flower src_mac 02:83:8f:ab:fb:24 dst_mac 02:34:d9:f6:a1:00 src_ip 119.0.145.33 dst_ip 20.235.39.175 ip_proto icmp code 235 type 18 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10385 flower src_mac 02:47:7a:23:72:4b dst_mac 02:ea:8a:18:3f:a5 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10386 flower src_mac 02:6f:a4:34:df:67 dst_mac 02:08:7c:cb:64:82 vlan_id 573 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10387 flower src_mac 02:89:87:5e:fe:86 dst_mac 02:6c:3e:4d:83:d2 src_ip 89.63.103.176 dst_ip 113.92.83.168 ip_proto icmp code 225 type 0 action drop && tc filter add dev swp1 ingress protocol ip pref 10388 flower src_mac 02:62:a2:d6:2c:39 dst_mac 02:d8:2a:4e:83:d1 src_ip 108.28.69.55 dst_ip 109.184.124.6 ip_proto tcp src_port 17285 dst_port 58149 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10389 flower src_mac 02:40:23:99:41:f5 dst_mac 02:1a:b6:ee:58:5c vlan_id 2014 vlan_ethtype 0x0800 src_ip 71.247.37.172 dst_ip 104.153.147.170 action trap && tc filter add dev swp1 ingress protocol ip pref 10390 flower src_mac 02:76:74:0f:2a:07 dst_mac 02:40:9e:d5:34:95 src_ip 70.92.131.5 dst_ip 120.243.237.125 ip_proto udp src_port 58575 dst_port 63305 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10391 flower src_mac 02:6b:ed:64:a9:29 dst_mac 02:c7:5e:6d:c4:55 vlan_id 2674 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10392 flower src_mac 02:fc:dd:b1:97:7c dst_mac 02:22:a3:d6:0c:02 action drop && tc filter add dev swp1 ingress protocol ip pref 10393 flower src_mac 02:ea:ec:95:c8:27 dst_mac 02:f8:16:d9:98:da src_ip 44.244.42.133 dst_ip 122.156.216.167 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10394 flower src_mac 02:37:4d:8c:61:21 dst_mac 02:f8:a2:e1:27:1f vlan_id 4033 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10395 flower src_mac 02:55:59:92:09:68 dst_mac 02:a3:38:c4:57:a4 vlan_id 1290 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10396 flower src_mac 02:40:80:1a:8b:2d dst_mac 02:c2:8f:3f:36:f0 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10397 flower src_mac 02:ed:45:71:ab:1e dst_mac 02:01:a5:bf:d0:28 src_ip 103.3.201.31 dst_ip 55.166.202.164 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10398 flower src_mac 02:80:ac:98:e2:a1 dst_mac 02:af:09:9a:f6:77 vlan_id 943 vlan_ethtype 0x0800 src_ip 32.97.7.30 dst_ip 62.93.16.187 ip_proto tcp src_port 4220 dst_port 53368 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10399 flower src_mac 02:a9:1b:2e:e3:df dst_mac 02:59:88:99:43:de vlan_id 2939 vlan_ethtype 0x9100 action drop INFO asyncssh:logging.py:92 [conn=24, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=4] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 10000 flower src_mac 02:a1:e1:26:5b:17 dst_mac 02:04:51:f0:15:d5 vlan_id 9 vlan_ethtype ip src_ip 122.6.53.242 dst_ip 71.30.240.118 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10001 flower src_mac 02:96:d4:d2:4e:65 dst_mac 02:3f:e9:3d:5f:33 src_ip 34.255.94.209 dst_ip 74.38.145.61 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10002 flower src_mac 02:93:09:ed:0a:be dst_mac 02:d5:47:9e:6b:8d src_ip 33.63.206.13 dst_ip 84.110.59.139 ip_proto tcp src_port 55710 dst_port 50976 action trap && tc filter add dev swp1 ingress protocol ip pref 10003 flower src_mac 02:6a:e9:84:6b:ee dst_mac 02:b2:a2:4f:6e:40 src_ip 69.132.209.26 dst_ip 49.151.56.250 ip_proto icmp code 54 type 13 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10004 flower src_mac 02:f1:e7:cf:dd:8b dst_mac 02:18:b8:ce:2a:a0 vlan_id 3511 vlan_ethtype ipv4 src_ip 21.112.52.198 dst_ip 30.32.2.232 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10005 flower src_mac 02:19:8a:26:91:2c dst_mac 02:9a:07:a0:d9:42 vlan_id 4018 vlan_ethtype 0x0800 src_ip 50.12.125.49 dst_ip 121.249.216.149 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10006 flower src_mac 02:23:f5:8a:c5:94 dst_mac 02:f7:d0:a0:c5:2e action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10007 flower src_mac 02:9f:9c:21:f3:3d dst_mac 02:97:73:71:0f:8e vlan_id 3781 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10008 flower src_mac 02:7f:a7:05:71:97 dst_mac 02:0d:8e:8d:74:47 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10009 flower src_mac 02:5c:9f:82:3f:1c dst_mac 02:ed:10:7b:d6:bc action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10010 flower src_mac 02:92:48:84:b9:85 dst_mac 02:96:a2:53:fd:10 vlan_id 3857 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10011 flower src_mac 02:87:be:1b:37:9d dst_mac 02:11:14:b1:22:c8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10012 flower src_mac 02:05:4a:bf:5b:7a dst_mac 02:15:ea:59:e8:53 vlan_id 1073 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10013 flower src_mac 02:91:a3:14:2d:0b dst_mac 02:4f:9f:c6:ca:3a src_ip 57.196.225.12 dst_ip 23.17.104.208 ip_proto icmp code 153 type 4 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10014 flower src_mac 02:b8:25:b3:e6:dc dst_mac 02:0f:7e:3b:00:d6 src_ip 124.110.124.58 dst_ip 115.42.82.164 ip_proto icmp code 3 type 18 action trap && tc filter add dev swp1 ingress protocol ip pref 10015 flower src_mac 02:4d:7d:d6:9e:0e dst_mac 02:15:60:34:2c:1b src_ip 29.103.243.122 dst_ip 32.62.161.61 ip_proto tcp src_port 34208 dst_port 65072 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10016 flower src_mac 02:32:18:50:a6:68 dst_mac 02:b4:c2:fe:0b:35 vlan_id 3106 vlan_ethtype ipv4 src_ip 27.173.148.107 dst_ip 110.251.10.190 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10017 flower src_mac 02:de:95:ef:e5:07 dst_mac 02:84:a8:a2:32:68 vlan_id 49 vlan_ethtype 0x0800 src_ip 113.122.73.112 dst_ip 108.138.51.107 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10018 flower src_mac 02:5e:e9:65:c2:d2 dst_mac 02:f5:31:55:3d:cc vlan_id 2336 vlan_ethtype ipv4 src_ip 85.205.125.213 dst_ip 22.20.180.190 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10019 flower src_mac 02:73:b4:89:77:08 dst_mac 02:d4:8a:42:23:c8 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10020 flower src_mac 02:78:c2:80:1f:01 dst_mac 02:42:02:ac:82:f3 vlan_id 1660 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10021 flower src_mac 02:51:02:2f:7a:bf dst_mac 02:45:1e:8d:f6:67 vlan_id 1208 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10022 flower src_mac 02:73:bb:29:ca:8f dst_mac 02:39:4f:3c:7b:b5 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10023 flower src_mac 02:75:9b:1f:e9:c7 dst_mac 02:a5:85:0f:fb:c5 vlan_id 284 vlan_ethtype ip src_ip 81.147.73.91 dst_ip 120.28.161.9 ip_proto tcp src_port 64840 dst_port 1559 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10024 flower src_mac 02:5c:cc:75:fd:34 dst_mac 02:f8:d5:43:f9:7d vlan_id 1406 vlan_ethtype 0x0800 src_ip 53.68.170.6 dst_ip 84.132.5.209 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10025 flower src_mac 02:b3:8e:08:7c:b9 dst_mac 02:3b:a3:bc:c1:ff vlan_id 1585 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10026 flower src_mac 02:56:47:e9:b9:36 dst_mac 02:eb:eb:c7:e7:54 vlan_id 2531 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10027 flower src_mac 02:a2:bf:a3:8d:d2 dst_mac 02:b8:40:ea:3c:79 vlan_id 780 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10028 flower src_mac 02:13:df:a6:8d:c0 dst_mac 02:a6:f7:8a:e3:74 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10029 flower src_mac 02:0a:32:95:1a:92 dst_mac 02:4f:cb:14:6a:77 vlan_id 3850 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10030 flower src_mac 02:f1:ce:82:98:23 dst_mac 02:fc:d0:9e:0f:44 vlan_id 1946 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10031 flower src_mac 02:07:82:c7:e5:01 dst_mac 02:8b:29:44:46:7e vlan_id 338 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10032 flower src_mac 02:cc:99:46:1f:50 dst_mac 02:64:65:65:a9:e6 vlan_id 345 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10033 flower src_mac 02:81:c9:9e:d5:e4 dst_mac 02:c9:56:28:ee:48 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10034 flower src_mac 02:dc:a7:39:eb:0a dst_mac 02:d9:5d:db:34:06 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10035 flower src_mac 02:f7:97:47:c3:23 dst_mac 02:8b:9e:2a:6b:a0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10036 flower src_mac 02:7b:22:d0:12:c7 dst_mac 02:26:ae:ef:6d:62 vlan_id 2144 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10037 flower src_mac 02:51:62:98:de:f8 dst_mac 02:4b:c0:22:3b:f9 src_ip 60.184.204.6 dst_ip 48.162.220.88 ip_proto icmp code 181 type 18 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10038 flower src_mac 02:a4:c5:8c:f3:8d dst_mac 02:da:8c:c7:33:78 vlan_id 2588 vlan_ethtype ipv4 src_ip 112.137.42.98 dst_ip 99.93.112.132 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10039 flower src_mac 02:5f:85:c7:69:bc dst_mac 02:fd:a0:9a:5f:f4 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10040 flower src_mac 02:e9:d4:5a:98:69 dst_mac 02:56:18:c7:83:28 src_ip 22.91.53.167 dst_ip 31.89.118.129 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10041 flower src_mac 02:46:e3:c7:bc:60 dst_mac 02:fb:7f:3f:36:50 src_ip 47.27.141.86 dst_ip 37.152.49.89 ip_proto icmp code 157 type 8 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10042 flower src_mac 02:c2:09:e4:db:b9 dst_mac 02:53:d5:49:4c:22 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10043 flower src_mac 02:1d:1a:de:59:56 dst_mac 02:18:f0:16:dd:4f vlan_id 782 vlan_ethtype 0x0800 src_ip 63.244.172.16 dst_ip 121.174.106.161 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10044 flower src_mac 02:94:38:ca:0b:56 dst_mac 02:e2:91:17:60:6a vlan_id 3651 vlan_ethtype 0x0800 src_ip 39.66.49.249 dst_ip 117.176.187.89 ip_proto udp src_port 35315 dst_port 44442 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10045 flower src_mac 02:ab:18:9e:c8:34 dst_mac 02:f9:55:bd:90:da src_ip 66.208.212.79 dst_ip 24.240.194.193 ip_proto tcp src_port 25194 dst_port 8819 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10046 flower src_mac 02:a2:0d:06:63:1e dst_mac 02:dc:19:68:44:fa src_ip 113.6.126.59 dst_ip 87.53.221.240 action pass && tc filter add dev swp1 ingress protocol ip pref 10047 flower src_mac 02:83:f2:cd:53:74 dst_mac 02:ef:ec:06:66:9c src_ip 65.81.74.221 dst_ip 105.27.222.170 ip_proto udp src_port 18522 dst_port 35286 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10048 flower src_mac 02:bd:e3:6f:ff:01 dst_mac 02:9f:55:3a:3a:f5 vlan_id 1179 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10049 flower src_mac 02:0f:1e:4e:fc:79 dst_mac 02:51:c6:a3:75:6d vlan_id 1255 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10050 flower src_mac 02:87:e9:90:12:f3 dst_mac 02:4a:86:1c:26:74 vlan_id 2065 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10051 flower src_mac 02:d3:4d:4e:99:ab dst_mac 02:20:61:9a:0d:cb src_ip 63.33.234.239 dst_ip 57.74.70.80 ip_proto udp src_port 1222 dst_port 55952 action drop && tc filter add dev swp1 ingress protocol ip pref 10052 flower src_mac 02:91:32:47:c0:ec dst_mac 02:20:97:20:67:fa src_ip 64.56.191.95 dst_ip 81.241.159.46 ip_proto icmp code 184 type 0 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10053 flower src_mac 02:8a:64:e3:a1:3f dst_mac 02:4c:a0:1b:27:7b vlan_id 3438 vlan_ethtype ip src_ip 37.170.235.121 dst_ip 64.78.107.73 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10054 flower src_mac 02:7b:07:e4:b8:79 dst_mac 02:92:c9:aa:33:ea action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10055 flower src_mac 02:eb:1f:35:9f:4d dst_mac 02:24:1b:0e:c1:85 vlan_id 2623 vlan_ethtype 0x0800 src_ip 74.18.250.143 dst_ip 69.178.165.120 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10056 flower src_mac 02:ab:2f:f2:3f:88 dst_mac 02:a0:76:4a:c9:c7 vlan_id 1508 vlan_ethtype 0x0800 src_ip 120.190.10.1 dst_ip 46.188.114.61 ip_proto udp src_port 55116 dst_port 32691 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10057 flower src_mac 02:a8:ee:62:42:43 dst_mac 02:37:ab:8b:49:df vlan_id 2888 vlan_ethtype ip src_ip 106.97.152.26 dst_ip 78.151.131.143 ip_proto tcp src_port 50548 dst_port 21644 action trap && tc filter add dev swp1 ingress protocol ip pref 10058 flower src_mac 02:0f:b5:f4:e4:87 dst_mac 02:18:f1:2d:77:b1 src_ip 72.203.138.74 dst_ip 97.158.113.38 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10059 flower src_mac 02:45:1c:fb:aa:ad dst_mac 02:3b:29:ab:2e:8b action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10060 flower src_mac 02:dd:32:3c:2f:ec dst_mac 02:3b:b4:10:27:2b vlan_id 1252 vlan_ethtype ip src_ip 89.156.125.217 dst_ip 105.219.206.153 ip_proto tcp src_port 20466 dst_port 52380 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10061 flower src_mac 02:55:ab:9e:d2:83 dst_mac 02:60:8b:3f:9a:80 vlan_id 2443 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10062 flower src_mac 02:fd:1d:47:7a:58 dst_mac 02:56:57:92:23:13 src_ip 22.241.65.173 dst_ip 72.81.168.152 ip_proto udp src_port 52203 dst_port 48887 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10063 flower src_mac 02:b6:c4:e0:2f:42 dst_mac 02:2c:0f:d8:ad:70 vlan_id 926 vlan_ethtype ip src_ip 15.16.144.15 dst_ip 43.3.224.225 action trap && tc filter add dev swp1 ingress protocol ip pref 10064 flower src_mac 02:a3:99:d2:59:1d dst_mac 02:20:1e:db:4a:0c src_ip 59.169.64.147 dst_ip 108.11.64.215 ip_proto tcp src_port 16216 dst_port 24434 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10065 flower src_mac 02:03:9f:69:de:18 dst_mac 02:b4:94:88:bc:ba vlan_id 3378 vlan_ethtype ip src_ip 35.89.192.128 dst_ip 110.231.104.65 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10066 flower src_mac 02:ab:92:13:76:0a dst_mac 02:c1:4e:ba:5d:80 vlan_id 371 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10067 flower src_mac 02:f4:cb:e0:4c:9d dst_mac 02:c7:6a:7a:ee:5d src_ip 84.228.85.10 dst_ip 60.104.96.190 ip_proto udp src_port 34318 dst_port 22276 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10068 flower src_mac 02:46:e8:6d:35:71 dst_mac 02:96:0c:f2:4e:3b action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10069 flower src_mac 02:55:93:54:d3:77 dst_mac 02:5f:01:46:45:f4 vlan_id 2390 vlan_ethtype ipv4 src_ip 60.32.64.104 dst_ip 118.98.106.165 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10070 flower src_mac 02:a1:7c:33:64:93 dst_mac 02:7e:46:5e:81:9d vlan_id 2342 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10071 flower src_mac 02:cf:77:94:03:25 dst_mac 02:e2:fa:b7:73:91 vlan_id 824 vlan_ethtype 0x0800 src_ip 102.181.60.7 dst_ip 70.91.164.124 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10072 flower src_mac 02:ab:7a:4f:da:e7 dst_mac 02:6b:f4:57:ec:9b vlan_id 3835 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10073 flower src_mac 02:6c:b1:1c:5b:1e dst_mac 02:dd:de:b8:57:d3 vlan_id 88 vlan_ethtype ipv4 src_ip 112.211.7.110 dst_ip 59.50.154.56 ip_proto tcp src_port 11946 dst_port 32930 action drop && tc filter add dev swp1 ingress protocol ip pref 10074 flower src_mac 02:d5:b6:c4:4c:3f dst_mac 02:83:7d:a8:a5:2d src_ip 120.194.76.6 dst_ip 16.192.56.15 ip_proto icmp code 128 type 14 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10075 flower src_mac 02:0d:27:25:51:58 dst_mac 02:bb:f1:78:94:3c vlan_id 3944 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10076 flower src_mac 02:75:6a:02:1c:d2 dst_mac 02:c1:64:c4:a8:88 src_ip 119.220.179.172 dst_ip 17.163.136.45 ip_proto tcp src_port 22371 dst_port 2216 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10077 flower src_mac 02:2c:05:1d:2d:93 dst_mac 02:62:21:61:b9:9e vlan_id 2844 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10078 flower src_mac 02:c4:2e:71:4a:9e dst_mac 02:05:31:4f:99:02 vlan_id 1851 vlan_ethtype 0x0800 src_ip 21.99.183.28 dst_ip 81.1.19.152 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10079 flower src_mac 02:df:1d:f8:3d:ef dst_mac 02:8d:92:6a:2a:38 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10080 flower src_mac 02:e3:f3:50:a3:0f dst_mac 02:cb:f3:ca:5d:c9 vlan_id 1401 vlan_ethtype 0x0800 src_ip 29.122.205.173 dst_ip 71.63.175.48 ip_proto tcp src_port 50514 dst_port 15416 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10081 flower src_mac 02:0c:10:3c:03:0f dst_mac 02:da:21:84:9d:df vlan_id 573 vlan_ethtype ipv4 src_ip 123.247.50.100 dst_ip 125.108.236.153 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10082 flower src_mac 02:ba:5d:75:b2:c2 dst_mac 02:0e:46:19:7e:e4 src_ip 102.71.9.38 dst_ip 46.137.187.19 ip_proto udp src_port 38510 dst_port 248 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10083 flower src_mac 02:8b:d7:53:6f:d7 dst_mac 02:77:98:0a:ec:2d action drop && tc filter add dev swp1 ingress protocol ip pref 10084 flower src_mac 02:41:07:ba:56:4c dst_mac 02:e8:bf:30:22:19 src_ip 35.222.65.35 dst_ip 86.48.105.209 ip_proto tcp src_port 23685 dst_port 5305 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10085 flower src_mac 02:56:91:29:cd:e2 dst_mac 02:0b:14:d1:03:48 vlan_id 3655 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10086 flower src_mac 02:52:b7:c1:f2:89 dst_mac 02:12:93:44:eb:91 vlan_id 550 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10087 flower src_mac 02:1b:86:28:ab:23 dst_mac 02:3d:59:07:31:3d vlan_id 1859 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10088 flower src_mac 02:77:da:49:da:06 dst_mac 02:32:0b:25:80:bd action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10089 flower src_mac 02:e0:a8:e8:f4:af dst_mac 02:fa:0b:fc:3e:86 vlan_id 3901 vlan_ethtype ip src_ip 51.159.214.164 dst_ip 120.9.113.80 ip_proto tcp src_port 34284 dst_port 20508 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10090 flower src_mac 02:1a:33:79:0a:a7 dst_mac 02:30:59:b9:06:39 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10091 flower src_mac 02:ea:b4:99:cb:d0 dst_mac 02:56:17:d7:f4:94 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10092 flower src_mac 02:c3:b0:df:07:62 dst_mac 02:e9:55:ee:67:f3 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10093 flower src_mac 02:d2:62:0d:7c:f4 dst_mac 02:f1:1d:dc:15:e1 vlan_id 3717 vlan_ethtype 0x0800 src_ip 75.23.251.110 dst_ip 16.49.206.210 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10094 flower src_mac 02:d5:8f:0f:64:aa dst_mac 02:0e:5d:15:6e:72 vlan_id 1081 vlan_ethtype 0x0800 src_ip 29.1.163.68 dst_ip 43.109.201.39 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10095 flower src_mac 02:e5:dd:1d:82:16 dst_mac 02:35:1c:e5:db:21 src_ip 37.121.141.179 dst_ip 84.124.250.250 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10096 flower src_mac 02:e2:a2:2e:63:91 dst_mac 02:89:a4:7d:a8:82 src_ip 14.12.86.142 dst_ip 90.46.224.176 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10097 flower src_mac 02:c3:f4:fd:b9:d5 dst_mac 02:fe:25:78:ec:81 src_ip 83.70.201.10 dst_ip 107.229.105.60 ip_proto tcp src_port 52084 dst_port 34144 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10098 flower src_mac 02:ba:9c:4f:5d:f1 dst_mac 02:99:85:ce:3a:2b src_ip 119.112.195.178 dst_ip 49.176.194.231 ip_proto udp src_port 29180 dst_port 30827 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10099 flower src_mac 02:ab:1d:4a:0f:dc dst_mac 02:c8:f7:85:33:0d vlan_id 3605 vlan_ethtype ip src_ip 79.8.232.169 dst_ip 79.241.91.112 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10100 flower src_mac 02:f6:e5:ad:da:3d dst_mac 02:64:f3:15:bf:43 vlan_id 1250 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 10101 flower src_mac 02:d6:9a:99:50:db dst_mac 02:4f:b3:e3:c3:5b src_ip 124.128.84.81 dst_ip 104.193.98.154 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10102 flower src_mac 02:72:61:30:40:c4 dst_mac 02:2f:11:78:2d:64 src_ip 85.248.254.173 dst_ip 78.160.61.201 ip_proto icmp code 33 type 4 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10103 flower src_mac 02:b2:eb:c1:84:a4 dst_mac 02:5e:8f:b1:be:88 action trap && tc filter add dev swp1 ingress protocol ip pref 10104 flower src_mac 02:9a:10:05:44:ff dst_mac 02:bf:57:78:ec:2c src_ip 31.73.172.126 dst_ip 58.215.172.76 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10105 flower src_mac 02:82:0b:47:4e:91 dst_mac 02:71:80:11:ac:ec vlan_id 3058 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10106 flower src_mac 02:45:82:6e:9e:cd dst_mac 02:d4:ed:ba:4f:8c vlan_id 2983 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10107 flower src_mac 02:45:24:16:21:d0 dst_mac 02:be:4d:8f:45:f7 vlan_id 571 vlan_ethtype 0x0800 src_ip 40.125.255.188 dst_ip 92.27.214.113 action drop && tc filter add dev swp1 ingress protocol ip pref 10108 flower src_mac 02:6c:43:e8:18:4d dst_mac 02:74:2a:52:d0:5c src_ip 38.115.66.213 dst_ip 110.244.245.209 ip_proto udp src_port 21304 dst_port 41591 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10109 flower src_mac 02:2e:24:58:d3:94 dst_mac 02:ce:2c:1a:38:6e vlan_id 571 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10110 flower src_mac 02:a2:92:6c:49:32 dst_mac 02:b3:56:cc:fa:d5 vlan_id 754 vlan_ethtype 0x0800 src_ip 18.150.82.240 dst_ip 93.247.116.15 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10111 flower src_mac 02:7c:7e:3f:41:42 dst_mac 02:5e:19:7e:97:b1 vlan_id 2569 vlan_ethtype ipv4 src_ip 48.173.146.157 dst_ip 89.242.211.223 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10112 flower src_mac 02:53:f0:c8:c6:a1 dst_mac 02:f7:43:51:07:08 vlan_id 2600 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10113 flower src_mac 02:29:e4:cc:2c:3e dst_mac 02:54:83:82:7e:f2 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10114 flower src_mac 02:cd:7c:b8:5b:f9 dst_mac 02:36:db:c4:cb:62 vlan_id 1005 vlan_ethtype 0x0800 src_ip 96.32.215.135 dst_ip 64.243.181.216 ip_proto tcp src_port 62556 dst_port 25688 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10115 flower src_mac 02:1f:fe:02:e3:4a dst_mac 02:92:27:3e:2b:81 vlan_id 3078 vlan_ethtype ipv4 src_ip 55.121.106.220 dst_ip 26.222.73.236 ip_proto udp src_port 24490 dst_port 37972 action drop && tc filter add dev swp1 ingress protocol ip pref 10116 flower src_mac 02:f0:81:21:cc:ab dst_mac 02:28:cd:3c:89:46 src_ip 62.245.231.36 dst_ip 85.45.76.203 ip_proto icmp code 43 type 0 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10117 flower src_mac 02:4b:b5:f4:bc:79 dst_mac 02:f9:3b:bc:64:9b vlan_id 3761 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10118 flower src_mac 02:7f:56:8a:e4:4e dst_mac 02:ea:84:1b:86:4c vlan_id 1498 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10119 flower src_mac 02:3f:9b:4e:1e:18 dst_mac 02:51:cb:21:f8:e2 vlan_id 1233 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10120 flower src_mac 02:0a:4c:0c:1f:f1 dst_mac 02:ac:51:1a:e4:e8 vlan_id 2983 vlan_ethtype ip src_ip 56.151.42.51 dst_ip 13.115.7.237 ip_proto tcp src_port 3602 dst_port 13959 action drop && tc filter add dev swp1 ingress protocol ip pref 10121 flower src_mac 02:d5:ad:25:c2:50 dst_mac 02:51:63:4d:03:26 src_ip 58.249.145.68 dst_ip 71.237.2.201 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10122 flower src_mac 02:44:9c:70:55:1f dst_mac 02:8c:27:2f:57:a4 src_ip 99.31.52.130 dst_ip 55.97.186.195 ip_proto icmp code 144 type 14 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10123 flower src_mac 02:bb:af:b9:09:8a dst_mac 02:7a:56:89:bf:b7 vlan_id 3800 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10124 flower src_mac 02:63:a5:62:fe:90 dst_mac 02:46:d9:7a:06:c5 src_ip 83.95.40.139 dst_ip 66.133.202.246 ip_proto udp src_port 55809 dst_port 45166 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10125 flower src_mac 02:f6:75:00:1a:f3 dst_mac 02:cf:50:b0:04:ad vlan_id 1507 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10126 flower src_mac 02:85:ed:a8:aa:23 dst_mac 02:64:cf:cc:b0:1c src_ip 47.168.211.58 dst_ip 73.185.232.68 ip_proto udp src_port 47346 dst_port 42129 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10127 flower src_mac 02:a6:4e:92:08:6d dst_mac 02:61:ea:36:59:dc src_ip 94.5.240.57 dst_ip 71.16.154.152 ip_proto icmp code 50 type 0 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10128 flower src_mac 02:af:07:a5:c2:8a dst_mac 02:7a:ce:9c:e0:7f action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10129 flower src_mac 02:8f:85:8d:c0:3b dst_mac 02:ec:6c:55:0d:f6 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10130 flower src_mac 02:7a:6c:c7:61:d5 dst_mac 02:0e:7f:92:9c:4c action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10131 flower src_mac 02:bd:17:0b:37:b7 dst_mac 02:bb:59:99:c8:c8 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10132 flower src_mac 02:6c:db:e9:27:44 dst_mac 02:23:af:92:81:89 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10133 flower src_mac 02:be:15:bb:55:b5 dst_mac 02:87:ee:17:fd:a3 src_ip 87.231.55.225 dst_ip 75.1.42.55 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10134 flower src_mac 02:bc:f3:9e:83:12 dst_mac 02:b7:94:42:59:c1 vlan_id 2549 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10135 flower src_mac 02:9f:33:3e:b7:1c dst_mac 02:ef:6d:0c:dc:22 vlan_id 3202 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10136 flower src_mac 02:a0:51:4d:ca:7e dst_mac 02:5a:28:ea:1a:d4 vlan_id 2728 vlan_ethtype ipv4 src_ip 43.143.59.250 dst_ip 70.179.173.218 ip_proto tcp src_port 36713 dst_port 43871 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10137 flower src_mac 02:20:6f:4b:46:40 dst_mac 02:bb:31:2a:08:9a vlan_id 1478 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10138 flower src_mac 02:c9:65:39:3a:88 dst_mac 02:22:fb:2d:2f:67 vlan_id 1896 vlan_ethtype ipv4 src_ip 84.242.69.149 dst_ip 18.150.193.201 ip_proto tcp src_port 7567 dst_port 4980 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10139 flower src_mac 02:5f:70:8b:69:39 dst_mac 02:e0:c5:f9:2d:05 vlan_id 2881 vlan_ethtype ip src_ip 18.105.195.18 dst_ip 101.132.114.71 ip_proto tcp src_port 30959 dst_port 35128 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10140 flower src_mac 02:9c:95:c8:fa:4f dst_mac 02:2a:98:88:32:e8 vlan_id 2615 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10141 flower src_mac 02:84:8b:0f:f5:e2 dst_mac 02:a9:9c:68:c3:92 vlan_id 3146 vlan_ethtype ip src_ip 67.2.72.74 dst_ip 17.97.192.45 ip_proto udp src_port 54642 dst_port 13362 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10142 flower src_mac 02:93:d1:61:1d:6f dst_mac 02:44:13:72:3b:c3 vlan_id 1788 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10143 flower src_mac 02:b7:45:1d:58:fa dst_mac 02:03:7f:75:53:1f action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10144 flower src_mac 02:1d:09:7b:c3:07 dst_mac 02:bd:59:ee:e2:ba action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10145 flower src_mac 02:32:12:f2:42:e5 dst_mac 02:c2:63:20:d7:07 vlan_id 3924 vlan_ethtype 0x0800 src_ip 25.169.49.243 dst_ip 122.193.255.225 ip_proto udp src_port 26153 dst_port 42872 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10146 flower src_mac 02:e3:5a:68:6e:1d dst_mac 02:a7:6e:37:b3:9a vlan_id 3044 vlan_ethtype ip src_ip 69.70.170.151 dst_ip 108.184.234.194 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10147 flower src_mac 02:f6:ac:3a:1c:4c dst_mac 02:12:7c:f9:68:67 vlan_id 2378 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10148 flower src_mac 02:46:fe:c1:94:61 dst_mac 02:d7:62:44:d5:dd vlan_id 1380 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10149 flower src_mac 02:67:8d:0c:86:f9 dst_mac 02:1f:e2:f7:a6:b9 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10150 flower src_mac 02:97:03:86:d2:14 dst_mac 02:b9:e0:02:d0:c7 src_ip 115.85.95.16 dst_ip 81.105.7.150 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10151 flower src_mac 02:bc:63:e0:07:80 dst_mac 02:04:a1:ad:c0:92 src_ip 91.181.97.147 dst_ip 91.48.205.235 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10152 flower src_mac 02:7e:e3:b7:57:f0 dst_mac 02:81:2b:30:b0:00 src_ip 17.91.30.171 dst_ip 24.11.242.101 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10153 flower src_mac 02:46:c8:a0:13:2f dst_mac 02:20:56:39:77:85 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10154 flower src_mac 02:c9:09:83:31:a1 dst_mac 02:f6:f6:fa:0a:3b action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10155 flower src_mac 02:0e:b7:8b:f8:2a dst_mac 02:65:5f:ef:f3:58 vlan_id 3799 vlan_ethtype 0x0800 src_ip 120.140.252.37 dst_ip 73.135.67.132 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10156 flower src_mac 02:95:69:fb:bd:a2 dst_mac 02:bd:e1:11:d6:02 vlan_id 3029 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10157 flower src_mac 02:94:15:d5:0c:c2 dst_mac 02:61:38:a6:37:27 src_ip 11.116.121.66 dst_ip 125.120.243.186 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10158 flower src_mac 02:0d:a1:08:35:0e dst_mac 02:75:67:18:d3:49 src_ip 73.73.98.149 dst_ip 35.207.17.64 ip_proto tcp src_port 65465 dst_port 21129 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10159 flower src_mac 02:16:3e:d8:f0:f0 dst_mac 02:d9:23:19:ad:32 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10160 flower src_mac 02:83:c5:fa:1a:54 dst_mac 02:5f:09:c9:0a:27 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10161 flower src_mac 02:e7:57:04:f7:e4 dst_mac 02:77:ac:af:22:8f src_ip 112.219.129.231 dst_ip 76.137.227.79 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10162 flower src_mac 02:bf:03:17:bd:26 dst_mac 02:8b:54:20:84:8d vlan_id 2424 vlan_ethtype ipv4 src_ip 25.141.90.136 dst_ip 104.51.170.43 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10163 flower src_mac 02:40:49:f4:d8:ee dst_mac 02:33:74:47:fe:3b vlan_id 638 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10164 flower src_mac 02:e5:71:8e:ca:e5 dst_mac 02:1b:c9:da:6f:60 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10165 flower src_mac 02:91:cf:d6:e2:cf dst_mac 02:db:99:c4:d2:15 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10166 flower src_mac 02:35:73:3f:2e:7f dst_mac 02:d3:c4:d2:fe:97 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10167 flower src_mac 02:6e:66:5e:8e:ef dst_mac 02:5c:b3:d0:da:5d vlan_id 3282 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10168 flower src_mac 02:b3:3a:47:6a:5d dst_mac 02:b6:14:fa:28:61 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10169 flower src_mac 02:3d:8d:16:ec:7d dst_mac 02:8f:03:7c:6d:10 vlan_id 2183 vlan_ethtype ip src_ip 30.185.34.24 dst_ip 21.27.97.183 ip_proto udp src_port 1633 dst_port 3281 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10170 flower src_mac 02:85:4e:14:b8:bf dst_mac 02:1e:c1:71:c6:7f action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10171 flower src_mac 02:09:f4:cd:4c:86 dst_mac 02:1d:08:ba:63:91 vlan_id 1775 vlan_ethtype ip src_ip 125.212.84.239 dst_ip 41.105.184.72 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10172 flower src_mac 02:4b:55:18:b0:2c dst_mac 02:97:7c:d5:cf:5d vlan_id 2824 vlan_ethtype ipv4 src_ip 13.218.146.170 dst_ip 90.183.143.240 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10173 flower src_mac 02:a3:e5:c7:19:e0 dst_mac 02:c5:1f:00:6e:a8 vlan_id 2702 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10174 flower src_mac 02:85:83:55:ea:df dst_mac 02:58:06:7c:7a:c5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10175 flower src_mac 02:0c:59:2f:95:a4 dst_mac 02:2b:cf:9f:ba:ec vlan_id 3280 vlan_ethtype 0x0800 src_ip 32.13.172.182 dst_ip 26.85.252.65 ip_proto udp src_port 47905 dst_port 65061 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10176 flower src_mac 02:98:00:62:49:6a dst_mac 02:60:8e:0e:6c:b0 vlan_id 1505 vlan_ethtype 0x0800 src_ip 100.142.87.215 dst_ip 68.201.217.81 ip_proto tcp src_port 56082 dst_port 26945 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10177 flower src_mac 02:8f:79:4c:47:d4 dst_mac 02:6e:41:4f:e2:c8 src_ip 85.152.232.101 dst_ip 15.200.253.62 ip_proto tcp src_port 51403 dst_port 27726 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10178 flower src_mac 02:ce:ba:97:02:30 dst_mac 02:c3:8c:a7:00:af action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10179 flower src_mac 02:73:9b:0b:fc:99 dst_mac 02:96:bd:79:d9:1a action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10180 flower src_mac 02:c1:53:a0:5f:94 dst_mac 02:14:56:fa:86:d0 vlan_id 1049 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10181 flower src_mac 02:f1:31:6e:71:fe dst_mac 02:63:94:6c:db:e1 vlan_id 686 vlan_ethtype 0x0800 src_ip 110.24.208.15 dst_ip 80.207.164.149 ip_proto tcp src_port 35321 dst_port 43846 action trap && tc filter add dev swp1 ingress protocol ip pref 10182 flower src_mac 02:3a:bd:73:7d:ef dst_mac 02:b7:cf:19:2a:56 src_ip 48.106.134.183 dst_ip 40.207.110.20 ip_proto tcp src_port 6806 dst_port 3092 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10183 flower src_mac 02:b3:ba:1d:cc:2a dst_mac 02:e8:01:44:e0:60 vlan_id 1452 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10184 flower src_mac 02:52:b2:2f:7a:92 dst_mac 02:48:1d:be:f1:8b action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10185 flower src_mac 02:71:ac:d8:a2:8c dst_mac 02:68:85:ce:31:20 vlan_id 2788 vlan_ethtype ipv4 src_ip 93.243.94.88 dst_ip 106.77.196.35 ip_proto tcp src_port 36080 dst_port 3667 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10186 flower src_mac 02:47:87:15:d5:22 dst_mac 02:bf:4c:58:0a:5e src_ip 87.130.111.98 dst_ip 126.87.142.27 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10187 flower src_mac 02:be:e2:f9:6a:d5 dst_mac 02:1c:a8:1f:40:2f vlan_id 3878 vlan_ethtype ipv4 src_ip 79.46.76.31 dst_ip 105.135.214.123 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10188 flower src_mac 02:03:56:34:7c:d1 dst_mac 02:9d:0f:bf:00:4f action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10189 flower src_mac 02:07:a0:a1:e0:c8 dst_mac 02:eb:fa:35:9e:92 vlan_id 583 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10190 flower src_mac 02:fc:76:4e:db:42 dst_mac 02:b1:56:a6:e3:fd action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10191 flower src_mac 02:7f:a7:95:e3:2e dst_mac 02:fd:4c:3e:d9:2b src_ip 53.55.77.137 dst_ip 44.100.19.20 ip_proto udp src_port 63602 dst_port 30139 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10192 flower src_mac 02:c4:47:92:a7:be dst_mac 02:f6:97:cf:3c:04 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10193 flower src_mac 02:9b:57:38:72:7f dst_mac 02:7c:4b:51:98:69 vlan_id 385 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10194 flower src_mac 02:1d:a1:b6:e1:16 dst_mac 02:8a:7f:ac:92:83 vlan_id 2309 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10195 flower src_mac 02:f1:7b:58:cb:60 dst_mac 02:e0:36:21:38:52 src_ip 40.19.186.196 dst_ip 50.87.123.228 ip_proto udp src_port 54152 dst_port 45384 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10196 flower src_mac 02:79:46:3f:a9:e7 dst_mac 02:18:fe:56:1d:63 src_ip 84.231.245.93 dst_ip 62.133.81.232 ip_proto tcp src_port 1347 dst_port 41325 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10197 flower src_mac 02:f6:fe:0b:aa:12 dst_mac 02:47:23:4f:56:3f action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10198 flower src_mac 02:04:63:6f:12:56 dst_mac 02:9f:ce:a8:20:14 src_ip 41.36.98.26 dst_ip 65.43.196.218 ip_proto udp src_port 14312 dst_port 57050 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10199 flower src_mac 02:e9:d5:97:3a:f2 dst_mac 02:c7:57:3c:28:e2 vlan_id 3285 vlan_ethtype ipv4 src_ip 72.206.95.116 dst_ip 78.34.168.13 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10200 flower src_mac 02:2d:90:91:af:f0 dst_mac 02:04:23:ae:8d:df action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10201 flower src_mac 02:c7:9e:17:6d:dd dst_mac 02:f8:89:f2:2d:b3 vlan_id 2226 vlan_ethtype 0x0800 src_ip 79.132.42.106 dst_ip 80.195.54.153 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10202 flower src_mac 02:64:f6:5a:c5:d6 dst_mac 02:3a:81:d8:1b:43 src_ip 38.22.245.209 dst_ip 25.207.107.50 ip_proto icmp code 216 type 3 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10203 flower src_mac 02:0c:98:46:5f:5e dst_mac 02:96:69:29:47:71 vlan_id 642 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10204 flower src_mac 02:57:88:2d:c7:15 dst_mac 02:f9:97:09:d3:05 src_ip 64.36.156.89 dst_ip 40.144.147.199 ip_proto tcp src_port 45845 dst_port 63417 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10205 flower src_mac 02:41:6a:0d:ee:0d dst_mac 02:78:e8:5c:d7:08 vlan_id 3753 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10206 flower src_mac 02:75:e6:e8:46:e0 dst_mac 02:87:fe:39:1a:f9 vlan_id 1578 vlan_ethtype ip src_ip 56.151.177.122 dst_ip 101.28.150.181 ip_proto udp src_port 6607 dst_port 59988 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10207 flower src_mac 02:e5:4f:72:27:20 dst_mac 02:a7:00:c0:ef:a9 action pass && tc filter add dev swp1 ingress protocol ip pref 10208 flower src_mac 02:70:b4:02:57:21 dst_mac 02:65:40:9e:73:3e src_ip 79.77.60.8 dst_ip 78.15.188.80 ip_proto tcp src_port 60283 dst_port 47822 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10209 flower src_mac 02:86:f8:77:fc:c0 dst_mac 02:82:f5:c8:65:ce vlan_id 2175 vlan_ethtype ip src_ip 27.105.25.223 dst_ip 43.107.8.111 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10210 flower src_mac 02:50:fb:ed:08:87 dst_mac 02:e7:16:6c:c5:15 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10211 flower src_mac 02:d9:58:14:d9:9b dst_mac 02:d7:aa:d3:83:de action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10212 flower src_mac 02:ba:ca:25:94:f5 dst_mac 02:8a:bc:d8:9d:23 vlan_id 3793 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10213 flower src_mac 02:a1:df:bb:db:5f dst_mac 02:1c:a3:2e:e2:ec vlan_id 1355 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10214 flower src_mac 02:7e:e9:37:b3:79 dst_mac 02:b9:65:81:69:e9 action drop && tc filter add dev swp1 ingress protocol ip pref 10215 flower src_mac 02:f2:bd:d6:b5:a0 dst_mac 02:a1:96:a5:86:82 src_ip 38.32.238.84 dst_ip 41.168.12.163 ip_proto tcp src_port 30008 dst_port 10082 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10216 flower src_mac 02:bc:ae:fb:a8:4a dst_mac 02:bf:da:2b:f3:88 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10217 flower src_mac 02:1d:58:ce:07:e9 dst_mac 02:ec:a1:c1:bb:7a action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10218 flower src_mac 02:ef:c1:c2:a8:2e dst_mac 02:c9:cb:22:93:ea action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10219 flower src_mac 02:17:0f:62:cf:e7 dst_mac 02:a4:21:20:f0:ce src_ip 121.101.184.85 dst_ip 111.219.232.235 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10220 flower src_mac 02:d3:33:72:d1:a4 dst_mac 02:2e:45:8d:8e:01 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10221 flower src_mac 02:ac:0e:f5:70:8d dst_mac 02:a7:f8:38:b4:52 vlan_id 3066 vlan_ethtype ip src_ip 43.49.6.47 dst_ip 119.85.7.87 ip_proto udp src_port 42296 dst_port 24892 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10222 flower src_mac 02:d4:7a:55:12:e3 dst_mac 02:12:b5:80:f6:23 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10223 flower src_mac 02:f8:97:d1:f7:b1 dst_mac 02:2f:3d:af:71:13 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10224 flower src_mac 02:53:ac:bf:3b:7c dst_mac 02:d2:e3:59:5f:21 vlan_id 121 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10225 flower src_mac 02:12:2a:a3:52:96 dst_mac 02:eb:e0:28:82:fa vlan_id 5 vlan_ethtype 0x0800 src_ip 76.27.204.158 dst_ip 23.36.18.127 ip_proto tcp src_port 8487 dst_port 14606 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10226 flower src_mac 02:27:ed:66:2e:d8 dst_mac 02:c4:df:49:7e:4c vlan_id 2026 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 10227 flower src_mac 02:43:41:17:9e:e6 dst_mac 02:24:3c:0f:d5:2c src_ip 44.13.81.104 dst_ip 11.73.106.176 ip_proto icmp code 184 type 14 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10228 flower src_mac 02:e8:fb:0e:58:1d dst_mac 02:2c:09:31:bf:e5 vlan_id 2945 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10229 flower src_mac 02:dc:be:e1:84:93 dst_mac 02:0a:b7:f7:ed:d1 vlan_id 2305 vlan_ethtype ip src_ip 57.111.107.234 dst_ip 114.127.12.124 ip_proto udp src_port 19507 dst_port 11860 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10230 flower src_mac 02:47:ac:5f:c8:3e dst_mac 02:ee:5b:b0:74:9a vlan_id 244 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10231 flower src_mac 02:63:8f:01:5e:6e dst_mac 02:a3:f8:a8:54:66 src_ip 84.29.199.214 dst_ip 88.11.185.235 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10232 flower src_mac 02:e0:16:35:34:15 dst_mac 02:d0:c9:ee:06:0c vlan_id 944 vlan_ethtype 0x0800 src_ip 96.182.189.132 dst_ip 96.219.28.87 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10233 flower src_mac 02:a2:1d:74:1d:d0 dst_mac 02:62:1e:8f:4b:3a src_ip 124.97.187.136 dst_ip 122.218.210.227 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10234 flower src_mac 02:1b:40:13:41:57 dst_mac 02:d3:a8:d9:e7:8c vlan_id 1672 vlan_ethtype 0x0800 src_ip 52.59.73.184 dst_ip 46.66.4.226 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10235 flower src_mac 02:cd:33:d5:1c:e4 dst_mac 02:a4:11:c8:85:bb action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10236 flower src_mac 02:07:af:e6:eb:9f dst_mac 02:1c:df:8e:58:af action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10237 flower src_mac 02:5f:53:02:48:42 dst_mac 02:b9:89:97:2c:59 vlan_id 1331 vlan_ethtype ip src_ip 93.94.187.77 dst_ip 74.41.27.32 action trap && tc filter add dev swp1 ingress protocol ip pref 10238 flower src_mac 02:1c:5e:2d:44:8e dst_mac 02:ee:39:f5:26:01 src_ip 43.233.171.214 dst_ip 42.65.25.79 ip_proto tcp src_port 10036 dst_port 17896 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10239 flower src_mac 02:51:d9:75:02:2b dst_mac 02:b6:fb:39:6d:ad vlan_id 2172 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10240 flower src_mac 02:6b:41:39:b7:64 dst_mac 02:8d:20:b0:e5:12 vlan_id 4036 vlan_ethtype 0x0800 src_ip 104.36.15.250 dst_ip 13.102.179.21 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10241 flower src_mac 02:88:cd:2d:85:35 dst_mac 02:bb:b5:55:e8:ce src_ip 67.126.47.130 dst_ip 124.228.89.56 ip_proto udp src_port 59212 dst_port 9177 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10242 flower src_mac 02:5a:4e:2c:61:6a dst_mac 02:05:64:d2:4e:7d action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10243 flower src_mac 02:1c:1b:13:06:0d dst_mac 02:e3:23:81:33:c8 vlan_id 755 vlan_ethtype 0x0800 src_ip 112.31.56.8 dst_ip 123.167.14.29 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10244 flower src_mac 02:78:5a:85:a8:c9 dst_mac 02:86:a2:34:32:89 vlan_id 4046 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10245 flower src_mac 02:94:a7:a6:fa:24 dst_mac 02:dd:7d:a1:0e:e0 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10246 flower src_mac 02:9f:cc:c1:01:96 dst_mac 02:09:37:9d:a3:e4 vlan_id 3832 vlan_ethtype ipv4 src_ip 91.132.83.213 dst_ip 112.152.38.216 ip_proto udp src_port 31269 dst_port 18441 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10247 flower src_mac 02:02:44:52:6b:ac dst_mac 02:4c:1d:ee:28:4b vlan_id 3611 vlan_ethtype ipv4 src_ip 108.244.107.208 dst_ip 116.161.122.48 ip_proto udp src_port 32777 dst_port 17332 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10248 flower src_mac 02:01:0e:42:f4:57 dst_mac 02:13:3f:7c:ce:bd vlan_id 2932 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10249 flower src_mac 02:fb:39:d9:f9:1d dst_mac 02:42:da:71:9f:9e action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10250 flower src_mac 02:c7:a1:cd:57:14 dst_mac 02:01:df:47:12:5a src_ip 66.209.235.108 dst_ip 103.217.62.164 ip_proto udp src_port 13606 dst_port 28899 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10251 flower src_mac 02:38:bb:72:72:57 dst_mac 02:67:cd:4a:67:9e src_ip 105.167.183.172 dst_ip 116.96.91.239 ip_proto icmp code 162 type 3 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10252 flower src_mac 02:70:89:ca:d5:57 dst_mac 02:fe:11:30:6c:fb action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10253 flower src_mac 02:62:64:47:f0:a7 dst_mac 02:23:74:8e:ed:b4 src_ip 48.12.129.94 dst_ip 20.98.188.99 ip_proto icmp code 212 type 13 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10254 flower src_mac 02:a7:38:90:b5:88 dst_mac 02:be:80:b3:7a:e0 vlan_id 1142 vlan_ethtype 0x0800 src_ip 29.143.98.70 dst_ip 115.247.158.155 ip_proto tcp src_port 59761 dst_port 41760 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10255 flower src_mac 02:47:0d:a7:4f:60 dst_mac 02:18:10:d5:9b:97 vlan_id 3523 vlan_ethtype ip src_ip 46.30.50.183 dst_ip 41.14.186.64 ip_proto udp src_port 29624 dst_port 37521 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10256 flower src_mac 02:4c:f0:bf:b1:5c dst_mac 02:52:5d:83:a5:66 src_ip 124.237.114.77 dst_ip 73.189.19.162 ip_proto tcp src_port 13645 dst_port 5932 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10257 flower src_mac 02:38:e7:88:ee:c6 dst_mac 02:9c:08:c0:3b:8a vlan_id 1274 vlan_ethtype ip src_ip 68.38.234.69 dst_ip 19.114.178.250 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10258 flower src_mac 02:04:50:7b:6b:a4 dst_mac 02:ab:0f:44:18:33 vlan_id 2350 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10259 flower src_mac 02:47:3c:70:bd:56 dst_mac 02:a9:3e:fe:1a:2b vlan_id 273 vlan_ethtype ip src_ip 11.10.59.190 dst_ip 34.141.173.127 ip_proto tcp src_port 59299 dst_port 52114 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10260 flower src_mac 02:75:f0:84:6a:d6 dst_mac 02:53:50:48:b3:04 vlan_id 571 vlan_ethtype 0x0800 src_ip 108.191.235.163 dst_ip 94.206.131.166 ip_proto udp src_port 18325 dst_port 57462 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10261 flower src_mac 02:31:0b:f5:18:26 dst_mac 02:29:46:49:6b:79 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10262 flower src_mac 02:f0:07:fc:78:b2 dst_mac 02:77:79:aa:86:96 vlan_id 145 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10263 flower src_mac 02:e8:bd:2b:49:6c dst_mac 02:1c:a1:c5:3c:32 vlan_id 3159 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10264 flower src_mac 02:2c:45:1f:58:85 dst_mac 02:1f:14:cf:92:a8 action pass && tc filter add dev swp1 ingress protocol ip pref 10265 flower src_mac 02:2f:3c:ee:4d:d4 dst_mac 02:a2:77:61:73:92 src_ip 56.243.15.191 dst_ip 87.118.192.11 ip_proto icmp code 27 type 14 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10266 flower src_mac 02:9c:ae:b1:be:14 dst_mac 02:fc:ca:97:63:cb src_ip 110.221.97.22 dst_ip 91.221.79.162 ip_proto tcp src_port 55786 dst_port 27265 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10267 flower src_mac 02:0d:8d:a3:5c:06 dst_mac 02:f2:c4:fe:a1:3b action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10268 flower src_mac 02:61:4b:f7:22:27 dst_mac 02:f0:57:8e:43:5f action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10269 flower src_mac 02:6b:f9:be:e4:99 dst_mac 02:48:7f:19:ad:7f vlan_id 2940 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10270 flower src_mac 02:32:61:df:a6:df dst_mac 02:fd:91:25:68:f4 src_ip 75.255.200.2 dst_ip 90.211.25.220 ip_proto tcp src_port 16378 dst_port 29556 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10271 flower src_mac 02:ef:8e:a3:d2:a0 dst_mac 02:0a:73:46:ea:5d vlan_id 2933 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10272 flower src_mac 02:24:ac:a0:a0:a3 dst_mac 02:10:79:36:84:74 vlan_id 2011 vlan_ethtype 0x0800 src_ip 16.159.169.210 dst_ip 116.87.86.147 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10273 flower src_mac 02:ee:ff:88:42:09 dst_mac 02:77:0b:60:db:80 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10274 flower src_mac 02:54:ea:19:8e:5c dst_mac 02:1a:f0:94:ad:55 vlan_id 1843 vlan_ethtype ip src_ip 124.98.214.98 dst_ip 69.236.201.3 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10275 flower src_mac 02:0c:5e:23:16:96 dst_mac 02:d4:ae:11:a5:66 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10276 flower src_mac 02:42:89:03:cb:7a dst_mac 02:40:dd:85:cb:7a vlan_id 2750 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10277 flower src_mac 02:66:23:90:75:ba dst_mac 02:8b:8a:fa:d9:7c action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10278 flower src_mac 02:5a:80:f0:2f:29 dst_mac 02:c0:6f:ac:41:17 vlan_id 3376 vlan_ethtype ipv4 src_ip 22.252.218.98 dst_ip 44.75.76.53 ip_proto tcp src_port 63889 dst_port 52969 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10279 flower src_mac 02:9f:aa:f5:19:a5 dst_mac 02:07:a6:0f:ed:89 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10280 flower src_mac 02:8b:ab:da:ba:bf dst_mac 02:db:c2:d5:34:79 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10281 flower src_mac 02:86:c7:de:75:cf dst_mac 02:0a:ca:0d:29:c8 vlan_id 1427 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10282 flower src_mac 02:62:cd:ae:9f:1d dst_mac 02:b6:78:d5:41:28 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10283 flower src_mac 02:ef:a8:1a:dc:56 dst_mac 02:a5:75:15:f3:56 vlan_id 1765 vlan_ethtype 0x0800 src_ip 63.87.214.236 dst_ip 75.195.220.103 ip_proto udp src_port 19051 dst_port 21830 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10284 flower src_mac 02:e8:cf:7c:98:a7 dst_mac 02:87:ce:ab:2b:88 vlan_id 3252 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ip pref 10285 flower src_mac 02:f2:f4:1a:47:81 dst_mac 02:e5:42:25:c4:f8 src_ip 72.252.55.96 dst_ip 76.143.154.190 ip_proto udp src_port 60136 dst_port 42790 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10286 flower src_mac 02:1f:67:10:ec:26 dst_mac 02:65:2a:af:2e:0c src_ip 33.251.181.57 dst_ip 51.231.208.3 ip_proto tcp src_port 41150 dst_port 47742 action trap && tc filter add dev swp1 ingress protocol ip pref 10287 flower src_mac 02:f6:0b:78:5e:35 dst_mac 02:8d:b5:bc:df:3d src_ip 33.123.61.104 dst_ip 41.56.218.95 ip_proto tcp src_port 659 dst_port 49918 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10288 flower src_mac 02:b6:a5:9b:fe:e1 dst_mac 02:2a:b4:08:75:d0 vlan_id 1629 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 10289 flower src_mac 02:db:38:ce:30:6c dst_mac 02:7b:cc:c4:53:e3 src_ip 28.60.122.1 dst_ip 26.10.171.222 ip_proto udp src_port 63402 dst_port 51879 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10290 flower src_mac 02:fb:bc:74:1f:dc dst_mac 02:16:fe:5a:88:6d vlan_id 488 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10291 flower src_mac 02:02:aa:b7:1b:82 dst_mac 02:6e:fb:0d:3b:d6 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10292 flower src_mac 02:40:80:cb:f5:5e dst_mac 02:03:00:9a:45:8a vlan_id 1643 vlan_ethtype ip src_ip 21.71.154.85 dst_ip 113.28.57.120 ip_proto udp src_port 56390 dst_port 36618 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10293 flower src_mac 02:c8:6f:6f:ab:7c dst_mac 02:97:e0:a5:2f:e7 vlan_id 2469 vlan_ethtype 0x0800 src_ip 68.47.193.228 dst_ip 52.7.32.8 ip_proto tcp src_port 56851 dst_port 36239 action drop && tc filter add dev swp1 ingress protocol ip pref 10294 flower src_mac 02:1b:b3:64:6a:6c dst_mac 02:d3:f5:94:d8:33 src_ip 99.74.145.42 dst_ip 36.148.212.102 ip_proto udp src_port 50959 dst_port 4404 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10295 flower src_mac 02:1b:0f:b1:58:5f dst_mac 02:a6:a9:cf:46:36 vlan_id 2741 vlan_ethtype ip src_ip 72.13.17.235 dst_ip 16.24.226.221 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10296 flower src_mac 02:f7:93:c7:6e:4f dst_mac 02:f5:c4:af:fa:c9 vlan_id 1054 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10297 flower src_mac 02:08:98:1c:fc:14 dst_mac 02:fb:1a:09:66:47 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10298 flower src_mac 02:5a:34:e8:88:33 dst_mac 02:ad:55:3e:f7:7b vlan_id 2652 vlan_ethtype ip src_ip 55.104.198.192 dst_ip 100.184.130.73 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10299 flower src_mac 02:d5:b5:19:a0:05 dst_mac 02:96:e0:7c:49:b5 vlan_id 418 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10300 flower src_mac 02:cc:3a:01:07:55 dst_mac 02:ab:61:15:b0:48 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10301 flower src_mac 02:c2:05:4f:b2:f9 dst_mac 02:d1:bc:de:55:4b vlan_id 863 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10302 flower src_mac 02:93:30:e6:36:97 dst_mac 02:51:e7:8a:94:4e src_ip 59.101.91.142 dst_ip 56.2.28.125 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10303 flower src_mac 02:67:e7:50:7c:26 dst_mac 02:ca:9d:b6:bf:1d vlan_id 2031 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10304 flower src_mac 02:77:e4:e3:4c:16 dst_mac 02:08:3a:df:3a:e2 vlan_id 1411 vlan_ethtype ipv4 src_ip 40.156.101.137 dst_ip 125.209.209.31 ip_proto udp src_port 7841 dst_port 39379 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10305 flower src_mac 02:3e:85:cc:f4:90 dst_mac 02:a4:b3:c1:06:ca src_ip 83.2.159.237 dst_ip 52.225.95.170 ip_proto icmp code 164 type 18 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10306 flower src_mac 02:3d:ca:7b:ba:c0 dst_mac 02:99:da:60:c3:22 vlan_id 3149 vlan_ethtype ipv4 src_ip 70.182.211.160 dst_ip 59.75.97.157 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10307 flower src_mac 02:5e:9b:00:84:ac dst_mac 02:2f:40:13:cc:88 src_ip 71.168.243.235 dst_ip 117.217.228.169 ip_proto icmp code 156 type 13 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10308 flower src_mac 02:a8:73:25:13:78 dst_mac 02:74:14:3a:25:87 vlan_id 656 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10309 flower src_mac 02:9c:21:70:00:b3 dst_mac 02:ea:2b:8e:a7:44 vlan_id 1903 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10310 flower src_mac 02:66:3a:ff:64:d0 dst_mac 02:e2:1b:cf:6c:ab src_ip 81.147.118.204 dst_ip 97.150.47.74 ip_proto icmp code 106 type 15 action drop && tc filter add dev swp1 ingress protocol ip pref 10311 flower src_mac 02:d4:2e:47:c6:c6 dst_mac 02:da:ac:43:c8:05 src_ip 86.64.26.53 dst_ip 101.144.254.24 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10312 flower src_mac 02:c6:9e:2b:50:57 dst_mac 02:a6:49:c3:41:0c vlan_id 52 vlan_ethtype ip src_ip 20.212.29.145 dst_ip 74.228.94.64 ip_proto udp src_port 38684 dst_port 25717 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10313 flower src_mac 02:e8:67:31:0b:55 dst_mac 02:8c:24:27:0f:d8 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10314 flower src_mac 02:43:93:94:73:e6 dst_mac 02:f4:01:d7:b3:b4 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10315 flower src_mac 02:8b:c8:5f:d4:da dst_mac 02:e1:04:72:dc:ec action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10316 flower src_mac 02:8d:ab:7b:d7:32 dst_mac 02:c4:90:2d:d8:97 vlan_id 2251 vlan_ethtype 0x0800 src_ip 114.111.140.234 dst_ip 126.157.90.207 ip_proto tcp src_port 11881 dst_port 19045 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10317 flower src_mac 02:1b:68:b3:a4:20 dst_mac 02:23:c5:67:36:b4 src_ip 110.82.177.248 dst_ip 15.133.211.184 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10318 flower src_mac 02:cd:3e:e1:f3:24 dst_mac 02:23:9c:10:d2:42 vlan_id 3512 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10319 flower src_mac 02:ac:77:cc:35:41 dst_mac 02:d8:46:9b:ca:fe action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10320 flower src_mac 02:d0:96:3d:9f:33 dst_mac 02:11:82:62:53:47 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10321 flower src_mac 02:e5:e3:b9:5f:2c dst_mac 02:50:b0:ea:01:ba action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10322 flower src_mac 02:9a:8c:51:6a:dc dst_mac 02:9f:36:f7:4e:df vlan_id 2474 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10323 flower src_mac 02:4c:e3:e2:d9:fa dst_mac 02:2e:58:1d:e4:b7 vlan_id 3172 vlan_ethtype ipv4 src_ip 100.240.7.141 dst_ip 14.50.84.148 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10324 flower src_mac 02:67:1c:51:f1:55 dst_mac 02:05:31:43:cf:e7 src_ip 114.40.242.146 dst_ip 79.64.29.111 ip_proto icmp code 176 type 8 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10325 flower src_mac 02:6c:bb:a0:96:c1 dst_mac 02:ba:98:8b:15:35 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10326 flower src_mac 02:c4:b6:c7:db:2c dst_mac 02:56:e0:35:c1:36 vlan_id 290 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10327 flower src_mac 02:39:eb:fd:6f:14 dst_mac 02:e9:b3:fe:a9:96 src_ip 104.153.33.145 dst_ip 72.11.20.91 action trap && tc filter add dev swp1 ingress protocol ip pref 10328 flower src_mac 02:8d:34:15:d5:6d dst_mac 02:de:a6:8c:5b:37 src_ip 58.10.97.56 dst_ip 62.184.98.145 ip_proto tcp src_port 35017 dst_port 45388 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10329 flower src_mac 02:4d:6d:8c:eb:5d dst_mac 02:e1:bd:36:9b:71 vlan_id 2914 vlan_ethtype ipv4 src_ip 111.18.26.226 dst_ip 30.235.94.119 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10330 flower src_mac 02:10:6d:0f:53:5c dst_mac 02:d5:b5:ae:4a:4d vlan_id 3244 vlan_ethtype ipv4 src_ip 123.220.128.1 dst_ip 91.226.186.115 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10331 flower src_mac 02:48:02:51:8e:68 dst_mac 02:0f:23:05:be:ec vlan_id 3366 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10332 flower src_mac 02:1b:9e:ba:c6:f1 dst_mac 02:72:37:cc:34:60 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10333 flower src_mac 02:63:93:e8:5d:a4 dst_mac 02:69:53:f1:e6:e7 vlan_id 2237 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10334 flower src_mac 02:12:a4:92:43:e4 dst_mac 02:9b:b5:ef:8d:ea action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10335 flower src_mac 02:6d:a5:69:73:d8 dst_mac 02:ef:a8:e3:ef:c0 src_ip 126.231.171.225 dst_ip 94.32.183.145 ip_proto udp src_port 11345 dst_port 23942 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10336 flower src_mac 02:c3:75:e9:2f:20 dst_mac 02:23:3e:95:a7:37 action trap && tc filter add dev swp1 ingress protocol ip pref 10337 flower src_mac 02:cc:da:23:d7:88 dst_mac 02:06:c4:c2:15:61 src_ip 79.56.10.48 dst_ip 62.232.35.236 ip_proto udp src_port 42142 dst_port 47661 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10338 flower src_mac 02:f6:1c:dc:9f:b8 dst_mac 02:c1:1f:c3:9f:5f vlan_id 2473 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10339 flower src_mac 02:8c:11:88:c1:9b dst_mac 02:58:2b:7d:cc:aa src_ip 35.116.194.21 dst_ip 25.119.39.195 ip_proto icmp code 223 type 14 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10340 flower src_mac 02:6f:0c:6e:4a:ea dst_mac 02:7c:60:97:d2:45 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10341 flower src_mac 02:6d:66:61:9b:65 dst_mac 02:de:9d:4d:4d:8f action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10342 flower src_mac 02:50:91:0c:e5:50 dst_mac 02:70:4e:91:b6:de action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10343 flower src_mac 02:3f:7d:4e:35:19 dst_mac 02:33:ee:d4:58:51 vlan_id 3677 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10344 flower src_mac 02:ba:43:7e:17:ce dst_mac 02:06:72:0e:74:b9 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10345 flower src_mac 02:91:5f:e3:78:07 dst_mac 02:46:78:74:04:2f action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10346 flower src_mac 02:19:29:a3:51:12 dst_mac 02:81:71:e8:fa:bb src_ip 123.189.30.233 dst_ip 109.135.113.8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10347 flower src_mac 02:64:a5:84:a1:be dst_mac 02:db:ca:5b:53:7a vlan_id 120 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10348 flower src_mac 02:11:42:1a:67:0c dst_mac 02:60:14:13:e3:90 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10349 flower src_mac 02:35:4d:89:d0:75 dst_mac 02:69:18:a3:50:0a vlan_id 1584 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10350 flower src_mac 02:1f:26:f0:ab:90 dst_mac 02:4d:b9:ed:cd:41 vlan_id 2089 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10351 flower src_mac 02:68:14:af:5d:30 dst_mac 02:19:cc:eb:fb:19 vlan_id 3274 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10352 flower src_mac 02:22:c4:01:5b:73 dst_mac 02:84:b7:fc:38:9e vlan_id 2609 vlan_ethtype 0x0800 src_ip 25.5.77.207 dst_ip 89.180.223.193 ip_proto tcp src_port 48556 dst_port 7245 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10353 flower src_mac 02:95:de:e6:83:b3 dst_mac 02:e8:fd:3b:fe:90 vlan_id 893 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10354 flower src_mac 02:36:3c:6b:ea:4a dst_mac 02:46:39:a7:ec:54 src_ip 98.109.129.177 dst_ip 107.110.81.145 ip_proto icmp code 133 type 5 action trap && tc filter add dev swp1 ingress protocol ip pref 10355 flower src_mac 02:f2:f7:bc:af:c5 dst_mac 02:7c:82:9f:fd:19 src_ip 30.64.38.59 dst_ip 60.47.80.240 ip_proto tcp src_port 40458 dst_port 55748 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10356 flower src_mac 02:61:ff:fc:d0:fe dst_mac 02:90:40:87:0a:6d vlan_id 2940 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10357 flower src_mac 02:16:1b:18:02:50 dst_mac 02:93:29:e6:8f:78 action drop && tc filter add dev swp1 ingress protocol ip pref 10358 flower src_mac 02:70:17:18:3a:1e dst_mac 02:46:8c:b4:2c:02 src_ip 27.120.100.127 dst_ip 73.81.108.149 ip_proto udp src_port 63841 dst_port 55476 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10359 flower src_mac 02:7e:10:83:cb:be dst_mac 02:f6:cc:f7:aa:57 src_ip 42.14.29.199 dst_ip 89.26.96.59 ip_proto tcp src_port 52274 dst_port 55944 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10360 flower src_mac 02:31:0e:1c:e1:ba dst_mac 02:23:ef:be:89:d9 vlan_id 283 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10361 flower src_mac 02:d6:e8:d8:74:ff dst_mac 02:56:87:0c:64:e5 vlan_id 1814 vlan_ethtype 0x0800 src_ip 81.80.107.229 dst_ip 99.214.225.83 ip_proto udp src_port 57315 dst_port 59847 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10362 flower src_mac 02:6e:b0:10:df:aa dst_mac 02:09:95:da:89:83 vlan_id 1251 vlan_ethtype ip src_ip 112.199.91.116 dst_ip 124.97.153.51 ip_proto udp src_port 13380 dst_port 35206 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10363 flower src_mac 02:e7:ee:19:29:76 dst_mac 02:38:24:77:99:9f action trap && tc filter add dev swp1 ingress protocol ip pref 10364 flower src_mac 02:5a:d1:32:f1:00 dst_mac 02:a6:6d:08:26:b8 src_ip 113.5.215.207 dst_ip 33.119.74.42 ip_proto udp src_port 55672 dst_port 8993 action drop && tc filter add dev swp1 ingress protocol ip pref 10365 flower src_mac 02:3b:eb:8a:39:fd dst_mac 02:6d:6b:92:78:41 src_ip 99.87.56.132 dst_ip 71.140.77.29 ip_proto tcp src_port 32456 dst_port 18737 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10366 flower src_mac 02:d8:f6:57:00:28 dst_mac 02:e2:c5:e1:fb:53 vlan_id 3121 vlan_ethtype ip src_ip 49.45.66.3 dst_ip 35.207.240.115 ip_proto udp src_port 23481 dst_port 54836 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10367 flower src_mac 02:34:57:78:1b:34 dst_mac 02:72:47:f2:38:43 vlan_id 2113 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10368 flower src_mac 02:cc:9a:5d:40:25 dst_mac 02:18:97:99:32:3a vlan_id 1169 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10369 flower src_mac 02:f9:9a:b5:a2:b7 dst_mac 02:75:5e:22:d3:c1 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10370 flower src_mac 02:12:e3:ac:00:04 dst_mac 02:ce:96:9d:e3:39 vlan_id 1136 vlan_ethtype ipv4 src_ip 54.202.24.109 dst_ip 92.157.192.111 ip_proto tcp src_port 38340 dst_port 6795 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10371 flower src_mac 02:95:b3:18:88:ad dst_mac 02:ab:3e:04:ba:eb action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10372 flower src_mac 02:bf:74:0b:00:ae dst_mac 02:9d:09:9d:d7:de src_ip 57.63.205.80 dst_ip 76.229.37.97 ip_proto udp src_port 41968 dst_port 2191 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10373 flower src_mac 02:77:fc:63:4f:12 dst_mac 02:05:c0:e7:e5:1d action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10374 flower src_mac 02:3a:05:d6:21:81 dst_mac 02:e0:bd:33:01:54 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10375 flower src_mac 02:f0:75:21:46:b4 dst_mac 02:f6:3e:b8:28:d3 vlan_id 1486 vlan_ethtype 0x0800 src_ip 18.238.148.237 dst_ip 35.185.184.68 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10376 flower src_mac 02:ad:90:a3:01:c0 dst_mac 02:d4:89:68:7a:6a action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10377 flower src_mac 02:81:b7:ce:d4:c8 dst_mac 02:47:1d:83:8d:f1 vlan_id 3900 vlan_ethtype 0x0800 src_ip 115.104.143.239 dst_ip 32.4.242.175 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10378 flower src_mac 02:06:eb:70:41:55 dst_mac 02:19:2d:b6:ab:b8 vlan_id 1700 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10379 flower src_mac 02:1f:c7:c1:59:54 dst_mac 02:50:04:99:5d:d6 vlan_id 1744 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10380 flower src_mac 02:a7:cc:92:91:d3 dst_mac 02:c3:db:2e:d1:86 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10381 flower src_mac 02:d4:18:60:2e:3f dst_mac 02:3a:b7:d7:0d:18 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10382 flower src_mac 02:fa:ab:76:b7:7b dst_mac 02:4e:5d:68:66:b8 vlan_id 417 vlan_ethtype ipv4 src_ip 28.87.112.114 dst_ip 122.36.99.33 ip_proto tcp src_port 28844 dst_port 1380 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10383 flower src_mac 02:78:0d:71:09:f4 dst_mac 02:5a:69:6d:13:83 src_ip 114.241.36.36 dst_ip 100.59.156.141 ip_proto udp src_port 45227 dst_port 58600 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10384 flower src_mac 02:83:8f:ab:fb:24 dst_mac 02:34:d9:f6:a1:00 src_ip 119.0.145.33 dst_ip 20.235.39.175 ip_proto icmp code 235 type 18 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10385 flower src_mac 02:47:7a:23:72:4b dst_mac 02:ea:8a:18:3f:a5 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10386 flower src_mac 02:6f:a4:34:df:67 dst_mac 02:08:7c:cb:64:82 vlan_id 573 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10387 flower src_mac 02:89:87:5e:fe:86 dst_mac 02:6c:3e:4d:83:d2 src_ip 89.63.103.176 dst_ip 113.92.83.168 ip_proto icmp code 225 type 0 action drop && tc filter add dev swp1 ingress protocol ip pref 10388 flower src_mac 02:62:a2:d6:2c:39 dst_mac 02:d8:2a:4e:83:d1 src_ip 108.28.69.55 dst_ip 109.184.124.6 ip_proto tcp src_port 17285 dst_port 58149 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10389 flower src_mac 02:40:23:99:41:f5 dst_mac 02:1a:b6:ee:58:5c vlan_id 2014 vlan_ethtype 0x0800 src_ip 71.247.37.172 dst_ip 104.153.147.170 action trap && tc filter add dev swp1 ingress protocol ip pref 10390 flower src_mac 02:76:74:0f:2a:07 dst_mac 02:40:9e:d5:34:95 src_ip 70.92.131.5 dst_ip 120.243.237.125 ip_proto udp src_port 58575 dst_port 63305 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10391 flower src_mac 02:6b:ed:64:a9:29 dst_mac 02:c7:5e:6d:c4:55 vlan_id 2674 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10392 flower src_mac 02:fc:dd:b1:97:7c dst_mac 02:22:a3:d6:0c:02 action drop && tc filter add dev swp1 ingress protocol ip pref 10393 flower src_mac 02:ea:ec:95:c8:27 dst_mac 02:f8:16:d9:98:da src_ip 44.244.42.133 dst_ip 122.156.216.167 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10394 flower src_mac 02:37:4d:8c:61:21 dst_mac 02:f8:a2:e1:27:1f vlan_id 4033 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10395 flower src_mac 02:55:59:92:09:68 dst_mac 02:a3:38:c4:57:a4 vlan_id 1290 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10396 flower src_mac 02:40:80:1a:8b:2d dst_mac 02:c2:8f:3f:36:f0 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10397 flower src_mac 02:ed:45:71:ab:1e dst_mac 02:01:a5:bf:d0:28 src_ip 103.3.201.31 dst_ip 55.166.202.164 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10398 flower src_mac 02:80:ac:98:e2:a1 dst_mac 02:af:09:9a:f6:77 vlan_id 943 vlan_ethtype 0x0800 src_ip 32.97.7.30 dst_ip 62.93.16.187 ip_proto tcp src_port 4220 dst_port 53368 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10399 flower src_mac 02:a9:1b:2e:e3:df dst_mac 02:59:88:99:43:de vlan_id 2939 vlan_ethtype 0x9100 action drop INFO asyncssh:logging.py:92 [conn=24, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 10400 flower src_mac 02:a2:4c:d3:0d:b3 dst_mac 02:90:72:c1:94:34 vlan_id 1877 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10401 flower src_mac 02:8e:db:52:f6:c3 dst_mac 02:a2:45:c4:fa:47 src_ip 13.218.35.87 dst_ip 125.52.67.174 ip_proto icmp code 73 type 5 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10402 flower src_mac 02:47:51:31:32:16 dst_mac 02:bd:58:cc:6d:18 src_ip 58.68.39.39 dst_ip 68.135.25.143 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10403 flower src_mac 02:da:2b:f2:61:f1 dst_mac 02:56:52:54:23:4d src_ip 50.205.103.37 dst_ip 100.123.220.150 ip_proto udp src_port 52667 dst_port 63340 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10404 flower src_mac 02:7b:ae:e1:38:f9 dst_mac 02:b1:3b:ed:d7:2d vlan_id 1131 vlan_ethtype ip src_ip 24.119.197.214 dst_ip 71.230.123.156 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10405 flower src_mac 02:66:ac:86:ac:d8 dst_mac 02:6f:ee:20:7e:84 vlan_id 324 vlan_ethtype 0x0800 src_ip 93.61.94.236 dst_ip 45.4.18.70 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10406 flower src_mac 02:f6:7b:d0:1e:50 dst_mac 02:d5:d8:ed:2e:76 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10407 flower src_mac 02:09:44:c8:ec:42 dst_mac 02:e3:4a:9d:48:e0 vlan_id 2019 vlan_ethtype 0x0800 src_ip 69.246.196.93 dst_ip 30.22.206.14 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10408 flower src_mac 02:01:f2:e5:79:0b dst_mac 02:39:23:70:5e:54 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10409 flower src_mac 02:67:47:cf:c8:1f dst_mac 02:59:12:42:33:18 vlan_id 3954 vlan_ethtype ipv4 src_ip 100.198.224.65 dst_ip 21.231.90.22 ip_proto udp src_port 8161 dst_port 27316 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10410 flower src_mac 02:e3:47:aa:c6:75 dst_mac 02:ae:02:ef:1c:6c src_ip 69.75.226.118 dst_ip 38.202.252.87 ip_proto udp src_port 46929 dst_port 60006 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10411 flower src_mac 02:3f:8e:00:3b:16 dst_mac 02:75:43:be:c6:a5 vlan_id 2833 vlan_ethtype 0x0800 src_ip 61.152.204.90 dst_ip 100.13.191.83 ip_proto tcp src_port 7156 dst_port 30164 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10412 flower src_mac 02:20:85:3b:83:dd dst_mac 02:9b:02:cc:42:63 vlan_id 827 vlan_ethtype ipv4 src_ip 121.192.254.182 dst_ip 87.53.2.51 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10413 flower src_mac 02:4c:0e:47:55:54 dst_mac 02:a5:6b:4f:95:9c vlan_id 1927 vlan_ethtype ipv4 src_ip 73.56.74.48 dst_ip 38.215.120.166 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10414 flower src_mac 02:d9:e9:51:f9:c9 dst_mac 02:5a:30:8b:1e:c0 src_ip 70.58.148.136 dst_ip 33.113.15.243 ip_proto tcp src_port 723 dst_port 33786 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10415 flower src_mac 02:a3:aa:1d:c9:ae dst_mac 02:cb:43:9a:fb:1d vlan_id 2708 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10416 flower src_mac 02:0f:d2:34:e9:d2 dst_mac 02:fd:e9:4e:b6:61 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10417 flower src_mac 02:b6:74:88:1e:1c dst_mac 02:5e:f4:20:19:bb vlan_id 3983 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10418 flower src_mac 02:55:1e:b8:26:02 dst_mac 02:0f:78:dd:ec:c9 vlan_id 1650 vlan_ethtype ipv4 src_ip 126.216.99.24 dst_ip 121.186.74.41 ip_proto udp src_port 25036 dst_port 17587 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10419 flower src_mac 02:40:5c:0f:4a:df dst_mac 02:72:89:98:22:6b vlan_id 911 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10420 flower src_mac 02:46:29:60:1f:38 dst_mac 02:b8:b0:29:a5:95 vlan_id 3604 vlan_ethtype ip src_ip 85.184.121.211 dst_ip 29.75.59.81 ip_proto udp src_port 46651 dst_port 61863 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10421 flower src_mac 02:cf:a2:50:db:c3 dst_mac 02:f2:9a:f8:99:2e action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10422 flower src_mac 02:b4:17:0e:14:f3 dst_mac 02:0c:82:e2:68:12 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10423 flower src_mac 02:d5:4e:d2:04:a0 dst_mac 02:6c:0b:50:4f:13 vlan_id 1262 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10424 flower src_mac 02:ba:d7:60:fa:77 dst_mac 02:18:d0:6f:1a:d7 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10425 flower src_mac 02:cd:bc:01:80:0e dst_mac 02:c3:46:cd:5e:cc src_ip 18.7.120.90 dst_ip 60.184.67.81 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10426 flower src_mac 02:37:02:d8:5f:3c dst_mac 02:87:3c:7b:7a:5b vlan_id 2692 vlan_ethtype ip src_ip 64.28.219.98 dst_ip 48.201.78.46 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10427 flower src_mac 02:f7:82:95:34:e4 dst_mac 02:b3:d6:81:3a:0b vlan_id 75 vlan_ethtype ipv4 src_ip 37.0.202.23 dst_ip 82.231.55.41 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10428 flower src_mac 02:f8:05:88:3e:8f dst_mac 02:08:b3:48:32:54 vlan_id 3625 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10429 flower src_mac 02:0b:80:20:81:71 dst_mac 02:fa:c6:2f:83:fc src_ip 82.46.82.140 dst_ip 15.13.179.7 ip_proto udp src_port 63322 dst_port 42714 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10430 flower src_mac 02:7b:50:71:31:90 dst_mac 02:82:f0:29:b2:85 src_ip 52.182.44.223 dst_ip 81.113.70.16 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10431 flower src_mac 02:6f:1b:ee:6c:d3 dst_mac 02:c1:28:3f:c6:72 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10432 flower src_mac 02:5e:60:ad:82:b2 dst_mac 02:23:e4:43:fd:35 vlan_id 2004 vlan_ethtype 0x0800 src_ip 80.55.56.52 dst_ip 14.89.99.79 ip_proto tcp src_port 23501 dst_port 34304 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10433 flower src_mac 02:41:44:fd:c4:d6 dst_mac 02:b6:00:ad:50:8b vlan_id 3930 vlan_ethtype 0x0800 src_ip 79.166.27.37 dst_ip 81.226.188.96 ip_proto tcp src_port 10343 dst_port 29254 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10434 flower src_mac 02:a2:89:95:f2:ad dst_mac 02:08:94:58:3c:e5 vlan_id 2839 vlan_ethtype ip src_ip 60.173.160.139 dst_ip 117.95.5.124 ip_proto udp src_port 22906 dst_port 10904 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10435 flower src_mac 02:08:bf:78:93:b5 dst_mac 02:ae:34:bd:4c:f5 vlan_id 2110 vlan_ethtype 0x0800 src_ip 30.97.137.212 dst_ip 29.40.62.141 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10436 flower src_mac 02:ec:54:17:44:6d dst_mac 02:ee:34:01:de:69 vlan_id 2640 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10437 flower src_mac 02:81:09:31:12:40 dst_mac 02:4d:af:a6:9c:bc vlan_id 545 vlan_ethtype ip src_ip 37.65.24.242 dst_ip 26.148.163.185 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10438 flower src_mac 02:34:d0:39:47:d7 dst_mac 02:0d:c5:68:5f:e7 vlan_id 1663 vlan_ethtype ip src_ip 70.83.148.145 dst_ip 111.212.157.183 ip_proto udp src_port 3141 dst_port 54037 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10439 flower src_mac 02:9c:78:55:05:e5 dst_mac 02:26:2e:dd:36:6d src_ip 124.78.247.157 dst_ip 76.91.7.246 ip_proto icmp code 226 type 13 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10440 flower src_mac 02:cd:cc:b4:e6:a0 dst_mac 02:23:e0:0c:3e:17 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10441 flower src_mac 02:56:d0:4a:e3:62 dst_mac 02:4c:a4:9f:0a:07 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10442 flower src_mac 02:9c:28:dd:0c:3b dst_mac 02:32:10:1d:a9:96 src_ip 97.8.6.97 dst_ip 122.6.159.121 ip_proto udp src_port 48683 dst_port 62347 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10443 flower src_mac 02:5b:28:45:df:be dst_mac 02:5f:cb:45:94:e6 vlan_id 2543 vlan_ethtype ip src_ip 126.57.157.180 dst_ip 98.33.212.250 ip_proto tcp src_port 30227 dst_port 40897 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10444 flower src_mac 02:a7:8e:25:2e:52 dst_mac 02:92:83:f1:6e:d1 vlan_id 3564 vlan_ethtype ip src_ip 104.126.169.234 dst_ip 87.90.188.92 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10445 flower src_mac 02:bd:0c:d0:9f:b3 dst_mac 02:88:1c:18:bf:61 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10446 flower src_mac 02:61:33:05:51:1e dst_mac 02:14:9b:8f:70:26 vlan_id 386 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10447 flower src_mac 02:30:92:06:5b:20 dst_mac 02:3b:4e:d8:b0:9f action trap && tc filter add dev swp1 ingress protocol ip pref 10448 flower src_mac 02:d5:51:43:c9:6a dst_mac 02:e7:9c:1b:e7:27 src_ip 42.5.202.4 dst_ip 95.57.139.209 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10449 flower src_mac 02:06:97:5f:b3:dc dst_mac 02:83:64:52:5e:54 vlan_id 2145 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10450 flower src_mac 02:a5:88:de:5d:d3 dst_mac 02:05:f6:57:aa:32 vlan_id 2174 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10451 flower src_mac 02:e1:2b:66:e9:c9 dst_mac 02:fe:71:28:f5:b9 vlan_id 3846 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10452 flower src_mac 02:f8:e6:ff:b2:a2 dst_mac 02:47:26:59:91:ec vlan_id 2641 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10453 flower src_mac 02:36:c9:6d:84:55 dst_mac 02:8e:3d:36:06:e2 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10454 flower src_mac 02:11:c2:67:44:8d dst_mac 02:9b:4c:f4:79:5e action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10455 flower src_mac 02:df:4e:e5:31:4f dst_mac 02:c8:1e:72:da:11 vlan_id 3745 vlan_ethtype ip src_ip 11.72.41.125 dst_ip 11.112.177.58 ip_proto udp src_port 52603 dst_port 53428 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10456 flower src_mac 02:c3:c8:8e:2c:51 dst_mac 02:3c:91:78:c8:e8 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10457 flower src_mac 02:33:d2:64:fc:5f dst_mac 02:e2:cf:3e:c4:4c action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10458 flower src_mac 02:3d:cd:29:7c:e5 dst_mac 02:5e:b4:cf:c1:8d src_ip 15.63.151.92 dst_ip 26.14.148.22 ip_proto tcp src_port 63801 dst_port 61829 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10459 flower src_mac 02:d6:ee:eb:8d:65 dst_mac 02:55:49:a0:25:bf vlan_id 583 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10460 flower src_mac 02:24:e5:bf:ab:4e dst_mac 02:75:6b:96:05:2d action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10461 flower src_mac 02:77:dc:ef:f2:d7 dst_mac 02:55:ea:38:92:55 vlan_id 3075 vlan_ethtype ip src_ip 46.120.198.116 dst_ip 76.119.98.16 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10462 flower src_mac 02:63:2b:83:ef:6c dst_mac 02:a8:46:85:33:56 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10463 flower src_mac 02:81:1e:f7:e5:e2 dst_mac 02:c3:4e:5a:90:d9 vlan_id 3430 vlan_ethtype ipv4 src_ip 51.15.219.177 dst_ip 122.159.20.76 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10464 flower src_mac 02:fe:4b:d7:15:d2 dst_mac 02:f4:77:a8:51:5b vlan_id 1723 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10465 flower src_mac 02:f6:b0:6c:20:db dst_mac 02:65:08:14:a1:ce action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10466 flower src_mac 02:16:75:fb:fd:23 dst_mac 02:2e:1d:bb:e1:a5 vlan_id 982 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10467 flower src_mac 02:4e:2a:2c:15:48 dst_mac 02:46:2d:34:9a:b7 vlan_id 3627 vlan_ethtype 0x0800 src_ip 100.167.186.179 dst_ip 78.48.59.207 ip_proto udp src_port 60652 dst_port 64588 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10468 flower src_mac 02:cf:09:67:70:81 dst_mac 02:3e:e7:05:86:8a vlan_id 1636 vlan_ethtype ip src_ip 101.74.5.111 dst_ip 95.71.121.80 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10469 flower src_mac 02:6c:40:26:a3:42 dst_mac 02:41:af:b5:8a:10 vlan_id 3372 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10470 flower src_mac 02:26:a1:29:28:e2 dst_mac 02:02:85:a2:77:86 vlan_id 2851 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10471 flower src_mac 02:f7:54:de:20:2a dst_mac 02:27:de:bb:7d:d2 vlan_id 1889 vlan_ethtype ipv4 src_ip 97.26.238.148 dst_ip 110.155.61.168 ip_proto udp src_port 59117 dst_port 24478 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10472 flower src_mac 02:28:b9:6e:75:4a dst_mac 02:5e:00:81:99:53 vlan_id 1116 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10473 flower src_mac 02:0c:ac:df:0a:3e dst_mac 02:b1:28:d0:90:cb src_ip 98.92.85.176 dst_ip 71.159.250.183 action pass && tc filter add dev swp1 ingress protocol ip pref 10474 flower src_mac 02:7e:7b:bb:96:d0 dst_mac 02:ec:6e:63:4f:d1 src_ip 11.59.234.208 dst_ip 117.162.117.83 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10475 flower src_mac 02:a6:39:70:5a:3f dst_mac 02:5d:ed:d2:7e:a2 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10476 flower src_mac 02:51:20:c8:af:a3 dst_mac 02:25:20:92:0f:41 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10477 flower src_mac 02:f5:56:87:3f:df dst_mac 02:be:e3:4e:d5:e0 src_ip 32.195.98.203 dst_ip 103.230.225.80 ip_proto icmp code 55 type 15 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10478 flower src_mac 02:31:1d:bd:fd:0a dst_mac 02:f1:25:4a:c3:ea vlan_id 3636 vlan_ethtype 0x0800 src_ip 16.13.126.178 dst_ip 110.255.96.232 ip_proto tcp src_port 41187 dst_port 45465 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10479 flower src_mac 02:e4:d7:47:78:4e dst_mac 02:f5:c5:84:f2:e6 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10480 flower src_mac 02:97:c5:6e:09:bd dst_mac 02:86:33:15:0f:6a vlan_id 500 vlan_ethtype 0x0800 src_ip 44.52.114.246 dst_ip 123.87.91.68 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10481 flower src_mac 02:b2:59:92:3b:33 dst_mac 02:14:7e:8e:05:f2 vlan_id 1233 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10482 flower src_mac 02:51:34:c1:ef:d7 dst_mac 02:1a:dc:b1:b3:d5 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10483 flower src_mac 02:8b:5d:55:39:fd dst_mac 02:59:9b:cb:10:6f src_ip 20.146.56.93 dst_ip 55.63.150.48 ip_proto icmp code 109 type 13 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10484 flower src_mac 02:2c:35:c9:a4:b0 dst_mac 02:2d:61:83:8f:79 src_ip 83.176.152.244 dst_ip 110.21.212.247 ip_proto tcp src_port 727 dst_port 16100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10485 flower src_mac 02:2a:a6:93:e2:b6 dst_mac 02:12:f5:65:49:ea action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10486 flower src_mac 02:e1:27:71:47:f5 dst_mac 02:27:f0:78:94:d3 vlan_id 1794 vlan_ethtype ip src_ip 25.155.89.108 dst_ip 99.186.68.77 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10487 flower src_mac 02:f9:82:a6:3d:f9 dst_mac 02:37:9e:51:32:63 vlan_id 2078 vlan_ethtype ipv4 src_ip 110.15.140.62 dst_ip 30.90.152.69 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10488 flower src_mac 02:1f:65:c4:e0:11 dst_mac 02:ef:d6:37:6c:0c vlan_id 788 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10489 flower src_mac 02:16:7f:af:52:d6 dst_mac 02:86:87:2c:78:de vlan_id 510 vlan_ethtype 0x0800 src_ip 24.127.147.25 dst_ip 115.249.192.229 ip_proto tcp src_port 36405 dst_port 15839 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10490 flower src_mac 02:df:70:58:94:25 dst_mac 02:b0:79:f8:d7:94 src_ip 56.122.244.45 dst_ip 86.65.178.77 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10491 flower src_mac 02:17:aa:9e:67:08 dst_mac 02:81:ae:b4:f5:75 vlan_id 2199 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10492 flower src_mac 02:a7:e8:c2:1b:d1 dst_mac 02:9a:5e:d7:57:a5 vlan_id 2962 vlan_ethtype ip src_ip 60.36.105.140 dst_ip 22.155.164.250 ip_proto tcp src_port 39228 dst_port 17375 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10493 flower src_mac 02:44:8d:9d:c0:86 dst_mac 02:fe:f0:51:0c:40 src_ip 98.169.19.250 dst_ip 125.171.163.38 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10494 flower src_mac 02:a6:67:81:29:4d dst_mac 02:d2:e8:8f:af:e8 vlan_id 1483 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10495 flower src_mac 02:43:38:2c:44:2b dst_mac 02:0e:36:a6:3e:6b vlan_id 2731 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10496 flower src_mac 02:2b:c8:c8:33:f9 dst_mac 02:35:d8:71:fe:2d src_ip 113.114.218.241 dst_ip 15.67.180.151 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10497 flower src_mac 02:58:9d:95:cc:31 dst_mac 02:54:26:20:e5:7e vlan_id 3943 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10498 flower src_mac 02:83:73:2b:7f:67 dst_mac 02:70:5f:aa:d5:3c src_ip 122.65.208.71 dst_ip 26.19.113.44 ip_proto icmp code 188 type 5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10499 flower src_mac 02:55:79:73:05:b9 dst_mac 02:ee:13:5c:f5:89 vlan_id 2804 vlan_ethtype ipv4 src_ip 100.44.166.134 dst_ip 69.119.71.185 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10500 flower src_mac 02:80:35:ca:d7:76 dst_mac 02:88:2b:66:df:0a vlan_id 2401 vlan_ethtype ip src_ip 76.133.169.248 dst_ip 68.163.33.71 ip_proto udp src_port 47880 dst_port 53969 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10501 flower src_mac 02:a9:4f:83:8f:99 dst_mac 02:43:b4:0b:d0:ce action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10502 flower src_mac 02:bd:49:89:83:1e dst_mac 02:b3:8f:67:99:56 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10503 flower src_mac 02:14:9f:c7:bd:21 dst_mac 02:a4:d3:ca:75:cd src_ip 37.139.155.222 dst_ip 20.58.122.18 ip_proto icmp code 34 type 12 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10504 flower src_mac 02:ec:32:10:d0:6b dst_mac 02:1e:dc:58:2b:e9 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10505 flower src_mac 02:1c:d1:27:32:fb dst_mac 02:25:09:c3:26:fb vlan_id 1724 vlan_ethtype ip src_ip 51.153.149.232 dst_ip 27.75.175.228 ip_proto tcp src_port 52935 dst_port 32241 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10506 flower src_mac 02:a8:6d:80:68:5c dst_mac 02:91:18:6f:10:5c vlan_id 3839 vlan_ethtype ipv4 src_ip 57.29.79.109 dst_ip 65.163.20.230 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10507 flower src_mac 02:28:9a:b6:79:b8 dst_mac 02:2f:3f:60:2d:47 src_ip 91.38.138.235 dst_ip 41.13.156.176 ip_proto tcp src_port 2101 dst_port 46492 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10508 flower src_mac 02:55:59:0c:2d:23 dst_mac 02:39:89:71:42:87 vlan_id 749 vlan_ethtype ip src_ip 51.232.1.190 dst_ip 116.64.138.217 ip_proto tcp src_port 25469 dst_port 53772 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10509 flower src_mac 02:e3:e3:2a:de:2f dst_mac 02:5f:29:76:77:24 vlan_id 1311 vlan_ethtype ip src_ip 59.243.52.157 dst_ip 12.153.187.53 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10510 flower src_mac 02:da:be:9e:49:4c dst_mac 02:d1:eb:12:ad:7c vlan_id 3892 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10511 flower src_mac 02:61:48:f2:bc:d6 dst_mac 02:bf:bb:b3:c6:c4 vlan_id 2833 vlan_ethtype ipv4 src_ip 125.161.3.50 dst_ip 62.253.58.93 ip_proto tcp src_port 53673 dst_port 53432 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10512 flower src_mac 02:8a:4f:ec:20:85 dst_mac 02:52:13:bc:11:12 vlan_id 1118 vlan_ethtype ip src_ip 67.90.9.24 dst_ip 43.199.110.188 ip_proto udp src_port 34446 dst_port 7488 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10513 flower src_mac 02:8c:b0:16:5c:5b dst_mac 02:8b:93:e6:2a:86 src_ip 111.197.179.171 dst_ip 39.59.52.20 ip_proto icmp code 64 type 4 action drop && tc filter add dev swp1 ingress protocol ip pref 10514 flower src_mac 02:e9:9c:11:f7:05 dst_mac 02:57:7a:f3:61:75 src_ip 24.136.198.87 dst_ip 17.24.136.241 ip_proto tcp src_port 27613 dst_port 59234 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10515 flower src_mac 02:11:e0:1e:3c:00 dst_mac 02:7f:78:f4:10:e8 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10516 flower src_mac 02:d2:24:83:cf:c8 dst_mac 02:6d:17:79:2e:da vlan_id 1516 vlan_ethtype ipv4 src_ip 23.87.213.94 dst_ip 97.51.77.82 ip_proto udp src_port 4397 dst_port 27028 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10517 flower src_mac 02:36:0b:4c:ab:e7 dst_mac 02:d9:29:0c:e2:06 src_ip 70.235.73.224 dst_ip 120.21.229.151 ip_proto tcp src_port 54155 dst_port 11157 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10518 flower src_mac 02:b9:e6:f7:e6:64 dst_mac 02:96:4e:69:f7:dc vlan_id 2014 vlan_ethtype ip src_ip 126.201.63.143 dst_ip 57.168.136.80 ip_proto tcp src_port 27484 dst_port 31623 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10519 flower src_mac 02:8d:62:ba:f3:df dst_mac 02:64:ce:2d:02:a6 vlan_id 310 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10520 flower src_mac 02:34:56:3b:82:a7 dst_mac 02:78:9f:f9:e9:5a vlan_id 3581 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10521 flower src_mac 02:7a:68:43:c0:a1 dst_mac 02:1a:55:49:02:3c vlan_id 2289 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10522 flower src_mac 02:a7:69:2f:75:6e dst_mac 02:cc:79:26:2d:5a vlan_id 2066 vlan_ethtype ip src_ip 120.84.130.229 dst_ip 123.130.136.42 ip_proto tcp src_port 55720 dst_port 48825 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10523 flower src_mac 02:8c:f8:1d:d3:77 dst_mac 02:65:9b:6f:30:b3 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10524 flower src_mac 02:02:20:73:a4:b0 dst_mac 02:90:c5:52:c8:75 vlan_id 445 vlan_ethtype 0x0800 src_ip 49.77.122.58 dst_ip 90.13.151.36 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10525 flower src_mac 02:2e:af:41:8f:9c dst_mac 02:9c:a3:05:cd:c9 vlan_id 1956 vlan_ethtype ip src_ip 12.185.66.35 dst_ip 84.107.178.72 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10526 flower src_mac 02:74:10:d2:7f:ff dst_mac 02:24:ef:a3:49:7f action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10527 flower src_mac 02:2c:32:b1:94:f9 dst_mac 02:77:1b:ea:69:95 vlan_id 951 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10528 flower src_mac 02:d7:1a:4f:ab:d2 dst_mac 02:00:c3:f0:0e:08 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10529 flower src_mac 02:21:8e:47:c2:b7 dst_mac 02:2f:e1:a2:04:ba vlan_id 1154 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10530 flower src_mac 02:c4:b9:67:93:bd dst_mac 02:7e:4d:74:37:a0 vlan_id 1118 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10531 flower src_mac 02:ca:91:d6:b4:28 dst_mac 02:48:ef:59:84:cb vlan_id 967 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10532 flower src_mac 02:76:27:db:07:8e dst_mac 02:14:67:92:9a:d1 src_ip 121.180.17.29 dst_ip 42.43.194.85 ip_proto tcp src_port 23210 dst_port 36761 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10533 flower src_mac 02:1d:9e:7e:5a:16 dst_mac 02:e8:81:fa:3e:e6 vlan_id 1270 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 10534 flower src_mac 02:b4:d1:80:9b:e4 dst_mac 02:94:57:4e:dd:3d src_ip 36.123.180.17 dst_ip 88.162.213.189 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10535 flower src_mac 02:2a:9a:60:d0:c0 dst_mac 02:7e:38:18:58:78 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10536 flower src_mac 02:e7:95:cb:ec:fc dst_mac 02:63:d1:07:a7:e5 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10537 flower src_mac 02:6e:7a:96:b2:5c dst_mac 02:6a:b5:61:c7:be vlan_id 86 vlan_ethtype ipv4 src_ip 120.224.74.56 dst_ip 71.36.170.37 ip_proto udp src_port 16183 dst_port 44936 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10538 flower src_mac 02:cf:d0:f2:93:47 dst_mac 02:71:a6:90:ae:45 vlan_id 2963 vlan_ethtype ipv4 src_ip 16.134.239.181 dst_ip 92.200.60.111 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10539 flower src_mac 02:41:3b:0f:71:49 dst_mac 02:35:1e:5d:9c:29 vlan_id 3060 vlan_ethtype ip src_ip 44.108.100.24 dst_ip 58.30.73.116 ip_proto tcp src_port 16198 dst_port 16077 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10540 flower src_mac 02:d9:2b:9f:6f:2f dst_mac 02:35:75:50:67:5c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10541 flower src_mac 02:e6:4e:2c:40:60 dst_mac 02:ed:ad:3c:96:21 vlan_id 278 vlan_ethtype 0x0800 src_ip 33.42.230.38 dst_ip 43.55.184.169 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10542 flower src_mac 02:ab:ff:ce:fc:fb dst_mac 02:46:45:29:bc:19 vlan_id 303 vlan_ethtype ip src_ip 36.13.160.187 dst_ip 56.161.43.248 ip_proto udp src_port 47631 dst_port 8190 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10543 flower src_mac 02:fb:8e:7c:f3:49 dst_mac 02:ea:6d:1a:34:63 src_ip 13.64.94.228 dst_ip 126.101.192.245 ip_proto udp src_port 56366 dst_port 39392 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10544 flower src_mac 02:7a:c5:59:1e:59 dst_mac 02:bd:ee:47:1f:7c vlan_id 1732 vlan_ethtype ip src_ip 17.63.122.31 dst_ip 59.242.128.189 ip_proto tcp src_port 46971 dst_port 41356 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10545 flower src_mac 02:6f:d7:aa:21:8f dst_mac 02:4f:62:f8:b4:c4 src_ip 61.148.33.3 dst_ip 92.94.160.53 ip_proto tcp src_port 53565 dst_port 31447 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10546 flower src_mac 02:91:9c:99:81:10 dst_mac 02:ca:5f:48:7b:b9 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10547 flower src_mac 02:0e:6b:66:f9:35 dst_mac 02:5e:77:9e:10:45 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10548 flower src_mac 02:49:e5:68:6c:e5 dst_mac 02:f1:bf:f7:1d:0e vlan_id 2844 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10549 flower src_mac 02:56:e6:b9:4b:ed dst_mac 02:76:1b:f5:71:6b vlan_id 3751 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 10550 flower src_mac 02:60:d9:0c:c4:07 dst_mac 02:cb:e7:83:c5:a8 src_ip 80.90.203.204 dst_ip 16.83.108.143 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10551 flower src_mac 02:55:4a:4d:7b:6c dst_mac 02:d7:58:bf:54:0c vlan_id 2041 vlan_ethtype ip src_ip 50.235.188.159 dst_ip 17.1.117.237 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10552 flower src_mac 02:d8:d2:7c:f8:8c dst_mac 02:11:bd:37:76:76 vlan_id 2409 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10553 flower src_mac 02:76:54:43:b4:38 dst_mac 02:9f:3a:15:47:1c vlan_id 3313 vlan_ethtype ipv4 src_ip 62.116.130.73 dst_ip 13.175.190.206 ip_proto tcp src_port 44468 dst_port 27043 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10554 flower src_mac 02:90:01:19:15:06 dst_mac 02:1c:8e:f2:65:4c vlan_id 2770 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10555 flower src_mac 02:74:fa:6b:a7:d8 dst_mac 02:90:e7:c6:7b:41 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10556 flower src_mac 02:c7:04:81:b5:09 dst_mac 02:fb:6f:e9:2a:89 vlan_id 1855 vlan_ethtype ipv4 src_ip 67.54.14.210 dst_ip 108.106.45.198 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10557 flower src_mac 02:23:a1:c9:fa:8c dst_mac 02:2b:62:f8:65:c8 vlan_id 1248 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10558 flower src_mac 02:3e:af:51:a0:1f dst_mac 02:5f:74:8b:5e:e5 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10559 flower src_mac 02:4d:77:72:80:26 dst_mac 02:14:11:12:68:2c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10560 flower src_mac 02:03:b8:d2:61:1c dst_mac 02:e2:f0:c0:02:59 vlan_id 3460 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10561 flower src_mac 02:26:59:cc:19:08 dst_mac 02:c8:01:85:17:80 vlan_id 2176 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10562 flower src_mac 02:be:dd:16:d2:1e dst_mac 02:0b:90:c7:37:24 vlan_id 3323 vlan_ethtype ipv4 src_ip 53.86.211.234 dst_ip 114.118.227.43 ip_proto tcp src_port 7297 dst_port 21078 action drop && tc filter add dev swp1 ingress protocol ip pref 10563 flower src_mac 02:af:10:c4:a5:9f dst_mac 02:8f:bc:91:c2:76 src_ip 25.44.91.104 dst_ip 71.56.62.61 ip_proto udp src_port 9404 dst_port 41253 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10564 flower src_mac 02:c3:40:3e:90:ce dst_mac 02:05:86:43:05:c7 vlan_id 1824 vlan_ethtype ipv4 src_ip 16.87.43.121 dst_ip 114.49.188.22 ip_proto udp src_port 9187 dst_port 57811 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10565 flower src_mac 02:6d:e7:85:96:33 dst_mac 02:76:44:ca:f8:be vlan_id 402 vlan_ethtype ipv4 src_ip 84.139.130.116 dst_ip 41.248.209.26 ip_proto udp src_port 37554 dst_port 24893 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10566 flower src_mac 02:d1:85:12:4d:ad dst_mac 02:79:19:99:fe:74 vlan_id 1331 vlan_ethtype 0x0800 src_ip 72.59.122.243 dst_ip 30.226.247.65 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10567 flower src_mac 02:03:30:e2:af:bf dst_mac 02:6e:b4:93:14:64 vlan_id 945 vlan_ethtype ipv4 src_ip 81.195.18.173 dst_ip 33.219.71.168 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10568 flower src_mac 02:20:cf:bd:ff:52 dst_mac 02:db:a0:97:54:60 vlan_id 179 vlan_ethtype 0x0800 src_ip 57.213.134.80 dst_ip 16.65.224.223 ip_proto tcp src_port 31789 dst_port 17060 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10569 flower src_mac 02:ed:8d:36:05:22 dst_mac 02:20:df:61:d8:f2 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10570 flower src_mac 02:77:e6:74:c5:98 dst_mac 02:8f:98:f2:13:00 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10571 flower src_mac 02:e5:26:cb:e4:79 dst_mac 02:7a:54:0f:16:de vlan_id 179 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 10572 flower src_mac 02:a6:2c:e1:c0:8c dst_mac 02:23:50:1e:0d:29 src_ip 124.43.185.27 dst_ip 102.242.37.179 ip_proto udp src_port 32964 dst_port 47372 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10573 flower src_mac 02:53:56:c0:0a:18 dst_mac 02:7f:10:e8:a3:0c vlan_id 2159 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10574 flower src_mac 02:3b:22:21:09:2b dst_mac 02:1e:7b:b8:b7:5e src_ip 100.175.48.180 dst_ip 69.162.242.245 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10575 flower src_mac 02:c4:1e:0e:71:e6 dst_mac 02:ac:25:bc:75:b2 src_ip 68.246.219.95 dst_ip 23.181.232.163 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10576 flower src_mac 02:95:64:d1:fc:8e dst_mac 02:c2:9f:20:03:4e vlan_id 1280 vlan_ethtype ipv4 src_ip 39.189.145.87 dst_ip 46.73.126.103 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10577 flower src_mac 02:41:79:3b:52:15 dst_mac 02:e8:31:bf:0d:d0 vlan_id 3261 vlan_ethtype ipv4 src_ip 101.115.208.89 dst_ip 18.127.74.127 ip_proto udp src_port 28134 dst_port 47851 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10578 flower src_mac 02:ee:13:14:ac:23 dst_mac 02:19:89:de:3e:fb vlan_id 3200 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10579 flower src_mac 02:47:a6:13:5a:b3 dst_mac 02:d2:e9:fa:8b:ac action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10580 flower src_mac 02:bc:82:77:54:02 dst_mac 02:bb:a2:e7:f8:05 vlan_id 2697 vlan_ethtype ip src_ip 40.233.92.108 dst_ip 65.168.46.195 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10581 flower src_mac 02:85:87:5d:b1:02 dst_mac 02:eb:a4:d7:33:6d action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10582 flower src_mac 02:57:f6:98:b5:0e dst_mac 02:b5:6a:2e:d2:d1 vlan_id 186 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10583 flower src_mac 02:5f:bb:60:e4:04 dst_mac 02:cf:e4:98:10:c3 vlan_id 612 vlan_ethtype 0x0800 src_ip 50.225.104.144 dst_ip 110.189.249.59 ip_proto udp src_port 64499 dst_port 37749 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10584 flower src_mac 02:33:4b:16:af:14 dst_mac 02:b1:22:70:0d:d8 vlan_id 824 vlan_ethtype ipv4 src_ip 48.159.161.99 dst_ip 24.112.153.197 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10585 flower src_mac 02:33:f0:de:94:e4 dst_mac 02:41:51:e6:a0:ac vlan_id 2526 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10586 flower src_mac 02:a1:23:8f:ae:b5 dst_mac 02:b8:b0:29:b2:e8 vlan_id 3160 vlan_ethtype ip src_ip 116.76.133.193 dst_ip 53.66.155.75 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10587 flower src_mac 02:c2:ec:4d:9a:ef dst_mac 02:80:ce:cd:09:f3 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10588 flower src_mac 02:90:d2:04:cf:a2 dst_mac 02:46:a5:a1:51:7e action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10589 flower src_mac 02:ce:ea:c6:2d:58 dst_mac 02:fb:c0:df:c0:e9 vlan_id 3931 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10590 flower src_mac 02:ad:07:3e:2a:47 dst_mac 02:19:97:0e:16:aa action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10591 flower src_mac 02:01:bc:4d:b3:4a dst_mac 02:a0:7d:64:03:04 src_ip 98.1.231.41 dst_ip 46.49.50.153 ip_proto udp src_port 24812 dst_port 2226 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10592 flower src_mac 02:a2:7f:ac:78:72 dst_mac 02:24:86:e4:97:28 src_ip 76.18.240.128 dst_ip 120.26.180.181 ip_proto icmp code 67 type 17 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10593 flower src_mac 02:5e:aa:86:6a:f6 dst_mac 02:66:ad:ae:47:07 vlan_id 3337 vlan_ethtype ip src_ip 23.133.194.214 dst_ip 43.69.6.228 ip_proto udp src_port 24879 dst_port 29622 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10594 flower src_mac 02:20:9f:28:07:1d dst_mac 02:36:f2:9a:51:16 vlan_id 3013 vlan_ethtype ip src_ip 99.243.145.242 dst_ip 36.145.198.155 ip_proto tcp src_port 49737 dst_port 28068 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10595 flower src_mac 02:33:c7:2a:14:76 dst_mac 02:53:6a:aa:c7:7c src_ip 53.207.230.6 dst_ip 89.114.159.14 ip_proto tcp src_port 3049 dst_port 37508 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10596 flower src_mac 02:3d:55:83:3b:87 dst_mac 02:93:64:f1:e0:c8 src_ip 16.56.101.45 dst_ip 71.196.175.91 ip_proto udp src_port 44774 dst_port 49065 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10597 flower src_mac 02:2a:36:47:b6:59 dst_mac 02:b0:6a:af:2a:d4 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10598 flower src_mac 02:27:ef:9b:d6:5e dst_mac 02:11:99:ec:44:e8 vlan_id 1588 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 10599 flower src_mac 02:fc:c4:1f:e1:fe dst_mac 02:85:bc:08:e6:ca src_ip 96.46.50.234 dst_ip 110.45.81.153 ip_proto tcp src_port 19141 dst_port 36535 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10600 flower src_mac 02:9b:13:65:af:cd dst_mac 02:8d:88:37:99:bd vlan_id 48 vlan_ethtype ip src_ip 98.230.199.128 dst_ip 35.52.85.187 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10601 flower src_mac 02:e2:a8:4b:aa:35 dst_mac 02:a4:15:ef:17:f4 vlan_id 3082 vlan_ethtype ip src_ip 95.104.242.97 dst_ip 33.12.1.167 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10602 flower src_mac 02:1f:22:ed:d6:16 dst_mac 02:5e:18:73:89:b6 src_ip 12.162.43.91 dst_ip 62.166.201.200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10603 flower src_mac 02:3a:97:72:8d:c1 dst_mac 02:d7:cf:dd:2e:03 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10604 flower src_mac 02:23:af:59:44:b9 dst_mac 02:d6:87:75:89:60 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10605 flower src_mac 02:92:64:84:96:72 dst_mac 02:c3:35:72:91:58 vlan_id 2779 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10606 flower src_mac 02:9a:a9:13:14:98 dst_mac 02:80:ca:5b:f8:45 vlan_id 1008 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10607 flower src_mac 02:db:57:be:d5:91 dst_mac 02:19:8d:3a:91:c8 vlan_id 143 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10608 flower src_mac 02:4a:a8:ef:ae:13 dst_mac 02:79:32:b2:8d:53 vlan_id 2386 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10609 flower src_mac 02:12:5c:06:b7:d2 dst_mac 02:37:d9:97:75:fe vlan_id 186 vlan_ethtype ip src_ip 89.48.15.60 dst_ip 97.204.78.159 ip_proto udp src_port 9370 dst_port 41828 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10610 flower src_mac 02:fb:6d:8b:1f:d1 dst_mac 02:f8:dd:b1:8a:70 src_ip 27.162.254.153 dst_ip 30.115.126.61 ip_proto tcp src_port 37871 dst_port 52376 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10611 flower src_mac 02:55:95:fe:48:6b dst_mac 02:6e:61:87:ad:67 src_ip 81.151.233.29 dst_ip 109.173.210.130 ip_proto icmp code 96 type 16 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10612 flower src_mac 02:26:a1:38:80:05 dst_mac 02:47:ee:b5:d8:56 src_ip 117.164.143.17 dst_ip 46.22.205.214 ip_proto icmp code 173 type 17 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10613 flower src_mac 02:f5:d0:1b:bd:6e dst_mac 02:67:e4:22:19:b3 vlan_id 339 vlan_ethtype ip src_ip 63.150.239.122 dst_ip 73.23.234.34 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10614 flower src_mac 02:1c:22:d9:36:fe dst_mac 02:bf:b1:a1:a6:08 vlan_id 1239 vlan_ethtype ip src_ip 36.89.17.174 dst_ip 19.76.106.133 ip_proto tcp src_port 8955 dst_port 62333 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10615 flower src_mac 02:b4:58:13:ee:29 dst_mac 02:0e:df:3a:ea:0a vlan_id 2405 vlan_ethtype 0x0800 src_ip 27.194.72.239 dst_ip 104.195.131.103 ip_proto udp src_port 40872 dst_port 18071 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10616 flower src_mac 02:6b:94:32:a4:32 dst_mac 02:be:27:52:8d:05 vlan_id 3011 vlan_ethtype ip src_ip 126.174.56.200 dst_ip 65.88.91.240 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10617 flower src_mac 02:ff:99:6f:a3:8e dst_mac 02:91:89:6e:8f:6b action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10618 flower src_mac 02:5f:86:cd:c3:da dst_mac 02:c2:55:57:6b:61 vlan_id 3314 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10619 flower src_mac 02:61:4e:fe:29:d9 dst_mac 02:3b:36:1f:12:d1 src_ip 55.172.157.118 dst_ip 114.156.227.62 ip_proto icmp code 17 type 15 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10620 flower src_mac 02:f5:2c:a3:68:f2 dst_mac 02:a4:61:e0:3b:62 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10621 flower src_mac 02:7e:de:5b:20:44 dst_mac 02:07:37:68:89:ed vlan_id 1180 vlan_ethtype 0x0800 src_ip 87.81.110.242 dst_ip 116.207.246.85 ip_proto tcp src_port 13379 dst_port 23814 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10622 flower src_mac 02:9f:57:a5:03:a7 dst_mac 02:54:15:bc:78:1d vlan_id 3198 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 10623 flower src_mac 02:8b:1f:67:f5:75 dst_mac 02:d0:f0:a6:6d:c8 src_ip 31.162.105.74 dst_ip 94.40.66.226 ip_proto icmp code 88 type 4 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10624 flower src_mac 02:e1:68:19:22:93 dst_mac 02:51:d5:62:93:28 vlan_id 2436 vlan_ethtype ipv4 src_ip 31.79.189.171 dst_ip 16.80.232.26 ip_proto udp src_port 53491 dst_port 6201 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10625 flower src_mac 02:0f:35:ac:f7:b9 dst_mac 02:51:d2:34:fc:c3 vlan_id 2171 vlan_ethtype ip src_ip 122.253.252.84 dst_ip 97.12.250.110 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10626 flower src_mac 02:92:7a:50:5f:9c dst_mac 02:e0:99:3a:77:33 src_ip 92.231.127.55 dst_ip 58.255.118.112 ip_proto udp src_port 21361 dst_port 50741 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10627 flower src_mac 02:32:ef:df:ad:34 dst_mac 02:65:90:7f:95:c8 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10628 flower src_mac 02:e7:6f:03:c3:91 dst_mac 02:6d:b5:ce:63:e3 vlan_id 385 vlan_ethtype 0x0800 src_ip 80.90.97.106 dst_ip 123.213.210.87 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10629 flower src_mac 02:87:86:31:28:c9 dst_mac 02:28:93:d5:76:8a action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10630 flower src_mac 02:8a:6b:01:98:b7 dst_mac 02:c0:af:36:25:6b src_ip 64.127.11.233 dst_ip 67.142.2.200 ip_proto icmp code 174 type 5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10631 flower src_mac 02:b6:c8:09:13:35 dst_mac 02:e1:97:ff:a1:54 vlan_id 2388 vlan_ethtype ip src_ip 44.151.143.140 dst_ip 24.18.102.65 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10632 flower src_mac 02:e2:26:a2:a8:0a dst_mac 02:c1:ca:10:b5:c0 vlan_id 3960 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10633 flower src_mac 02:82:cd:22:1d:78 dst_mac 02:2f:a1:a9:9f:f4 vlan_id 1342 vlan_ethtype 0x0800 src_ip 82.4.164.84 dst_ip 43.79.136.3 ip_proto udp src_port 47470 dst_port 23118 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10634 flower src_mac 02:67:d4:bf:23:c1 dst_mac 02:4e:e1:09:08:f1 vlan_id 988 vlan_ethtype ip src_ip 113.130.4.180 dst_ip 77.63.11.175 action drop && tc filter add dev swp1 ingress protocol ip pref 10635 flower src_mac 02:e6:9c:6b:3b:12 dst_mac 02:7a:7a:6b:62:03 src_ip 85.221.40.117 dst_ip 23.1.128.171 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10636 flower src_mac 02:86:a0:23:8f:13 dst_mac 02:a4:c6:af:08:12 vlan_id 2086 vlan_ethtype ip src_ip 104.116.55.199 dst_ip 108.8.176.193 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10637 flower src_mac 02:f5:b5:42:93:4d dst_mac 02:e0:66:5d:67:19 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10638 flower src_mac 02:ad:68:56:33:18 dst_mac 02:61:c4:8c:de:74 vlan_id 943 vlan_ethtype ipv4 src_ip 34.30.112.42 dst_ip 97.211.103.111 ip_proto tcp src_port 41860 dst_port 18290 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10639 flower src_mac 02:19:d6:69:de:b5 dst_mac 02:5b:f6:86:60:64 vlan_id 453 vlan_ethtype 0x0800 src_ip 37.177.125.147 dst_ip 106.83.138.132 ip_proto udp src_port 37952 dst_port 38152 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10640 flower src_mac 02:11:9e:c9:86:61 dst_mac 02:fb:58:46:27:be action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10641 flower src_mac 02:ed:f8:97:66:ea dst_mac 02:17:03:66:2b:e3 vlan_id 1131 vlan_ethtype ipv4 src_ip 26.232.78.212 dst_ip 101.135.35.177 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10642 flower src_mac 02:85:fc:ad:db:c3 dst_mac 02:3a:3d:b7:3f:db vlan_id 1924 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 10643 flower src_mac 02:27:20:f7:29:56 dst_mac 02:52:f5:2c:1f:e0 src_ip 39.126.48.82 dst_ip 34.80.107.188 ip_proto udp src_port 15887 dst_port 58733 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10644 flower src_mac 02:59:7c:d6:15:19 dst_mac 02:69:55:a0:1e:18 vlan_id 296 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10645 flower src_mac 02:dd:3e:99:7c:a7 dst_mac 02:0d:8b:b2:37:3f vlan_id 2665 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10646 flower src_mac 02:d4:56:76:61:66 dst_mac 02:12:22:33:16:34 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10647 flower src_mac 02:e3:87:25:e1:a3 dst_mac 02:31:ce:bd:35:12 src_ip 86.176.103.41 dst_ip 83.73.132.242 ip_proto udp src_port 2527 dst_port 64734 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10648 flower src_mac 02:43:41:cf:d3:05 dst_mac 02:17:90:ac:db:0b vlan_id 1054 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10649 flower src_mac 02:5d:3b:1e:03:b3 dst_mac 02:90:39:53:c8:36 vlan_id 654 vlan_ethtype 0x0800 src_ip 71.162.189.116 dst_ip 38.49.166.73 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10650 flower src_mac 02:72:8c:e2:4d:d8 dst_mac 02:c5:e7:71:c7:3a vlan_id 338 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10651 flower src_mac 02:92:99:a8:40:73 dst_mac 02:f5:54:46:5c:57 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10652 flower src_mac 02:90:dc:cc:b5:1d dst_mac 02:73:fd:91:ce:32 vlan_id 2662 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10653 flower src_mac 02:15:e7:bc:be:48 dst_mac 02:32:96:f9:9c:06 src_ip 126.237.212.201 dst_ip 12.211.189.132 ip_proto udp src_port 48362 dst_port 41855 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10654 flower src_mac 02:45:c5:31:f8:f3 dst_mac 02:d7:df:d4:31:43 src_ip 43.137.84.141 dst_ip 38.167.142.178 ip_proto icmp code 17 type 18 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10655 flower src_mac 02:74:a3:ca:b8:67 dst_mac 02:a7:72:8c:9c:5c vlan_id 1570 vlan_ethtype 0x0800 src_ip 76.194.199.234 dst_ip 76.66.141.89 ip_proto tcp src_port 6594 dst_port 12087 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10656 flower src_mac 02:78:c1:41:7f:86 dst_mac 02:2e:96:d4:84:f9 src_ip 36.217.124.168 dst_ip 89.69.28.11 ip_proto udp src_port 46128 dst_port 60637 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10657 flower src_mac 02:fa:f0:b0:d6:12 dst_mac 02:bf:46:14:d8:b8 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10658 flower src_mac 02:f2:cb:87:f8:01 dst_mac 02:37:9e:5d:86:4c vlan_id 2598 vlan_ethtype ip src_ip 28.151.255.109 dst_ip 62.142.10.136 ip_proto tcp src_port 50681 dst_port 53822 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10659 flower src_mac 02:52:c1:e4:47:12 dst_mac 02:5a:71:b0:36:e9 vlan_id 3498 vlan_ethtype 0x0800 src_ip 34.252.163.63 dst_ip 57.248.68.3 ip_proto tcp src_port 45895 dst_port 29268 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10660 flower src_mac 02:2f:60:fc:e4:41 dst_mac 02:6d:47:ba:8d:a4 vlan_id 1433 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10661 flower src_mac 02:11:ac:0e:0e:94 dst_mac 02:f8:f1:29:11:9b vlan_id 2128 vlan_ethtype 0x0800 src_ip 67.177.159.96 dst_ip 78.144.160.47 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10662 flower src_mac 02:d3:2c:e5:68:0e dst_mac 02:ac:61:c2:00:ca action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10663 flower src_mac 02:10:c9:d5:32:66 dst_mac 02:be:0b:f4:c8:8b action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10664 flower src_mac 02:e5:28:37:5a:b0 dst_mac 02:68:80:e4:ee:a3 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10665 flower src_mac 02:cf:9d:b0:d3:54 dst_mac 02:26:ba:b8:aa:34 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10666 flower src_mac 02:6d:66:c4:a7:10 dst_mac 02:33:4c:7c:68:4c vlan_id 1899 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10667 flower src_mac 02:48:57:c5:4f:46 dst_mac 02:1c:8d:34:31:b6 vlan_id 3964 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10668 flower src_mac 02:8a:a4:19:16:f0 dst_mac 02:50:7b:95:7e:3b vlan_id 2896 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10669 flower src_mac 02:cf:37:5c:ae:af dst_mac 02:84:77:55:78:b4 vlan_id 2216 vlan_ethtype ipv4 src_ip 114.85.118.237 dst_ip 29.170.76.183 ip_proto tcp src_port 52312 dst_port 7663 action trap && tc filter add dev swp1 ingress protocol ip pref 10670 flower src_mac 02:d1:11:e8:a5:b2 dst_mac 02:8f:fd:4f:e1:af src_ip 76.166.154.32 dst_ip 15.214.194.247 ip_proto icmp code 17 type 14 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10671 flower src_mac 02:0f:fb:08:18:43 dst_mac 02:e1:1a:11:a2:fc action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10672 flower src_mac 02:25:d4:86:33:00 dst_mac 02:95:1e:ad:a6:bc src_ip 111.209.27.215 dst_ip 109.19.196.225 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10673 flower src_mac 02:1c:a2:c9:40:6d dst_mac 02:03:2b:12:c4:18 src_ip 125.119.219.183 dst_ip 99.34.167.160 ip_proto icmp code 139 type 0 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10674 flower src_mac 02:83:e7:48:89:2f dst_mac 02:99:6b:8b:ae:06 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10675 flower src_mac 02:43:35:22:6d:43 dst_mac 02:54:ae:8e:88:57 vlan_id 1564 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 10676 flower src_mac 02:c5:e0:a3:b5:ef dst_mac 02:0e:69:62:c8:17 src_ip 64.67.123.3 dst_ip 30.223.150.1 ip_proto tcp src_port 4356 dst_port 37882 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10677 flower src_mac 02:6f:53:40:0d:a0 dst_mac 02:1d:5f:78:f8:d1 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10678 flower src_mac 02:3b:c6:f4:e0:b8 dst_mac 02:59:73:85:4e:c5 src_ip 22.166.38.215 dst_ip 89.250.54.113 ip_proto udp src_port 34949 dst_port 45437 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10679 flower src_mac 02:00:34:64:b1:a4 dst_mac 02:67:c3:25:67:a2 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10680 flower src_mac 02:1e:23:d9:2c:75 dst_mac 02:22:3a:c5:ea:9c action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10681 flower src_mac 02:4b:2b:6c:e8:e4 dst_mac 02:34:9b:39:df:d5 vlan_id 132 vlan_ethtype 0x0800 src_ip 11.244.124.201 dst_ip 64.31.236.32 ip_proto udp src_port 41940 dst_port 8534 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10682 flower src_mac 02:0e:7f:d8:28:7a dst_mac 02:e6:45:31:b4:ab action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10683 flower src_mac 02:9a:09:88:18:f7 dst_mac 02:df:49:6b:0c:79 vlan_id 3159 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10684 flower src_mac 02:f0:85:69:45:58 dst_mac 02:00:a9:d3:c0:c7 src_ip 69.242.140.36 dst_ip 41.121.126.27 ip_proto tcp src_port 38343 dst_port 4537 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10685 flower src_mac 02:eb:73:fc:10:4b dst_mac 02:95:0c:6f:85:5a action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10686 flower src_mac 02:60:71:a8:c3:7c dst_mac 02:1d:a0:e1:c6:03 vlan_id 1126 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10687 flower src_mac 02:15:61:cc:3b:a3 dst_mac 02:3d:5c:fc:37:88 vlan_id 3557 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10688 flower src_mac 02:cb:99:83:ad:ee dst_mac 02:a8:b7:2a:57:b3 vlan_id 2680 vlan_ethtype 0x0800 src_ip 108.203.135.75 dst_ip 121.161.171.61 ip_proto tcp src_port 7270 dst_port 3165 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10689 flower src_mac 02:e3:ac:cb:3b:85 dst_mac 02:ee:f2:00:08:59 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10690 flower src_mac 02:12:04:ee:dc:8d dst_mac 02:49:a7:ba:2d:af vlan_id 3665 vlan_ethtype 0x0800 src_ip 107.239.223.73 dst_ip 114.176.45.127 ip_proto udp src_port 1699 dst_port 32548 action drop && tc filter add dev swp1 ingress protocol ip pref 10691 flower src_mac 02:49:81:6d:52:6d dst_mac 02:ae:7d:11:b4:90 src_ip 32.65.250.187 dst_ip 117.228.12.186 ip_proto icmp code 187 type 14 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10692 flower src_mac 02:a7:0a:1c:18:c5 dst_mac 02:63:71:b4:3b:8c vlan_id 155 vlan_ethtype ipv4 src_ip 19.242.63.79 dst_ip 19.172.52.78 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10693 flower src_mac 02:66:84:57:ae:75 dst_mac 02:03:1a:5a:b6:c4 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10694 flower src_mac 02:32:e8:8c:e9:ac dst_mac 02:95:10:a0:47:77 vlan_id 2745 vlan_ethtype ipv4 src_ip 11.7.179.95 dst_ip 75.52.173.94 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10695 flower src_mac 02:ef:27:ac:3f:ad dst_mac 02:bd:36:45:09:cd vlan_id 1416 vlan_ethtype 0x0800 src_ip 22.70.255.207 dst_ip 44.157.216.136 ip_proto tcp src_port 21817 dst_port 15600 action trap && tc filter add dev swp1 ingress protocol ip pref 10696 flower src_mac 02:d6:01:b4:fb:99 dst_mac 02:3a:7b:6a:15:57 src_ip 29.221.84.39 dst_ip 28.197.91.163 ip_proto icmp code 128 type 11 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10697 flower src_mac 02:24:4d:a5:1f:62 dst_mac 02:8e:d7:b1:f9:41 src_ip 76.128.186.7 dst_ip 57.218.235.236 ip_proto icmp code 148 type 15 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10698 flower src_mac 02:ab:ca:e2:32:fc dst_mac 02:71:84:bf:16:0a action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10699 flower src_mac 02:10:40:c0:7b:b5 dst_mac 02:a0:2c:7a:10:b2 vlan_id 377 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10700 flower src_mac 02:3a:e0:61:10:16 dst_mac 02:13:ca:6c:6c:13 src_ip 31.242.193.143 dst_ip 50.128.168.58 ip_proto icmp code 229 type 4 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10701 flower src_mac 02:ff:7a:9c:6a:78 dst_mac 02:bb:c2:85:59:a4 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10702 flower src_mac 02:b4:c2:e7:b4:c6 dst_mac 02:a6:92:60:f0:82 src_ip 58.105.223.69 dst_ip 81.216.27.75 ip_proto udp src_port 35302 dst_port 37322 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10703 flower src_mac 02:0c:2d:ce:13:65 dst_mac 02:a1:34:93:3b:7b action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10704 flower src_mac 02:3d:be:43:c9:94 dst_mac 02:7a:3f:a8:82:4f vlan_id 1480 vlan_ethtype ip src_ip 43.191.220.58 dst_ip 26.128.75.70 action pass && tc filter add dev swp1 ingress protocol ip pref 10705 flower src_mac 02:75:76:92:c6:28 dst_mac 02:29:1e:6c:7b:9c src_ip 25.153.141.137 dst_ip 52.49.172.172 ip_proto tcp src_port 11248 dst_port 1532 action pass && tc filter add dev swp1 ingress protocol ip pref 10706 flower src_mac 02:65:21:de:8b:21 dst_mac 02:ec:40:68:dd:be src_ip 59.176.190.232 dst_ip 115.71.156.165 ip_proto icmp code 255 type 17 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10707 flower src_mac 02:db:06:88:53:86 dst_mac 02:6d:17:93:fb:a5 vlan_id 1608 vlan_ethtype ip src_ip 103.71.24.25 dst_ip 18.18.101.31 ip_proto udp src_port 36372 dst_port 36336 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10708 flower src_mac 02:60:65:e8:ad:41 dst_mac 02:ba:f2:92:8c:8a action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10709 flower src_mac 02:71:42:42:de:2f dst_mac 02:7e:e6:f3:eb:1b src_ip 52.132.211.244 dst_ip 102.14.38.187 ip_proto icmp code 115 type 18 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10710 flower src_mac 02:6a:4a:f5:c5:d0 dst_mac 02:5a:69:18:c9:ed vlan_id 846 vlan_ethtype 0x0800 src_ip 89.59.17.199 dst_ip 49.103.83.17 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10711 flower src_mac 02:03:47:18:2a:92 dst_mac 02:d2:00:da:d6:b0 vlan_id 3430 vlan_ethtype ipv4 src_ip 66.107.233.232 dst_ip 93.246.30.200 ip_proto tcp src_port 52858 dst_port 44191 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10712 flower src_mac 02:7b:66:17:15:02 dst_mac 02:fd:68:c9:2f:44 vlan_id 1718 vlan_ethtype 0x0800 src_ip 50.78.25.43 dst_ip 60.232.117.41 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10713 flower src_mac 02:32:61:b9:4e:9f dst_mac 02:bd:8a:1d:ca:18 vlan_id 721 vlan_ethtype ipv4 src_ip 67.215.198.188 dst_ip 76.250.203.173 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10714 flower src_mac 02:09:0e:50:fb:75 dst_mac 02:83:d4:26:2d:2a vlan_id 515 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10715 flower src_mac 02:4a:3a:fd:61:39 dst_mac 02:dd:a1:55:8d:6e vlan_id 3177 vlan_ethtype 0x0800 src_ip 48.28.138.180 dst_ip 63.56.254.74 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10716 flower src_mac 02:b5:62:79:cf:c6 dst_mac 02:8b:c0:10:0b:34 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10717 flower src_mac 02:55:26:b1:7c:2a dst_mac 02:af:40:dd:55:68 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10718 flower src_mac 02:b8:85:bc:09:77 dst_mac 02:a9:02:21:56:1a vlan_id 1345 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10719 flower src_mac 02:af:fa:b8:c6:95 dst_mac 02:2a:ce:8a:e3:ce vlan_id 4049 vlan_ethtype ip src_ip 42.63.48.52 dst_ip 102.83.19.135 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10720 flower src_mac 02:70:76:77:b6:dd dst_mac 02:8c:56:53:a8:ef vlan_id 2106 vlan_ethtype ipv4 src_ip 117.176.141.38 dst_ip 65.47.79.161 ip_proto tcp src_port 52674 dst_port 2156 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10721 flower src_mac 02:1b:7b:93:c6:68 dst_mac 02:74:30:65:3c:9b src_ip 88.139.150.161 dst_ip 100.159.45.181 ip_proto tcp src_port 50596 dst_port 7389 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10722 flower src_mac 02:b7:8f:70:e0:45 dst_mac 02:0c:c0:58:b3:85 vlan_id 3960 vlan_ethtype ip src_ip 45.216.59.17 dst_ip 121.60.48.184 ip_proto udp src_port 17498 dst_port 43704 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10723 flower src_mac 02:44:5c:47:83:ba dst_mac 02:85:4f:0b:96:ba vlan_id 3733 vlan_ethtype ipv4 src_ip 63.117.246.98 dst_ip 12.65.37.69 ip_proto tcp src_port 61939 dst_port 58848 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10724 flower src_mac 02:08:7e:78:92:20 dst_mac 02:4f:51:b1:62:14 vlan_id 3409 vlan_ethtype ip src_ip 89.138.45.22 dst_ip 66.188.207.24 ip_proto tcp src_port 35933 dst_port 902 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10725 flower src_mac 02:f0:1f:61:00:f0 dst_mac 02:6f:8f:07:29:70 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10726 flower src_mac 02:a8:9d:29:2e:98 dst_mac 02:e4:a4:f0:04:3c src_ip 101.138.32.117 dst_ip 43.169.51.122 ip_proto icmp code 118 type 16 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10727 flower src_mac 02:ed:65:aa:5f:f5 dst_mac 02:a6:ae:d1:57:f7 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10728 flower src_mac 02:97:fd:3b:eb:44 dst_mac 02:4d:3b:75:0c:f0 vlan_id 3215 vlan_ethtype ip src_ip 37.140.15.138 dst_ip 49.146.245.166 ip_proto udp src_port 2799 dst_port 63852 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10729 flower src_mac 02:a4:a0:db:c2:ad dst_mac 02:22:d6:2d:56:1d vlan_id 3755 vlan_ethtype 0x0800 src_ip 43.4.198.139 dst_ip 74.52.153.103 action drop && tc filter add dev swp1 ingress protocol ip pref 10730 flower src_mac 02:2c:4d:7f:bb:f2 dst_mac 02:38:1e:79:a0:9d src_ip 40.43.211.247 dst_ip 26.143.209.34 ip_proto udp src_port 44443 dst_port 5037 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10731 flower src_mac 02:40:7f:0c:1b:24 dst_mac 02:56:d4:09:74:19 src_ip 118.44.19.74 dst_ip 76.99.12.246 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10732 flower src_mac 02:59:51:68:04:ae dst_mac 02:fc:af:d8:da:3e vlan_id 3290 vlan_ethtype ip src_ip 57.112.75.87 dst_ip 100.123.62.4 action pass && tc filter add dev swp1 ingress protocol ip pref 10733 flower src_mac 02:37:24:0c:21:03 dst_mac 02:2f:61:a9:8f:77 src_ip 100.173.53.69 dst_ip 33.60.197.244 ip_proto tcp src_port 26258 dst_port 64504 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10734 flower src_mac 02:89:79:fd:b0:91 dst_mac 02:94:c2:69:4b:8e vlan_id 2902 vlan_ethtype ip src_ip 57.16.6.172 dst_ip 46.180.85.153 ip_proto tcp src_port 33816 dst_port 3818 action pass && tc filter add dev swp1 ingress protocol ip pref 10735 flower src_mac 02:b0:7c:77:6e:3c dst_mac 02:b3:5c:e6:7f:17 src_ip 114.217.219.86 dst_ip 24.238.7.186 ip_proto tcp src_port 30290 dst_port 14867 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10736 flower src_mac 02:c7:5c:d1:fd:51 dst_mac 02:fc:d5:79:3a:cd vlan_id 811 vlan_ethtype ipv4 src_ip 94.87.46.114 dst_ip 69.131.95.53 ip_proto udp src_port 24109 dst_port 51571 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10737 flower src_mac 02:11:d0:33:09:73 dst_mac 02:a8:11:fa:29:52 vlan_id 105 vlan_ethtype ip src_ip 69.48.86.100 dst_ip 74.192.145.7 ip_proto tcp src_port 40996 dst_port 1898 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10738 flower src_mac 02:ca:d4:b5:ff:fb dst_mac 02:e0:10:0d:af:e9 vlan_id 1094 vlan_ethtype ipv4 src_ip 100.26.181.55 dst_ip 91.150.99.100 ip_proto tcp src_port 50011 dst_port 9590 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10739 flower src_mac 02:b8:fd:89:bc:90 dst_mac 02:bd:28:67:bb:fc vlan_id 2035 vlan_ethtype 0x0800 src_ip 74.57.43.194 dst_ip 46.100.30.224 ip_proto udp src_port 42785 dst_port 60542 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10740 flower src_mac 02:7c:e2:b2:e2:28 dst_mac 02:4d:b6:f3:f8:c6 src_ip 95.103.111.170 dst_ip 33.22.134.10 ip_proto icmp code 197 type 5 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10741 flower src_mac 02:5c:17:02:62:22 dst_mac 02:47:18:d2:e8:06 src_ip 51.55.139.40 dst_ip 125.153.99.133 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10742 flower src_mac 02:54:97:1f:19:df dst_mac 02:43:6d:3b:d1:85 src_ip 85.174.22.9 dst_ip 95.254.203.160 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10743 flower src_mac 02:39:21:0f:30:0d dst_mac 02:69:b7:5b:df:a4 src_ip 79.72.29.107 dst_ip 100.204.66.138 ip_proto icmp code 156 type 12 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10744 flower src_mac 02:ee:66:a8:4e:f1 dst_mac 02:74:66:8e:6a:8e vlan_id 440 vlan_ethtype ipv4 src_ip 94.224.151.71 dst_ip 32.156.182.93 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10745 flower src_mac 02:cf:fd:59:15:5a dst_mac 02:2d:79:85:e8:80 vlan_id 3982 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10746 flower src_mac 02:2f:10:bd:08:c8 dst_mac 02:3d:96:ce:53:ad action pass && tc filter add dev swp1 ingress protocol ip pref 10747 flower src_mac 02:0c:fd:97:3e:75 dst_mac 02:98:3e:34:f1:73 src_ip 69.170.184.197 dst_ip 51.26.146.82 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10748 flower src_mac 02:10:52:49:b8:03 dst_mac 02:8a:43:3a:43:8b vlan_id 3903 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10749 flower src_mac 02:b7:c4:a6:d7:b8 dst_mac 02:a0:2b:68:09:13 vlan_id 3194 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10750 flower src_mac 02:ca:c4:53:29:6b dst_mac 02:ea:d3:26:06:3b vlan_id 1586 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10751 flower src_mac 02:f8:99:91:1b:08 dst_mac 02:08:ec:c0:5e:8d src_ip 120.194.111.112 dst_ip 110.79.41.244 ip_proto udp src_port 34300 dst_port 14819 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10752 flower src_mac 02:c3:4b:c6:db:09 dst_mac 02:36:75:0b:f5:86 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10753 flower src_mac 02:38:b8:a7:40:43 dst_mac 02:77:58:87:8a:5b action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10754 flower src_mac 02:e1:37:2e:88:5b dst_mac 02:c9:d3:e3:ee:80 vlan_id 2273 vlan_ethtype ip src_ip 120.157.129.129 dst_ip 100.22.115.70 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10755 flower src_mac 02:dd:cc:cf:25:02 dst_mac 02:bd:64:c7:9b:98 vlan_id 863 vlan_ethtype ip src_ip 39.183.183.85 dst_ip 19.117.99.195 ip_proto tcp src_port 16726 dst_port 16043 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10756 flower src_mac 02:4e:23:4c:0e:02 dst_mac 02:fd:75:12:12:df src_ip 16.236.185.225 dst_ip 18.58.113.175 ip_proto tcp src_port 40555 dst_port 37700 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10757 flower src_mac 02:eb:2c:43:f7:80 dst_mac 02:22:5c:47:c6:c8 vlan_id 768 vlan_ethtype 0x0800 src_ip 64.139.139.104 dst_ip 122.59.66.245 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10758 flower src_mac 02:ae:69:66:13:85 dst_mac 02:c8:18:10:78:da vlan_id 3670 vlan_ethtype ip src_ip 42.128.90.100 dst_ip 65.234.15.69 action pass && tc filter add dev swp1 ingress protocol ip pref 10759 flower src_mac 02:ab:63:3b:bb:9e dst_mac 02:8d:1c:64:ef:22 src_ip 108.133.221.20 dst_ip 35.12.229.187 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10760 flower src_mac 02:df:81:0a:90:f9 dst_mac 02:eb:35:79:13:35 vlan_id 698 vlan_ethtype 0x0800 src_ip 27.27.131.144 dst_ip 112.53.100.108 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10761 flower src_mac 02:f4:6b:b0:5d:75 dst_mac 02:1f:6f:9c:2f:b3 vlan_id 3035 vlan_ethtype ip src_ip 94.49.235.27 dst_ip 46.71.25.71 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10762 flower src_mac 02:66:d1:3e:62:f2 dst_mac 02:05:56:08:7c:95 vlan_id 2914 vlan_ethtype 0x0800 src_ip 65.198.255.81 dst_ip 17.14.180.191 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10763 flower src_mac 02:3d:af:24:42:03 dst_mac 02:c6:90:7c:d6:f3 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10764 flower src_mac 02:12:7e:e8:a0:65 dst_mac 02:84:d9:f2:d6:bc vlan_id 3499 vlan_ethtype ip src_ip 78.172.123.174 dst_ip 109.153.145.102 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10765 flower src_mac 02:0f:f0:21:7b:45 dst_mac 02:4c:e7:1c:52:cd vlan_id 3540 vlan_ethtype 0x0800 src_ip 34.242.98.197 dst_ip 94.48.167.227 ip_proto udp src_port 62502 dst_port 32309 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10766 flower src_mac 02:b6:36:9a:05:09 dst_mac 02:d0:46:04:35:53 vlan_id 1404 vlan_ethtype ipv4 src_ip 99.35.194.117 dst_ip 93.158.108.40 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10767 flower src_mac 02:ab:b5:37:01:c7 dst_mac 02:f0:dc:47:4b:65 vlan_id 1956 vlan_ethtype 0x0800 src_ip 45.13.239.20 dst_ip 68.74.163.124 ip_proto udp src_port 22131 dst_port 59846 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10768 flower src_mac 02:af:7a:d6:12:a5 dst_mac 02:fb:a0:48:de:b0 vlan_id 2477 vlan_ethtype ipv4 src_ip 115.197.161.172 dst_ip 24.64.146.151 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10769 flower src_mac 02:e1:10:d4:f1:cb dst_mac 02:74:2f:a6:3b:71 vlan_id 138 vlan_ethtype ip src_ip 45.140.71.145 dst_ip 50.242.47.150 ip_proto tcp src_port 21652 dst_port 8049 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10770 flower src_mac 02:60:c6:d4:e9:4b dst_mac 02:ad:51:23:24:d4 vlan_id 2359 vlan_ethtype 0x0800 src_ip 14.0.187.151 dst_ip 44.138.181.182 ip_proto tcp src_port 35814 dst_port 30541 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10771 flower src_mac 02:63:ac:55:9c:72 dst_mac 02:61:e4:b9:05:bb vlan_id 3768 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10772 flower src_mac 02:22:dd:c9:7a:ef dst_mac 02:d4:60:aa:0c:24 vlan_id 950 vlan_ethtype ip src_ip 107.142.39.30 dst_ip 103.200.112.130 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10773 flower src_mac 02:fe:f2:23:03:5b dst_mac 02:c1:95:c1:83:6b src_ip 20.26.117.166 dst_ip 68.25.205.222 ip_proto icmp code 123 type 18 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10774 flower src_mac 02:f5:1c:55:eb:59 dst_mac 02:e4:3d:b7:a1:c9 vlan_id 3817 vlan_ethtype ipv4 src_ip 82.227.13.11 dst_ip 14.3.87.200 ip_proto tcp src_port 41102 dst_port 1530 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10775 flower src_mac 02:80:ff:c2:3e:c4 dst_mac 02:d2:53:a8:46:23 vlan_id 3769 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10776 flower src_mac 02:30:d4:fd:e2:b7 dst_mac 02:d7:e4:fb:67:74 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10777 flower src_mac 02:b4:cd:17:6b:b5 dst_mac 02:45:fd:93:69:5b vlan_id 1719 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10778 flower src_mac 02:3c:3c:c3:c1:ef dst_mac 02:1a:25:a5:4f:3c vlan_id 1101 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10779 flower src_mac 02:d5:07:c3:e9:36 dst_mac 02:d0:82:52:be:a9 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10780 flower src_mac 02:8c:ed:cf:f9:c7 dst_mac 02:7c:88:fa:2b:13 vlan_id 369 vlan_ethtype ip src_ip 46.35.16.131 dst_ip 121.172.237.178 ip_proto tcp src_port 1113 dst_port 47546 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10781 flower src_mac 02:62:84:4b:bc:ec dst_mac 02:cd:8e:75:5a:73 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10782 flower src_mac 02:a0:0e:d1:60:0a dst_mac 02:7a:c4:91:96:d0 vlan_id 2617 vlan_ethtype 0x0800 src_ip 14.222.73.71 dst_ip 79.39.93.104 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10783 flower src_mac 02:59:4e:58:aa:68 dst_mac 02:cf:88:d9:77:9b action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10784 flower src_mac 02:e5:b6:4b:77:2b dst_mac 02:51:1c:4e:f1:55 src_ip 35.118.237.55 dst_ip 109.140.150.225 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10785 flower src_mac 02:dd:a5:bd:00:dc dst_mac 02:bd:ca:2a:d9:00 vlan_id 2529 vlan_ethtype 0x0800 src_ip 17.203.248.181 dst_ip 91.179.235.166 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10786 flower src_mac 02:cc:04:a5:bb:6e dst_mac 02:ce:33:f1:2b:37 vlan_id 43 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10787 flower src_mac 02:e6:34:28:c4:ef dst_mac 02:45:f7:bc:b8:3a vlan_id 370 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10788 flower src_mac 02:dc:9c:00:9d:e5 dst_mac 02:86:b6:e0:42:ee action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10789 flower src_mac 02:7b:2e:c6:d6:1e dst_mac 02:f6:2a:f4:44:b3 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10790 flower src_mac 02:17:46:54:e9:ad dst_mac 02:74:69:51:88:f9 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10791 flower src_mac 02:4a:f1:f7:18:04 dst_mac 02:0c:85:42:df:2a vlan_id 509 vlan_ethtype ipv4 src_ip 77.140.146.151 dst_ip 75.28.184.87 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10792 flower src_mac 02:ec:f8:99:23:54 dst_mac 02:06:68:32:bb:65 vlan_id 2374 vlan_ethtype ipv4 src_ip 72.32.35.99 dst_ip 32.139.51.99 ip_proto udp src_port 13644 dst_port 39145 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10793 flower src_mac 02:90:93:0b:1e:c3 dst_mac 02:38:a0:c9:e0:57 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10794 flower src_mac 02:dd:75:a0:9c:a9 dst_mac 02:30:c3:e5:20:40 vlan_id 1459 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10795 flower src_mac 02:18:ce:1d:a4:4f dst_mac 02:7d:87:d5:03:08 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10796 flower src_mac 02:14:33:0d:ba:a2 dst_mac 02:6b:6e:d4:42:20 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10797 flower src_mac 02:a3:de:a8:f5:5d dst_mac 02:dd:77:be:2d:11 vlan_id 3729 vlan_ethtype 0x0800 src_ip 33.176.48.175 dst_ip 53.47.147.73 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10798 flower src_mac 02:ad:36:4e:f0:a7 dst_mac 02:ad:8e:82:21:db action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10799 flower src_mac 02:c7:98:ad:07:49 dst_mac 02:ba:59:66:ff:b2 vlan_id 2597 vlan_ethtype 0x9100 action pass INFO asyncssh:logging.py:92 [conn=24, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=6] Command: tc filter add dev swp1 ingress protocol 802.1q pref 10400 flower src_mac 02:a2:4c:d3:0d:b3 dst_mac 02:90:72:c1:94:34 vlan_id 1877 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10401 flower src_mac 02:8e:db:52:f6:c3 dst_mac 02:a2:45:c4:fa:47 src_ip 13.218.35.87 dst_ip 125.52.67.174 ip_proto icmp code 73 type 5 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10402 flower src_mac 02:47:51:31:32:16 dst_mac 02:bd:58:cc:6d:18 src_ip 58.68.39.39 dst_ip 68.135.25.143 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10403 flower src_mac 02:da:2b:f2:61:f1 dst_mac 02:56:52:54:23:4d src_ip 50.205.103.37 dst_ip 100.123.220.150 ip_proto udp src_port 52667 dst_port 63340 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10404 flower src_mac 02:7b:ae:e1:38:f9 dst_mac 02:b1:3b:ed:d7:2d vlan_id 1131 vlan_ethtype ip src_ip 24.119.197.214 dst_ip 71.230.123.156 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10405 flower src_mac 02:66:ac:86:ac:d8 dst_mac 02:6f:ee:20:7e:84 vlan_id 324 vlan_ethtype 0x0800 src_ip 93.61.94.236 dst_ip 45.4.18.70 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10406 flower src_mac 02:f6:7b:d0:1e:50 dst_mac 02:d5:d8:ed:2e:76 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10407 flower src_mac 02:09:44:c8:ec:42 dst_mac 02:e3:4a:9d:48:e0 vlan_id 2019 vlan_ethtype 0x0800 src_ip 69.246.196.93 dst_ip 30.22.206.14 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10408 flower src_mac 02:01:f2:e5:79:0b dst_mac 02:39:23:70:5e:54 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10409 flower src_mac 02:67:47:cf:c8:1f dst_mac 02:59:12:42:33:18 vlan_id 3954 vlan_ethtype ipv4 src_ip 100.198.224.65 dst_ip 21.231.90.22 ip_proto udp src_port 8161 dst_port 27316 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10410 flower src_mac 02:e3:47:aa:c6:75 dst_mac 02:ae:02:ef:1c:6c src_ip 69.75.226.118 dst_ip 38.202.252.87 ip_proto udp src_port 46929 dst_port 60006 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10411 flower src_mac 02:3f:8e:00:3b:16 dst_mac 02:75:43:be:c6:a5 vlan_id 2833 vlan_ethtype 0x0800 src_ip 61.152.204.90 dst_ip 100.13.191.83 ip_proto tcp src_port 7156 dst_port 30164 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10412 flower src_mac 02:20:85:3b:83:dd dst_mac 02:9b:02:cc:42:63 vlan_id 827 vlan_ethtype ipv4 src_ip 121.192.254.182 dst_ip 87.53.2.51 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10413 flower src_mac 02:4c:0e:47:55:54 dst_mac 02:a5:6b:4f:95:9c vlan_id 1927 vlan_ethtype ipv4 src_ip 73.56.74.48 dst_ip 38.215.120.166 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10414 flower src_mac 02:d9:e9:51:f9:c9 dst_mac 02:5a:30:8b:1e:c0 src_ip 70.58.148.136 dst_ip 33.113.15.243 ip_proto tcp src_port 723 dst_port 33786 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10415 flower src_mac 02:a3:aa:1d:c9:ae dst_mac 02:cb:43:9a:fb:1d vlan_id 2708 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10416 flower src_mac 02:0f:d2:34:e9:d2 dst_mac 02:fd:e9:4e:b6:61 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10417 flower src_mac 02:b6:74:88:1e:1c dst_mac 02:5e:f4:20:19:bb vlan_id 3983 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10418 flower src_mac 02:55:1e:b8:26:02 dst_mac 02:0f:78:dd:ec:c9 vlan_id 1650 vlan_ethtype ipv4 src_ip 126.216.99.24 dst_ip 121.186.74.41 ip_proto udp src_port 25036 dst_port 17587 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10419 flower src_mac 02:40:5c:0f:4a:df dst_mac 02:72:89:98:22:6b vlan_id 911 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10420 flower src_mac 02:46:29:60:1f:38 dst_mac 02:b8:b0:29:a5:95 vlan_id 3604 vlan_ethtype ip src_ip 85.184.121.211 dst_ip 29.75.59.81 ip_proto udp src_port 46651 dst_port 61863 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10421 flower src_mac 02:cf:a2:50:db:c3 dst_mac 02:f2:9a:f8:99:2e action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10422 flower src_mac 02:b4:17:0e:14:f3 dst_mac 02:0c:82:e2:68:12 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10423 flower src_mac 02:d5:4e:d2:04:a0 dst_mac 02:6c:0b:50:4f:13 vlan_id 1262 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10424 flower src_mac 02:ba:d7:60:fa:77 dst_mac 02:18:d0:6f:1a:d7 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10425 flower src_mac 02:cd:bc:01:80:0e dst_mac 02:c3:46:cd:5e:cc src_ip 18.7.120.90 dst_ip 60.184.67.81 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10426 flower src_mac 02:37:02:d8:5f:3c dst_mac 02:87:3c:7b:7a:5b vlan_id 2692 vlan_ethtype ip src_ip 64.28.219.98 dst_ip 48.201.78.46 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10427 flower src_mac 02:f7:82:95:34:e4 dst_mac 02:b3:d6:81:3a:0b vlan_id 75 vlan_ethtype ipv4 src_ip 37.0.202.23 dst_ip 82.231.55.41 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10428 flower src_mac 02:f8:05:88:3e:8f dst_mac 02:08:b3:48:32:54 vlan_id 3625 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10429 flower src_mac 02:0b:80:20:81:71 dst_mac 02:fa:c6:2f:83:fc src_ip 82.46.82.140 dst_ip 15.13.179.7 ip_proto udp src_port 63322 dst_port 42714 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10430 flower src_mac 02:7b:50:71:31:90 dst_mac 02:82:f0:29:b2:85 src_ip 52.182.44.223 dst_ip 81.113.70.16 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10431 flower src_mac 02:6f:1b:ee:6c:d3 dst_mac 02:c1:28:3f:c6:72 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10432 flower src_mac 02:5e:60:ad:82:b2 dst_mac 02:23:e4:43:fd:35 vlan_id 2004 vlan_ethtype 0x0800 src_ip 80.55.56.52 dst_ip 14.89.99.79 ip_proto tcp src_port 23501 dst_port 34304 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10433 flower src_mac 02:41:44:fd:c4:d6 dst_mac 02:b6:00:ad:50:8b vlan_id 3930 vlan_ethtype 0x0800 src_ip 79.166.27.37 dst_ip 81.226.188.96 ip_proto tcp src_port 10343 dst_port 29254 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10434 flower src_mac 02:a2:89:95:f2:ad dst_mac 02:08:94:58:3c:e5 vlan_id 2839 vlan_ethtype ip src_ip 60.173.160.139 dst_ip 117.95.5.124 ip_proto udp src_port 22906 dst_port 10904 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10435 flower src_mac 02:08:bf:78:93:b5 dst_mac 02:ae:34:bd:4c:f5 vlan_id 2110 vlan_ethtype 0x0800 src_ip 30.97.137.212 dst_ip 29.40.62.141 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10436 flower src_mac 02:ec:54:17:44:6d dst_mac 02:ee:34:01:de:69 vlan_id 2640 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10437 flower src_mac 02:81:09:31:12:40 dst_mac 02:4d:af:a6:9c:bc vlan_id 545 vlan_ethtype ip src_ip 37.65.24.242 dst_ip 26.148.163.185 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10438 flower src_mac 02:34:d0:39:47:d7 dst_mac 02:0d:c5:68:5f:e7 vlan_id 1663 vlan_ethtype ip src_ip 70.83.148.145 dst_ip 111.212.157.183 ip_proto udp src_port 3141 dst_port 54037 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10439 flower src_mac 02:9c:78:55:05:e5 dst_mac 02:26:2e:dd:36:6d src_ip 124.78.247.157 dst_ip 76.91.7.246 ip_proto icmp code 226 type 13 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10440 flower src_mac 02:cd:cc:b4:e6:a0 dst_mac 02:23:e0:0c:3e:17 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10441 flower src_mac 02:56:d0:4a:e3:62 dst_mac 02:4c:a4:9f:0a:07 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10442 flower src_mac 02:9c:28:dd:0c:3b dst_mac 02:32:10:1d:a9:96 src_ip 97.8.6.97 dst_ip 122.6.159.121 ip_proto udp src_port 48683 dst_port 62347 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10443 flower src_mac 02:5b:28:45:df:be dst_mac 02:5f:cb:45:94:e6 vlan_id 2543 vlan_ethtype ip src_ip 126.57.157.180 dst_ip 98.33.212.250 ip_proto tcp src_port 30227 dst_port 40897 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10444 flower src_mac 02:a7:8e:25:2e:52 dst_mac 02:92:83:f1:6e:d1 vlan_id 3564 vlan_ethtype ip src_ip 104.126.169.234 dst_ip 87.90.188.92 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10445 flower src_mac 02:bd:0c:d0:9f:b3 dst_mac 02:88:1c:18:bf:61 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10446 flower src_mac 02:61:33:05:51:1e dst_mac 02:14:9b:8f:70:26 vlan_id 386 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10447 flower src_mac 02:30:92:06:5b:20 dst_mac 02:3b:4e:d8:b0:9f action trap && tc filter add dev swp1 ingress protocol ip pref 10448 flower src_mac 02:d5:51:43:c9:6a dst_mac 02:e7:9c:1b:e7:27 src_ip 42.5.202.4 dst_ip 95.57.139.209 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10449 flower src_mac 02:06:97:5f:b3:dc dst_mac 02:83:64:52:5e:54 vlan_id 2145 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10450 flower src_mac 02:a5:88:de:5d:d3 dst_mac 02:05:f6:57:aa:32 vlan_id 2174 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10451 flower src_mac 02:e1:2b:66:e9:c9 dst_mac 02:fe:71:28:f5:b9 vlan_id 3846 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10452 flower src_mac 02:f8:e6:ff:b2:a2 dst_mac 02:47:26:59:91:ec vlan_id 2641 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10453 flower src_mac 02:36:c9:6d:84:55 dst_mac 02:8e:3d:36:06:e2 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10454 flower src_mac 02:11:c2:67:44:8d dst_mac 02:9b:4c:f4:79:5e action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10455 flower src_mac 02:df:4e:e5:31:4f dst_mac 02:c8:1e:72:da:11 vlan_id 3745 vlan_ethtype ip src_ip 11.72.41.125 dst_ip 11.112.177.58 ip_proto udp src_port 52603 dst_port 53428 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10456 flower src_mac 02:c3:c8:8e:2c:51 dst_mac 02:3c:91:78:c8:e8 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10457 flower src_mac 02:33:d2:64:fc:5f dst_mac 02:e2:cf:3e:c4:4c action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10458 flower src_mac 02:3d:cd:29:7c:e5 dst_mac 02:5e:b4:cf:c1:8d src_ip 15.63.151.92 dst_ip 26.14.148.22 ip_proto tcp src_port 63801 dst_port 61829 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10459 flower src_mac 02:d6:ee:eb:8d:65 dst_mac 02:55:49:a0:25:bf vlan_id 583 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10460 flower src_mac 02:24:e5:bf:ab:4e dst_mac 02:75:6b:96:05:2d action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10461 flower src_mac 02:77:dc:ef:f2:d7 dst_mac 02:55:ea:38:92:55 vlan_id 3075 vlan_ethtype ip src_ip 46.120.198.116 dst_ip 76.119.98.16 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10462 flower src_mac 02:63:2b:83:ef:6c dst_mac 02:a8:46:85:33:56 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10463 flower src_mac 02:81:1e:f7:e5:e2 dst_mac 02:c3:4e:5a:90:d9 vlan_id 3430 vlan_ethtype ipv4 src_ip 51.15.219.177 dst_ip 122.159.20.76 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10464 flower src_mac 02:fe:4b:d7:15:d2 dst_mac 02:f4:77:a8:51:5b vlan_id 1723 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10465 flower src_mac 02:f6:b0:6c:20:db dst_mac 02:65:08:14:a1:ce action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10466 flower src_mac 02:16:75:fb:fd:23 dst_mac 02:2e:1d:bb:e1:a5 vlan_id 982 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10467 flower src_mac 02:4e:2a:2c:15:48 dst_mac 02:46:2d:34:9a:b7 vlan_id 3627 vlan_ethtype 0x0800 src_ip 100.167.186.179 dst_ip 78.48.59.207 ip_proto udp src_port 60652 dst_port 64588 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10468 flower src_mac 02:cf:09:67:70:81 dst_mac 02:3e:e7:05:86:8a vlan_id 1636 vlan_ethtype ip src_ip 101.74.5.111 dst_ip 95.71.121.80 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10469 flower src_mac 02:6c:40:26:a3:42 dst_mac 02:41:af:b5:8a:10 vlan_id 3372 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10470 flower src_mac 02:26:a1:29:28:e2 dst_mac 02:02:85:a2:77:86 vlan_id 2851 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10471 flower src_mac 02:f7:54:de:20:2a dst_mac 02:27:de:bb:7d:d2 vlan_id 1889 vlan_ethtype ipv4 src_ip 97.26.238.148 dst_ip 110.155.61.168 ip_proto udp src_port 59117 dst_port 24478 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10472 flower src_mac 02:28:b9:6e:75:4a dst_mac 02:5e:00:81:99:53 vlan_id 1116 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10473 flower src_mac 02:0c:ac:df:0a:3e dst_mac 02:b1:28:d0:90:cb src_ip 98.92.85.176 dst_ip 71.159.250.183 action pass && tc filter add dev swp1 ingress protocol ip pref 10474 flower src_mac 02:7e:7b:bb:96:d0 dst_mac 02:ec:6e:63:4f:d1 src_ip 11.59.234.208 dst_ip 117.162.117.83 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10475 flower src_mac 02:a6:39:70:5a:3f dst_mac 02:5d:ed:d2:7e:a2 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10476 flower src_mac 02:51:20:c8:af:a3 dst_mac 02:25:20:92:0f:41 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10477 flower src_mac 02:f5:56:87:3f:df dst_mac 02:be:e3:4e:d5:e0 src_ip 32.195.98.203 dst_ip 103.230.225.80 ip_proto icmp code 55 type 15 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10478 flower src_mac 02:31:1d:bd:fd:0a dst_mac 02:f1:25:4a:c3:ea vlan_id 3636 vlan_ethtype 0x0800 src_ip 16.13.126.178 dst_ip 110.255.96.232 ip_proto tcp src_port 41187 dst_port 45465 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10479 flower src_mac 02:e4:d7:47:78:4e dst_mac 02:f5:c5:84:f2:e6 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10480 flower src_mac 02:97:c5:6e:09:bd dst_mac 02:86:33:15:0f:6a vlan_id 500 vlan_ethtype 0x0800 src_ip 44.52.114.246 dst_ip 123.87.91.68 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10481 flower src_mac 02:b2:59:92:3b:33 dst_mac 02:14:7e:8e:05:f2 vlan_id 1233 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10482 flower src_mac 02:51:34:c1:ef:d7 dst_mac 02:1a:dc:b1:b3:d5 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10483 flower src_mac 02:8b:5d:55:39:fd dst_mac 02:59:9b:cb:10:6f src_ip 20.146.56.93 dst_ip 55.63.150.48 ip_proto icmp code 109 type 13 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10484 flower src_mac 02:2c:35:c9:a4:b0 dst_mac 02:2d:61:83:8f:79 src_ip 83.176.152.244 dst_ip 110.21.212.247 ip_proto tcp src_port 727 dst_port 16100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10485 flower src_mac 02:2a:a6:93:e2:b6 dst_mac 02:12:f5:65:49:ea action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10486 flower src_mac 02:e1:27:71:47:f5 dst_mac 02:27:f0:78:94:d3 vlan_id 1794 vlan_ethtype ip src_ip 25.155.89.108 dst_ip 99.186.68.77 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10487 flower src_mac 02:f9:82:a6:3d:f9 dst_mac 02:37:9e:51:32:63 vlan_id 2078 vlan_ethtype ipv4 src_ip 110.15.140.62 dst_ip 30.90.152.69 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10488 flower src_mac 02:1f:65:c4:e0:11 dst_mac 02:ef:d6:37:6c:0c vlan_id 788 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10489 flower src_mac 02:16:7f:af:52:d6 dst_mac 02:86:87:2c:78:de vlan_id 510 vlan_ethtype 0x0800 src_ip 24.127.147.25 dst_ip 115.249.192.229 ip_proto tcp src_port 36405 dst_port 15839 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10490 flower src_mac 02:df:70:58:94:25 dst_mac 02:b0:79:f8:d7:94 src_ip 56.122.244.45 dst_ip 86.65.178.77 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10491 flower src_mac 02:17:aa:9e:67:08 dst_mac 02:81:ae:b4:f5:75 vlan_id 2199 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10492 flower src_mac 02:a7:e8:c2:1b:d1 dst_mac 02:9a:5e:d7:57:a5 vlan_id 2962 vlan_ethtype ip src_ip 60.36.105.140 dst_ip 22.155.164.250 ip_proto tcp src_port 39228 dst_port 17375 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10493 flower src_mac 02:44:8d:9d:c0:86 dst_mac 02:fe:f0:51:0c:40 src_ip 98.169.19.250 dst_ip 125.171.163.38 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10494 flower src_mac 02:a6:67:81:29:4d dst_mac 02:d2:e8:8f:af:e8 vlan_id 1483 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10495 flower src_mac 02:43:38:2c:44:2b dst_mac 02:0e:36:a6:3e:6b vlan_id 2731 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10496 flower src_mac 02:2b:c8:c8:33:f9 dst_mac 02:35:d8:71:fe:2d src_ip 113.114.218.241 dst_ip 15.67.180.151 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10497 flower src_mac 02:58:9d:95:cc:31 dst_mac 02:54:26:20:e5:7e vlan_id 3943 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10498 flower src_mac 02:83:73:2b:7f:67 dst_mac 02:70:5f:aa:d5:3c src_ip 122.65.208.71 dst_ip 26.19.113.44 ip_proto icmp code 188 type 5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10499 flower src_mac 02:55:79:73:05:b9 dst_mac 02:ee:13:5c:f5:89 vlan_id 2804 vlan_ethtype ipv4 src_ip 100.44.166.134 dst_ip 69.119.71.185 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10500 flower src_mac 02:80:35:ca:d7:76 dst_mac 02:88:2b:66:df:0a vlan_id 2401 vlan_ethtype ip src_ip 76.133.169.248 dst_ip 68.163.33.71 ip_proto udp src_port 47880 dst_port 53969 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10501 flower src_mac 02:a9:4f:83:8f:99 dst_mac 02:43:b4:0b:d0:ce action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10502 flower src_mac 02:bd:49:89:83:1e dst_mac 02:b3:8f:67:99:56 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10503 flower src_mac 02:14:9f:c7:bd:21 dst_mac 02:a4:d3:ca:75:cd src_ip 37.139.155.222 dst_ip 20.58.122.18 ip_proto icmp code 34 type 12 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10504 flower src_mac 02:ec:32:10:d0:6b dst_mac 02:1e:dc:58:2b:e9 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10505 flower src_mac 02:1c:d1:27:32:fb dst_mac 02:25:09:c3:26:fb vlan_id 1724 vlan_ethtype ip src_ip 51.153.149.232 dst_ip 27.75.175.228 ip_proto tcp src_port 52935 dst_port 32241 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10506 flower src_mac 02:a8:6d:80:68:5c dst_mac 02:91:18:6f:10:5c vlan_id 3839 vlan_ethtype ipv4 src_ip 57.29.79.109 dst_ip 65.163.20.230 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10507 flower src_mac 02:28:9a:b6:79:b8 dst_mac 02:2f:3f:60:2d:47 src_ip 91.38.138.235 dst_ip 41.13.156.176 ip_proto tcp src_port 2101 dst_port 46492 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10508 flower src_mac 02:55:59:0c:2d:23 dst_mac 02:39:89:71:42:87 vlan_id 749 vlan_ethtype ip src_ip 51.232.1.190 dst_ip 116.64.138.217 ip_proto tcp src_port 25469 dst_port 53772 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10509 flower src_mac 02:e3:e3:2a:de:2f dst_mac 02:5f:29:76:77:24 vlan_id 1311 vlan_ethtype ip src_ip 59.243.52.157 dst_ip 12.153.187.53 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10510 flower src_mac 02:da:be:9e:49:4c dst_mac 02:d1:eb:12:ad:7c vlan_id 3892 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10511 flower src_mac 02:61:48:f2:bc:d6 dst_mac 02:bf:bb:b3:c6:c4 vlan_id 2833 vlan_ethtype ipv4 src_ip 125.161.3.50 dst_ip 62.253.58.93 ip_proto tcp src_port 53673 dst_port 53432 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10512 flower src_mac 02:8a:4f:ec:20:85 dst_mac 02:52:13:bc:11:12 vlan_id 1118 vlan_ethtype ip src_ip 67.90.9.24 dst_ip 43.199.110.188 ip_proto udp src_port 34446 dst_port 7488 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10513 flower src_mac 02:8c:b0:16:5c:5b dst_mac 02:8b:93:e6:2a:86 src_ip 111.197.179.171 dst_ip 39.59.52.20 ip_proto icmp code 64 type 4 action drop && tc filter add dev swp1 ingress protocol ip pref 10514 flower src_mac 02:e9:9c:11:f7:05 dst_mac 02:57:7a:f3:61:75 src_ip 24.136.198.87 dst_ip 17.24.136.241 ip_proto tcp src_port 27613 dst_port 59234 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10515 flower src_mac 02:11:e0:1e:3c:00 dst_mac 02:7f:78:f4:10:e8 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10516 flower src_mac 02:d2:24:83:cf:c8 dst_mac 02:6d:17:79:2e:da vlan_id 1516 vlan_ethtype ipv4 src_ip 23.87.213.94 dst_ip 97.51.77.82 ip_proto udp src_port 4397 dst_port 27028 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10517 flower src_mac 02:36:0b:4c:ab:e7 dst_mac 02:d9:29:0c:e2:06 src_ip 70.235.73.224 dst_ip 120.21.229.151 ip_proto tcp src_port 54155 dst_port 11157 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10518 flower src_mac 02:b9:e6:f7:e6:64 dst_mac 02:96:4e:69:f7:dc vlan_id 2014 vlan_ethtype ip src_ip 126.201.63.143 dst_ip 57.168.136.80 ip_proto tcp src_port 27484 dst_port 31623 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10519 flower src_mac 02:8d:62:ba:f3:df dst_mac 02:64:ce:2d:02:a6 vlan_id 310 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10520 flower src_mac 02:34:56:3b:82:a7 dst_mac 02:78:9f:f9:e9:5a vlan_id 3581 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10521 flower src_mac 02:7a:68:43:c0:a1 dst_mac 02:1a:55:49:02:3c vlan_id 2289 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10522 flower src_mac 02:a7:69:2f:75:6e dst_mac 02:cc:79:26:2d:5a vlan_id 2066 vlan_ethtype ip src_ip 120.84.130.229 dst_ip 123.130.136.42 ip_proto tcp src_port 55720 dst_port 48825 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10523 flower src_mac 02:8c:f8:1d:d3:77 dst_mac 02:65:9b:6f:30:b3 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10524 flower src_mac 02:02:20:73:a4:b0 dst_mac 02:90:c5:52:c8:75 vlan_id 445 vlan_ethtype 0x0800 src_ip 49.77.122.58 dst_ip 90.13.151.36 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10525 flower src_mac 02:2e:af:41:8f:9c dst_mac 02:9c:a3:05:cd:c9 vlan_id 1956 vlan_ethtype ip src_ip 12.185.66.35 dst_ip 84.107.178.72 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10526 flower src_mac 02:74:10:d2:7f:ff dst_mac 02:24:ef:a3:49:7f action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10527 flower src_mac 02:2c:32:b1:94:f9 dst_mac 02:77:1b:ea:69:95 vlan_id 951 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10528 flower src_mac 02:d7:1a:4f:ab:d2 dst_mac 02:00:c3:f0:0e:08 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10529 flower src_mac 02:21:8e:47:c2:b7 dst_mac 02:2f:e1:a2:04:ba vlan_id 1154 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10530 flower src_mac 02:c4:b9:67:93:bd dst_mac 02:7e:4d:74:37:a0 vlan_id 1118 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10531 flower src_mac 02:ca:91:d6:b4:28 dst_mac 02:48:ef:59:84:cb vlan_id 967 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10532 flower src_mac 02:76:27:db:07:8e dst_mac 02:14:67:92:9a:d1 src_ip 121.180.17.29 dst_ip 42.43.194.85 ip_proto tcp src_port 23210 dst_port 36761 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10533 flower src_mac 02:1d:9e:7e:5a:16 dst_mac 02:e8:81:fa:3e:e6 vlan_id 1270 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 10534 flower src_mac 02:b4:d1:80:9b:e4 dst_mac 02:94:57:4e:dd:3d src_ip 36.123.180.17 dst_ip 88.162.213.189 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10535 flower src_mac 02:2a:9a:60:d0:c0 dst_mac 02:7e:38:18:58:78 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10536 flower src_mac 02:e7:95:cb:ec:fc dst_mac 02:63:d1:07:a7:e5 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10537 flower src_mac 02:6e:7a:96:b2:5c dst_mac 02:6a:b5:61:c7:be vlan_id 86 vlan_ethtype ipv4 src_ip 120.224.74.56 dst_ip 71.36.170.37 ip_proto udp src_port 16183 dst_port 44936 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10538 flower src_mac 02:cf:d0:f2:93:47 dst_mac 02:71:a6:90:ae:45 vlan_id 2963 vlan_ethtype ipv4 src_ip 16.134.239.181 dst_ip 92.200.60.111 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10539 flower src_mac 02:41:3b:0f:71:49 dst_mac 02:35:1e:5d:9c:29 vlan_id 3060 vlan_ethtype ip src_ip 44.108.100.24 dst_ip 58.30.73.116 ip_proto tcp src_port 16198 dst_port 16077 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10540 flower src_mac 02:d9:2b:9f:6f:2f dst_mac 02:35:75:50:67:5c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10541 flower src_mac 02:e6:4e:2c:40:60 dst_mac 02:ed:ad:3c:96:21 vlan_id 278 vlan_ethtype 0x0800 src_ip 33.42.230.38 dst_ip 43.55.184.169 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10542 flower src_mac 02:ab:ff:ce:fc:fb dst_mac 02:46:45:29:bc:19 vlan_id 303 vlan_ethtype ip src_ip 36.13.160.187 dst_ip 56.161.43.248 ip_proto udp src_port 47631 dst_port 8190 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10543 flower src_mac 02:fb:8e:7c:f3:49 dst_mac 02:ea:6d:1a:34:63 src_ip 13.64.94.228 dst_ip 126.101.192.245 ip_proto udp src_port 56366 dst_port 39392 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10544 flower src_mac 02:7a:c5:59:1e:59 dst_mac 02:bd:ee:47:1f:7c vlan_id 1732 vlan_ethtype ip src_ip 17.63.122.31 dst_ip 59.242.128.189 ip_proto tcp src_port 46971 dst_port 41356 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10545 flower src_mac 02:6f:d7:aa:21:8f dst_mac 02:4f:62:f8:b4:c4 src_ip 61.148.33.3 dst_ip 92.94.160.53 ip_proto tcp src_port 53565 dst_port 31447 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10546 flower src_mac 02:91:9c:99:81:10 dst_mac 02:ca:5f:48:7b:b9 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10547 flower src_mac 02:0e:6b:66:f9:35 dst_mac 02:5e:77:9e:10:45 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10548 flower src_mac 02:49:e5:68:6c:e5 dst_mac 02:f1:bf:f7:1d:0e vlan_id 2844 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10549 flower src_mac 02:56:e6:b9:4b:ed dst_mac 02:76:1b:f5:71:6b vlan_id 3751 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 10550 flower src_mac 02:60:d9:0c:c4:07 dst_mac 02:cb:e7:83:c5:a8 src_ip 80.90.203.204 dst_ip 16.83.108.143 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10551 flower src_mac 02:55:4a:4d:7b:6c dst_mac 02:d7:58:bf:54:0c vlan_id 2041 vlan_ethtype ip src_ip 50.235.188.159 dst_ip 17.1.117.237 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10552 flower src_mac 02:d8:d2:7c:f8:8c dst_mac 02:11:bd:37:76:76 vlan_id 2409 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10553 flower src_mac 02:76:54:43:b4:38 dst_mac 02:9f:3a:15:47:1c vlan_id 3313 vlan_ethtype ipv4 src_ip 62.116.130.73 dst_ip 13.175.190.206 ip_proto tcp src_port 44468 dst_port 27043 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10554 flower src_mac 02:90:01:19:15:06 dst_mac 02:1c:8e:f2:65:4c vlan_id 2770 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10555 flower src_mac 02:74:fa:6b:a7:d8 dst_mac 02:90:e7:c6:7b:41 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10556 flower src_mac 02:c7:04:81:b5:09 dst_mac 02:fb:6f:e9:2a:89 vlan_id 1855 vlan_ethtype ipv4 src_ip 67.54.14.210 dst_ip 108.106.45.198 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10557 flower src_mac 02:23:a1:c9:fa:8c dst_mac 02:2b:62:f8:65:c8 vlan_id 1248 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10558 flower src_mac 02:3e:af:51:a0:1f dst_mac 02:5f:74:8b:5e:e5 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10559 flower src_mac 02:4d:77:72:80:26 dst_mac 02:14:11:12:68:2c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10560 flower src_mac 02:03:b8:d2:61:1c dst_mac 02:e2:f0:c0:02:59 vlan_id 3460 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10561 flower src_mac 02:26:59:cc:19:08 dst_mac 02:c8:01:85:17:80 vlan_id 2176 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10562 flower src_mac 02:be:dd:16:d2:1e dst_mac 02:0b:90:c7:37:24 vlan_id 3323 vlan_ethtype ipv4 src_ip 53.86.211.234 dst_ip 114.118.227.43 ip_proto tcp src_port 7297 dst_port 21078 action drop && tc filter add dev swp1 ingress protocol ip pref 10563 flower src_mac 02:af:10:c4:a5:9f dst_mac 02:8f:bc:91:c2:76 src_ip 25.44.91.104 dst_ip 71.56.62.61 ip_proto udp src_port 9404 dst_port 41253 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10564 flower src_mac 02:c3:40:3e:90:ce dst_mac 02:05:86:43:05:c7 vlan_id 1824 vlan_ethtype ipv4 src_ip 16.87.43.121 dst_ip 114.49.188.22 ip_proto udp src_port 9187 dst_port 57811 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10565 flower src_mac 02:6d:e7:85:96:33 dst_mac 02:76:44:ca:f8:be vlan_id 402 vlan_ethtype ipv4 src_ip 84.139.130.116 dst_ip 41.248.209.26 ip_proto udp src_port 37554 dst_port 24893 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10566 flower src_mac 02:d1:85:12:4d:ad dst_mac 02:79:19:99:fe:74 vlan_id 1331 vlan_ethtype 0x0800 src_ip 72.59.122.243 dst_ip 30.226.247.65 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10567 flower src_mac 02:03:30:e2:af:bf dst_mac 02:6e:b4:93:14:64 vlan_id 945 vlan_ethtype ipv4 src_ip 81.195.18.173 dst_ip 33.219.71.168 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10568 flower src_mac 02:20:cf:bd:ff:52 dst_mac 02:db:a0:97:54:60 vlan_id 179 vlan_ethtype 0x0800 src_ip 57.213.134.80 dst_ip 16.65.224.223 ip_proto tcp src_port 31789 dst_port 17060 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10569 flower src_mac 02:ed:8d:36:05:22 dst_mac 02:20:df:61:d8:f2 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10570 flower src_mac 02:77:e6:74:c5:98 dst_mac 02:8f:98:f2:13:00 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10571 flower src_mac 02:e5:26:cb:e4:79 dst_mac 02:7a:54:0f:16:de vlan_id 179 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 10572 flower src_mac 02:a6:2c:e1:c0:8c dst_mac 02:23:50:1e:0d:29 src_ip 124.43.185.27 dst_ip 102.242.37.179 ip_proto udp src_port 32964 dst_port 47372 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10573 flower src_mac 02:53:56:c0:0a:18 dst_mac 02:7f:10:e8:a3:0c vlan_id 2159 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10574 flower src_mac 02:3b:22:21:09:2b dst_mac 02:1e:7b:b8:b7:5e src_ip 100.175.48.180 dst_ip 69.162.242.245 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10575 flower src_mac 02:c4:1e:0e:71:e6 dst_mac 02:ac:25:bc:75:b2 src_ip 68.246.219.95 dst_ip 23.181.232.163 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10576 flower src_mac 02:95:64:d1:fc:8e dst_mac 02:c2:9f:20:03:4e vlan_id 1280 vlan_ethtype ipv4 src_ip 39.189.145.87 dst_ip 46.73.126.103 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10577 flower src_mac 02:41:79:3b:52:15 dst_mac 02:e8:31:bf:0d:d0 vlan_id 3261 vlan_ethtype ipv4 src_ip 101.115.208.89 dst_ip 18.127.74.127 ip_proto udp src_port 28134 dst_port 47851 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10578 flower src_mac 02:ee:13:14:ac:23 dst_mac 02:19:89:de:3e:fb vlan_id 3200 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10579 flower src_mac 02:47:a6:13:5a:b3 dst_mac 02:d2:e9:fa:8b:ac action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10580 flower src_mac 02:bc:82:77:54:02 dst_mac 02:bb:a2:e7:f8:05 vlan_id 2697 vlan_ethtype ip src_ip 40.233.92.108 dst_ip 65.168.46.195 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10581 flower src_mac 02:85:87:5d:b1:02 dst_mac 02:eb:a4:d7:33:6d action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10582 flower src_mac 02:57:f6:98:b5:0e dst_mac 02:b5:6a:2e:d2:d1 vlan_id 186 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10583 flower src_mac 02:5f:bb:60:e4:04 dst_mac 02:cf:e4:98:10:c3 vlan_id 612 vlan_ethtype 0x0800 src_ip 50.225.104.144 dst_ip 110.189.249.59 ip_proto udp src_port 64499 dst_port 37749 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10584 flower src_mac 02:33:4b:16:af:14 dst_mac 02:b1:22:70:0d:d8 vlan_id 824 vlan_ethtype ipv4 src_ip 48.159.161.99 dst_ip 24.112.153.197 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10585 flower src_mac 02:33:f0:de:94:e4 dst_mac 02:41:51:e6:a0:ac vlan_id 2526 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10586 flower src_mac 02:a1:23:8f:ae:b5 dst_mac 02:b8:b0:29:b2:e8 vlan_id 3160 vlan_ethtype ip src_ip 116.76.133.193 dst_ip 53.66.155.75 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10587 flower src_mac 02:c2:ec:4d:9a:ef dst_mac 02:80:ce:cd:09:f3 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10588 flower src_mac 02:90:d2:04:cf:a2 dst_mac 02:46:a5:a1:51:7e action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10589 flower src_mac 02:ce:ea:c6:2d:58 dst_mac 02:fb:c0:df:c0:e9 vlan_id 3931 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10590 flower src_mac 02:ad:07:3e:2a:47 dst_mac 02:19:97:0e:16:aa action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10591 flower src_mac 02:01:bc:4d:b3:4a dst_mac 02:a0:7d:64:03:04 src_ip 98.1.231.41 dst_ip 46.49.50.153 ip_proto udp src_port 24812 dst_port 2226 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10592 flower src_mac 02:a2:7f:ac:78:72 dst_mac 02:24:86:e4:97:28 src_ip 76.18.240.128 dst_ip 120.26.180.181 ip_proto icmp code 67 type 17 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10593 flower src_mac 02:5e:aa:86:6a:f6 dst_mac 02:66:ad:ae:47:07 vlan_id 3337 vlan_ethtype ip src_ip 23.133.194.214 dst_ip 43.69.6.228 ip_proto udp src_port 24879 dst_port 29622 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10594 flower src_mac 02:20:9f:28:07:1d dst_mac 02:36:f2:9a:51:16 vlan_id 3013 vlan_ethtype ip src_ip 99.243.145.242 dst_ip 36.145.198.155 ip_proto tcp src_port 49737 dst_port 28068 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10595 flower src_mac 02:33:c7:2a:14:76 dst_mac 02:53:6a:aa:c7:7c src_ip 53.207.230.6 dst_ip 89.114.159.14 ip_proto tcp src_port 3049 dst_port 37508 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10596 flower src_mac 02:3d:55:83:3b:87 dst_mac 02:93:64:f1:e0:c8 src_ip 16.56.101.45 dst_ip 71.196.175.91 ip_proto udp src_port 44774 dst_port 49065 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10597 flower src_mac 02:2a:36:47:b6:59 dst_mac 02:b0:6a:af:2a:d4 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10598 flower src_mac 02:27:ef:9b:d6:5e dst_mac 02:11:99:ec:44:e8 vlan_id 1588 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 10599 flower src_mac 02:fc:c4:1f:e1:fe dst_mac 02:85:bc:08:e6:ca src_ip 96.46.50.234 dst_ip 110.45.81.153 ip_proto tcp src_port 19141 dst_port 36535 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10600 flower src_mac 02:9b:13:65:af:cd dst_mac 02:8d:88:37:99:bd vlan_id 48 vlan_ethtype ip src_ip 98.230.199.128 dst_ip 35.52.85.187 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10601 flower src_mac 02:e2:a8:4b:aa:35 dst_mac 02:a4:15:ef:17:f4 vlan_id 3082 vlan_ethtype ip src_ip 95.104.242.97 dst_ip 33.12.1.167 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10602 flower src_mac 02:1f:22:ed:d6:16 dst_mac 02:5e:18:73:89:b6 src_ip 12.162.43.91 dst_ip 62.166.201.200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10603 flower src_mac 02:3a:97:72:8d:c1 dst_mac 02:d7:cf:dd:2e:03 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10604 flower src_mac 02:23:af:59:44:b9 dst_mac 02:d6:87:75:89:60 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10605 flower src_mac 02:92:64:84:96:72 dst_mac 02:c3:35:72:91:58 vlan_id 2779 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10606 flower src_mac 02:9a:a9:13:14:98 dst_mac 02:80:ca:5b:f8:45 vlan_id 1008 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10607 flower src_mac 02:db:57:be:d5:91 dst_mac 02:19:8d:3a:91:c8 vlan_id 143 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10608 flower src_mac 02:4a:a8:ef:ae:13 dst_mac 02:79:32:b2:8d:53 vlan_id 2386 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10609 flower src_mac 02:12:5c:06:b7:d2 dst_mac 02:37:d9:97:75:fe vlan_id 186 vlan_ethtype ip src_ip 89.48.15.60 dst_ip 97.204.78.159 ip_proto udp src_port 9370 dst_port 41828 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10610 flower src_mac 02:fb:6d:8b:1f:d1 dst_mac 02:f8:dd:b1:8a:70 src_ip 27.162.254.153 dst_ip 30.115.126.61 ip_proto tcp src_port 37871 dst_port 52376 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10611 flower src_mac 02:55:95:fe:48:6b dst_mac 02:6e:61:87:ad:67 src_ip 81.151.233.29 dst_ip 109.173.210.130 ip_proto icmp code 96 type 16 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10612 flower src_mac 02:26:a1:38:80:05 dst_mac 02:47:ee:b5:d8:56 src_ip 117.164.143.17 dst_ip 46.22.205.214 ip_proto icmp code 173 type 17 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10613 flower src_mac 02:f5:d0:1b:bd:6e dst_mac 02:67:e4:22:19:b3 vlan_id 339 vlan_ethtype ip src_ip 63.150.239.122 dst_ip 73.23.234.34 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10614 flower src_mac 02:1c:22:d9:36:fe dst_mac 02:bf:b1:a1:a6:08 vlan_id 1239 vlan_ethtype ip src_ip 36.89.17.174 dst_ip 19.76.106.133 ip_proto tcp src_port 8955 dst_port 62333 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10615 flower src_mac 02:b4:58:13:ee:29 dst_mac 02:0e:df:3a:ea:0a vlan_id 2405 vlan_ethtype 0x0800 src_ip 27.194.72.239 dst_ip 104.195.131.103 ip_proto udp src_port 40872 dst_port 18071 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10616 flower src_mac 02:6b:94:32:a4:32 dst_mac 02:be:27:52:8d:05 vlan_id 3011 vlan_ethtype ip src_ip 126.174.56.200 dst_ip 65.88.91.240 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10617 flower src_mac 02:ff:99:6f:a3:8e dst_mac 02:91:89:6e:8f:6b action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10618 flower src_mac 02:5f:86:cd:c3:da dst_mac 02:c2:55:57:6b:61 vlan_id 3314 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10619 flower src_mac 02:61:4e:fe:29:d9 dst_mac 02:3b:36:1f:12:d1 src_ip 55.172.157.118 dst_ip 114.156.227.62 ip_proto icmp code 17 type 15 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10620 flower src_mac 02:f5:2c:a3:68:f2 dst_mac 02:a4:61:e0:3b:62 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10621 flower src_mac 02:7e:de:5b:20:44 dst_mac 02:07:37:68:89:ed vlan_id 1180 vlan_ethtype 0x0800 src_ip 87.81.110.242 dst_ip 116.207.246.85 ip_proto tcp src_port 13379 dst_port 23814 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10622 flower src_mac 02:9f:57:a5:03:a7 dst_mac 02:54:15:bc:78:1d vlan_id 3198 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 10623 flower src_mac 02:8b:1f:67:f5:75 dst_mac 02:d0:f0:a6:6d:c8 src_ip 31.162.105.74 dst_ip 94.40.66.226 ip_proto icmp code 88 type 4 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10624 flower src_mac 02:e1:68:19:22:93 dst_mac 02:51:d5:62:93:28 vlan_id 2436 vlan_ethtype ipv4 src_ip 31.79.189.171 dst_ip 16.80.232.26 ip_proto udp src_port 53491 dst_port 6201 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10625 flower src_mac 02:0f:35:ac:f7:b9 dst_mac 02:51:d2:34:fc:c3 vlan_id 2171 vlan_ethtype ip src_ip 122.253.252.84 dst_ip 97.12.250.110 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10626 flower src_mac 02:92:7a:50:5f:9c dst_mac 02:e0:99:3a:77:33 src_ip 92.231.127.55 dst_ip 58.255.118.112 ip_proto udp src_port 21361 dst_port 50741 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10627 flower src_mac 02:32:ef:df:ad:34 dst_mac 02:65:90:7f:95:c8 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10628 flower src_mac 02:e7:6f:03:c3:91 dst_mac 02:6d:b5:ce:63:e3 vlan_id 385 vlan_ethtype 0x0800 src_ip 80.90.97.106 dst_ip 123.213.210.87 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10629 flower src_mac 02:87:86:31:28:c9 dst_mac 02:28:93:d5:76:8a action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10630 flower src_mac 02:8a:6b:01:98:b7 dst_mac 02:c0:af:36:25:6b src_ip 64.127.11.233 dst_ip 67.142.2.200 ip_proto icmp code 174 type 5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10631 flower src_mac 02:b6:c8:09:13:35 dst_mac 02:e1:97:ff:a1:54 vlan_id 2388 vlan_ethtype ip src_ip 44.151.143.140 dst_ip 24.18.102.65 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10632 flower src_mac 02:e2:26:a2:a8:0a dst_mac 02:c1:ca:10:b5:c0 vlan_id 3960 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10633 flower src_mac 02:82:cd:22:1d:78 dst_mac 02:2f:a1:a9:9f:f4 vlan_id 1342 vlan_ethtype 0x0800 src_ip 82.4.164.84 dst_ip 43.79.136.3 ip_proto udp src_port 47470 dst_port 23118 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10634 flower src_mac 02:67:d4:bf:23:c1 dst_mac 02:4e:e1:09:08:f1 vlan_id 988 vlan_ethtype ip src_ip 113.130.4.180 dst_ip 77.63.11.175 action drop && tc filter add dev swp1 ingress protocol ip pref 10635 flower src_mac 02:e6:9c:6b:3b:12 dst_mac 02:7a:7a:6b:62:03 src_ip 85.221.40.117 dst_ip 23.1.128.171 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10636 flower src_mac 02:86:a0:23:8f:13 dst_mac 02:a4:c6:af:08:12 vlan_id 2086 vlan_ethtype ip src_ip 104.116.55.199 dst_ip 108.8.176.193 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10637 flower src_mac 02:f5:b5:42:93:4d dst_mac 02:e0:66:5d:67:19 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10638 flower src_mac 02:ad:68:56:33:18 dst_mac 02:61:c4:8c:de:74 vlan_id 943 vlan_ethtype ipv4 src_ip 34.30.112.42 dst_ip 97.211.103.111 ip_proto tcp src_port 41860 dst_port 18290 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10639 flower src_mac 02:19:d6:69:de:b5 dst_mac 02:5b:f6:86:60:64 vlan_id 453 vlan_ethtype 0x0800 src_ip 37.177.125.147 dst_ip 106.83.138.132 ip_proto udp src_port 37952 dst_port 38152 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10640 flower src_mac 02:11:9e:c9:86:61 dst_mac 02:fb:58:46:27:be action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10641 flower src_mac 02:ed:f8:97:66:ea dst_mac 02:17:03:66:2b:e3 vlan_id 1131 vlan_ethtype ipv4 src_ip 26.232.78.212 dst_ip 101.135.35.177 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10642 flower src_mac 02:85:fc:ad:db:c3 dst_mac 02:3a:3d:b7:3f:db vlan_id 1924 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 10643 flower src_mac 02:27:20:f7:29:56 dst_mac 02:52:f5:2c:1f:e0 src_ip 39.126.48.82 dst_ip 34.80.107.188 ip_proto udp src_port 15887 dst_port 58733 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10644 flower src_mac 02:59:7c:d6:15:19 dst_mac 02:69:55:a0:1e:18 vlan_id 296 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10645 flower src_mac 02:dd:3e:99:7c:a7 dst_mac 02:0d:8b:b2:37:3f vlan_id 2665 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10646 flower src_mac 02:d4:56:76:61:66 dst_mac 02:12:22:33:16:34 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10647 flower src_mac 02:e3:87:25:e1:a3 dst_mac 02:31:ce:bd:35:12 src_ip 86.176.103.41 dst_ip 83.73.132.242 ip_proto udp src_port 2527 dst_port 64734 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10648 flower src_mac 02:43:41:cf:d3:05 dst_mac 02:17:90:ac:db:0b vlan_id 1054 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10649 flower src_mac 02:5d:3b:1e:03:b3 dst_mac 02:90:39:53:c8:36 vlan_id 654 vlan_ethtype 0x0800 src_ip 71.162.189.116 dst_ip 38.49.166.73 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10650 flower src_mac 02:72:8c:e2:4d:d8 dst_mac 02:c5:e7:71:c7:3a vlan_id 338 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10651 flower src_mac 02:92:99:a8:40:73 dst_mac 02:f5:54:46:5c:57 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10652 flower src_mac 02:90:dc:cc:b5:1d dst_mac 02:73:fd:91:ce:32 vlan_id 2662 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10653 flower src_mac 02:15:e7:bc:be:48 dst_mac 02:32:96:f9:9c:06 src_ip 126.237.212.201 dst_ip 12.211.189.132 ip_proto udp src_port 48362 dst_port 41855 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10654 flower src_mac 02:45:c5:31:f8:f3 dst_mac 02:d7:df:d4:31:43 src_ip 43.137.84.141 dst_ip 38.167.142.178 ip_proto icmp code 17 type 18 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10655 flower src_mac 02:74:a3:ca:b8:67 dst_mac 02:a7:72:8c:9c:5c vlan_id 1570 vlan_ethtype 0x0800 src_ip 76.194.199.234 dst_ip 76.66.141.89 ip_proto tcp src_port 6594 dst_port 12087 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10656 flower src_mac 02:78:c1:41:7f:86 dst_mac 02:2e:96:d4:84:f9 src_ip 36.217.124.168 dst_ip 89.69.28.11 ip_proto udp src_port 46128 dst_port 60637 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10657 flower src_mac 02:fa:f0:b0:d6:12 dst_mac 02:bf:46:14:d8:b8 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10658 flower src_mac 02:f2:cb:87:f8:01 dst_mac 02:37:9e:5d:86:4c vlan_id 2598 vlan_ethtype ip src_ip 28.151.255.109 dst_ip 62.142.10.136 ip_proto tcp src_port 50681 dst_port 53822 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10659 flower src_mac 02:52:c1:e4:47:12 dst_mac 02:5a:71:b0:36:e9 vlan_id 3498 vlan_ethtype 0x0800 src_ip 34.252.163.63 dst_ip 57.248.68.3 ip_proto tcp src_port 45895 dst_port 29268 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10660 flower src_mac 02:2f:60:fc:e4:41 dst_mac 02:6d:47:ba:8d:a4 vlan_id 1433 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10661 flower src_mac 02:11:ac:0e:0e:94 dst_mac 02:f8:f1:29:11:9b vlan_id 2128 vlan_ethtype 0x0800 src_ip 67.177.159.96 dst_ip 78.144.160.47 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10662 flower src_mac 02:d3:2c:e5:68:0e dst_mac 02:ac:61:c2:00:ca action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10663 flower src_mac 02:10:c9:d5:32:66 dst_mac 02:be:0b:f4:c8:8b action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10664 flower src_mac 02:e5:28:37:5a:b0 dst_mac 02:68:80:e4:ee:a3 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10665 flower src_mac 02:cf:9d:b0:d3:54 dst_mac 02:26:ba:b8:aa:34 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10666 flower src_mac 02:6d:66:c4:a7:10 dst_mac 02:33:4c:7c:68:4c vlan_id 1899 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10667 flower src_mac 02:48:57:c5:4f:46 dst_mac 02:1c:8d:34:31:b6 vlan_id 3964 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10668 flower src_mac 02:8a:a4:19:16:f0 dst_mac 02:50:7b:95:7e:3b vlan_id 2896 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10669 flower src_mac 02:cf:37:5c:ae:af dst_mac 02:84:77:55:78:b4 vlan_id 2216 vlan_ethtype ipv4 src_ip 114.85.118.237 dst_ip 29.170.76.183 ip_proto tcp src_port 52312 dst_port 7663 action trap && tc filter add dev swp1 ingress protocol ip pref 10670 flower src_mac 02:d1:11:e8:a5:b2 dst_mac 02:8f:fd:4f:e1:af src_ip 76.166.154.32 dst_ip 15.214.194.247 ip_proto icmp code 17 type 14 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10671 flower src_mac 02:0f:fb:08:18:43 dst_mac 02:e1:1a:11:a2:fc action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10672 flower src_mac 02:25:d4:86:33:00 dst_mac 02:95:1e:ad:a6:bc src_ip 111.209.27.215 dst_ip 109.19.196.225 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10673 flower src_mac 02:1c:a2:c9:40:6d dst_mac 02:03:2b:12:c4:18 src_ip 125.119.219.183 dst_ip 99.34.167.160 ip_proto icmp code 139 type 0 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10674 flower src_mac 02:83:e7:48:89:2f dst_mac 02:99:6b:8b:ae:06 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10675 flower src_mac 02:43:35:22:6d:43 dst_mac 02:54:ae:8e:88:57 vlan_id 1564 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ip pref 10676 flower src_mac 02:c5:e0:a3:b5:ef dst_mac 02:0e:69:62:c8:17 src_ip 64.67.123.3 dst_ip 30.223.150.1 ip_proto tcp src_port 4356 dst_port 37882 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10677 flower src_mac 02:6f:53:40:0d:a0 dst_mac 02:1d:5f:78:f8:d1 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10678 flower src_mac 02:3b:c6:f4:e0:b8 dst_mac 02:59:73:85:4e:c5 src_ip 22.166.38.215 dst_ip 89.250.54.113 ip_proto udp src_port 34949 dst_port 45437 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10679 flower src_mac 02:00:34:64:b1:a4 dst_mac 02:67:c3:25:67:a2 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10680 flower src_mac 02:1e:23:d9:2c:75 dst_mac 02:22:3a:c5:ea:9c action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10681 flower src_mac 02:4b:2b:6c:e8:e4 dst_mac 02:34:9b:39:df:d5 vlan_id 132 vlan_ethtype 0x0800 src_ip 11.244.124.201 dst_ip 64.31.236.32 ip_proto udp src_port 41940 dst_port 8534 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10682 flower src_mac 02:0e:7f:d8:28:7a dst_mac 02:e6:45:31:b4:ab action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10683 flower src_mac 02:9a:09:88:18:f7 dst_mac 02:df:49:6b:0c:79 vlan_id 3159 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10684 flower src_mac 02:f0:85:69:45:58 dst_mac 02:00:a9:d3:c0:c7 src_ip 69.242.140.36 dst_ip 41.121.126.27 ip_proto tcp src_port 38343 dst_port 4537 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10685 flower src_mac 02:eb:73:fc:10:4b dst_mac 02:95:0c:6f:85:5a action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10686 flower src_mac 02:60:71:a8:c3:7c dst_mac 02:1d:a0:e1:c6:03 vlan_id 1126 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10687 flower src_mac 02:15:61:cc:3b:a3 dst_mac 02:3d:5c:fc:37:88 vlan_id 3557 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10688 flower src_mac 02:cb:99:83:ad:ee dst_mac 02:a8:b7:2a:57:b3 vlan_id 2680 vlan_ethtype 0x0800 src_ip 108.203.135.75 dst_ip 121.161.171.61 ip_proto tcp src_port 7270 dst_port 3165 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10689 flower src_mac 02:e3:ac:cb:3b:85 dst_mac 02:ee:f2:00:08:59 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10690 flower src_mac 02:12:04:ee:dc:8d dst_mac 02:49:a7:ba:2d:af vlan_id 3665 vlan_ethtype 0x0800 src_ip 107.239.223.73 dst_ip 114.176.45.127 ip_proto udp src_port 1699 dst_port 32548 action drop && tc filter add dev swp1 ingress protocol ip pref 10691 flower src_mac 02:49:81:6d:52:6d dst_mac 02:ae:7d:11:b4:90 src_ip 32.65.250.187 dst_ip 117.228.12.186 ip_proto icmp code 187 type 14 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10692 flower src_mac 02:a7:0a:1c:18:c5 dst_mac 02:63:71:b4:3b:8c vlan_id 155 vlan_ethtype ipv4 src_ip 19.242.63.79 dst_ip 19.172.52.78 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10693 flower src_mac 02:66:84:57:ae:75 dst_mac 02:03:1a:5a:b6:c4 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10694 flower src_mac 02:32:e8:8c:e9:ac dst_mac 02:95:10:a0:47:77 vlan_id 2745 vlan_ethtype ipv4 src_ip 11.7.179.95 dst_ip 75.52.173.94 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10695 flower src_mac 02:ef:27:ac:3f:ad dst_mac 02:bd:36:45:09:cd vlan_id 1416 vlan_ethtype 0x0800 src_ip 22.70.255.207 dst_ip 44.157.216.136 ip_proto tcp src_port 21817 dst_port 15600 action trap && tc filter add dev swp1 ingress protocol ip pref 10696 flower src_mac 02:d6:01:b4:fb:99 dst_mac 02:3a:7b:6a:15:57 src_ip 29.221.84.39 dst_ip 28.197.91.163 ip_proto icmp code 128 type 11 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10697 flower src_mac 02:24:4d:a5:1f:62 dst_mac 02:8e:d7:b1:f9:41 src_ip 76.128.186.7 dst_ip 57.218.235.236 ip_proto icmp code 148 type 15 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10698 flower src_mac 02:ab:ca:e2:32:fc dst_mac 02:71:84:bf:16:0a action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10699 flower src_mac 02:10:40:c0:7b:b5 dst_mac 02:a0:2c:7a:10:b2 vlan_id 377 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10700 flower src_mac 02:3a:e0:61:10:16 dst_mac 02:13:ca:6c:6c:13 src_ip 31.242.193.143 dst_ip 50.128.168.58 ip_proto icmp code 229 type 4 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10701 flower src_mac 02:ff:7a:9c:6a:78 dst_mac 02:bb:c2:85:59:a4 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10702 flower src_mac 02:b4:c2:e7:b4:c6 dst_mac 02:a6:92:60:f0:82 src_ip 58.105.223.69 dst_ip 81.216.27.75 ip_proto udp src_port 35302 dst_port 37322 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10703 flower src_mac 02:0c:2d:ce:13:65 dst_mac 02:a1:34:93:3b:7b action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10704 flower src_mac 02:3d:be:43:c9:94 dst_mac 02:7a:3f:a8:82:4f vlan_id 1480 vlan_ethtype ip src_ip 43.191.220.58 dst_ip 26.128.75.70 action pass && tc filter add dev swp1 ingress protocol ip pref 10705 flower src_mac 02:75:76:92:c6:28 dst_mac 02:29:1e:6c:7b:9c src_ip 25.153.141.137 dst_ip 52.49.172.172 ip_proto tcp src_port 11248 dst_port 1532 action pass && tc filter add dev swp1 ingress protocol ip pref 10706 flower src_mac 02:65:21:de:8b:21 dst_mac 02:ec:40:68:dd:be src_ip 59.176.190.232 dst_ip 115.71.156.165 ip_proto icmp code 255 type 17 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10707 flower src_mac 02:db:06:88:53:86 dst_mac 02:6d:17:93:fb:a5 vlan_id 1608 vlan_ethtype ip src_ip 103.71.24.25 dst_ip 18.18.101.31 ip_proto udp src_port 36372 dst_port 36336 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10708 flower src_mac 02:60:65:e8:ad:41 dst_mac 02:ba:f2:92:8c:8a action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10709 flower src_mac 02:71:42:42:de:2f dst_mac 02:7e:e6:f3:eb:1b src_ip 52.132.211.244 dst_ip 102.14.38.187 ip_proto icmp code 115 type 18 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10710 flower src_mac 02:6a:4a:f5:c5:d0 dst_mac 02:5a:69:18:c9:ed vlan_id 846 vlan_ethtype 0x0800 src_ip 89.59.17.199 dst_ip 49.103.83.17 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10711 flower src_mac 02:03:47:18:2a:92 dst_mac 02:d2:00:da:d6:b0 vlan_id 3430 vlan_ethtype ipv4 src_ip 66.107.233.232 dst_ip 93.246.30.200 ip_proto tcp src_port 52858 dst_port 44191 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10712 flower src_mac 02:7b:66:17:15:02 dst_mac 02:fd:68:c9:2f:44 vlan_id 1718 vlan_ethtype 0x0800 src_ip 50.78.25.43 dst_ip 60.232.117.41 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10713 flower src_mac 02:32:61:b9:4e:9f dst_mac 02:bd:8a:1d:ca:18 vlan_id 721 vlan_ethtype ipv4 src_ip 67.215.198.188 dst_ip 76.250.203.173 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10714 flower src_mac 02:09:0e:50:fb:75 dst_mac 02:83:d4:26:2d:2a vlan_id 515 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10715 flower src_mac 02:4a:3a:fd:61:39 dst_mac 02:dd:a1:55:8d:6e vlan_id 3177 vlan_ethtype 0x0800 src_ip 48.28.138.180 dst_ip 63.56.254.74 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10716 flower src_mac 02:b5:62:79:cf:c6 dst_mac 02:8b:c0:10:0b:34 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10717 flower src_mac 02:55:26:b1:7c:2a dst_mac 02:af:40:dd:55:68 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10718 flower src_mac 02:b8:85:bc:09:77 dst_mac 02:a9:02:21:56:1a vlan_id 1345 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10719 flower src_mac 02:af:fa:b8:c6:95 dst_mac 02:2a:ce:8a:e3:ce vlan_id 4049 vlan_ethtype ip src_ip 42.63.48.52 dst_ip 102.83.19.135 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10720 flower src_mac 02:70:76:77:b6:dd dst_mac 02:8c:56:53:a8:ef vlan_id 2106 vlan_ethtype ipv4 src_ip 117.176.141.38 dst_ip 65.47.79.161 ip_proto tcp src_port 52674 dst_port 2156 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10721 flower src_mac 02:1b:7b:93:c6:68 dst_mac 02:74:30:65:3c:9b src_ip 88.139.150.161 dst_ip 100.159.45.181 ip_proto tcp src_port 50596 dst_port 7389 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10722 flower src_mac 02:b7:8f:70:e0:45 dst_mac 02:0c:c0:58:b3:85 vlan_id 3960 vlan_ethtype ip src_ip 45.216.59.17 dst_ip 121.60.48.184 ip_proto udp src_port 17498 dst_port 43704 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10723 flower src_mac 02:44:5c:47:83:ba dst_mac 02:85:4f:0b:96:ba vlan_id 3733 vlan_ethtype ipv4 src_ip 63.117.246.98 dst_ip 12.65.37.69 ip_proto tcp src_port 61939 dst_port 58848 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10724 flower src_mac 02:08:7e:78:92:20 dst_mac 02:4f:51:b1:62:14 vlan_id 3409 vlan_ethtype ip src_ip 89.138.45.22 dst_ip 66.188.207.24 ip_proto tcp src_port 35933 dst_port 902 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10725 flower src_mac 02:f0:1f:61:00:f0 dst_mac 02:6f:8f:07:29:70 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10726 flower src_mac 02:a8:9d:29:2e:98 dst_mac 02:e4:a4:f0:04:3c src_ip 101.138.32.117 dst_ip 43.169.51.122 ip_proto icmp code 118 type 16 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10727 flower src_mac 02:ed:65:aa:5f:f5 dst_mac 02:a6:ae:d1:57:f7 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10728 flower src_mac 02:97:fd:3b:eb:44 dst_mac 02:4d:3b:75:0c:f0 vlan_id 3215 vlan_ethtype ip src_ip 37.140.15.138 dst_ip 49.146.245.166 ip_proto udp src_port 2799 dst_port 63852 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10729 flower src_mac 02:a4:a0:db:c2:ad dst_mac 02:22:d6:2d:56:1d vlan_id 3755 vlan_ethtype 0x0800 src_ip 43.4.198.139 dst_ip 74.52.153.103 action drop && tc filter add dev swp1 ingress protocol ip pref 10730 flower src_mac 02:2c:4d:7f:bb:f2 dst_mac 02:38:1e:79:a0:9d src_ip 40.43.211.247 dst_ip 26.143.209.34 ip_proto udp src_port 44443 dst_port 5037 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10731 flower src_mac 02:40:7f:0c:1b:24 dst_mac 02:56:d4:09:74:19 src_ip 118.44.19.74 dst_ip 76.99.12.246 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10732 flower src_mac 02:59:51:68:04:ae dst_mac 02:fc:af:d8:da:3e vlan_id 3290 vlan_ethtype ip src_ip 57.112.75.87 dst_ip 100.123.62.4 action pass && tc filter add dev swp1 ingress protocol ip pref 10733 flower src_mac 02:37:24:0c:21:03 dst_mac 02:2f:61:a9:8f:77 src_ip 100.173.53.69 dst_ip 33.60.197.244 ip_proto tcp src_port 26258 dst_port 64504 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10734 flower src_mac 02:89:79:fd:b0:91 dst_mac 02:94:c2:69:4b:8e vlan_id 2902 vlan_ethtype ip src_ip 57.16.6.172 dst_ip 46.180.85.153 ip_proto tcp src_port 33816 dst_port 3818 action pass && tc filter add dev swp1 ingress protocol ip pref 10735 flower src_mac 02:b0:7c:77:6e:3c dst_mac 02:b3:5c:e6:7f:17 src_ip 114.217.219.86 dst_ip 24.238.7.186 ip_proto tcp src_port 30290 dst_port 14867 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10736 flower src_mac 02:c7:5c:d1:fd:51 dst_mac 02:fc:d5:79:3a:cd vlan_id 811 vlan_ethtype ipv4 src_ip 94.87.46.114 dst_ip 69.131.95.53 ip_proto udp src_port 24109 dst_port 51571 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10737 flower src_mac 02:11:d0:33:09:73 dst_mac 02:a8:11:fa:29:52 vlan_id 105 vlan_ethtype ip src_ip 69.48.86.100 dst_ip 74.192.145.7 ip_proto tcp src_port 40996 dst_port 1898 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10738 flower src_mac 02:ca:d4:b5:ff:fb dst_mac 02:e0:10:0d:af:e9 vlan_id 1094 vlan_ethtype ipv4 src_ip 100.26.181.55 dst_ip 91.150.99.100 ip_proto tcp src_port 50011 dst_port 9590 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10739 flower src_mac 02:b8:fd:89:bc:90 dst_mac 02:bd:28:67:bb:fc vlan_id 2035 vlan_ethtype 0x0800 src_ip 74.57.43.194 dst_ip 46.100.30.224 ip_proto udp src_port 42785 dst_port 60542 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10740 flower src_mac 02:7c:e2:b2:e2:28 dst_mac 02:4d:b6:f3:f8:c6 src_ip 95.103.111.170 dst_ip 33.22.134.10 ip_proto icmp code 197 type 5 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10741 flower src_mac 02:5c:17:02:62:22 dst_mac 02:47:18:d2:e8:06 src_ip 51.55.139.40 dst_ip 125.153.99.133 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10742 flower src_mac 02:54:97:1f:19:df dst_mac 02:43:6d:3b:d1:85 src_ip 85.174.22.9 dst_ip 95.254.203.160 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10743 flower src_mac 02:39:21:0f:30:0d dst_mac 02:69:b7:5b:df:a4 src_ip 79.72.29.107 dst_ip 100.204.66.138 ip_proto icmp code 156 type 12 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10744 flower src_mac 02:ee:66:a8:4e:f1 dst_mac 02:74:66:8e:6a:8e vlan_id 440 vlan_ethtype ipv4 src_ip 94.224.151.71 dst_ip 32.156.182.93 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10745 flower src_mac 02:cf:fd:59:15:5a dst_mac 02:2d:79:85:e8:80 vlan_id 3982 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10746 flower src_mac 02:2f:10:bd:08:c8 dst_mac 02:3d:96:ce:53:ad action pass && tc filter add dev swp1 ingress protocol ip pref 10747 flower src_mac 02:0c:fd:97:3e:75 dst_mac 02:98:3e:34:f1:73 src_ip 69.170.184.197 dst_ip 51.26.146.82 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10748 flower src_mac 02:10:52:49:b8:03 dst_mac 02:8a:43:3a:43:8b vlan_id 3903 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10749 flower src_mac 02:b7:c4:a6:d7:b8 dst_mac 02:a0:2b:68:09:13 vlan_id 3194 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10750 flower src_mac 02:ca:c4:53:29:6b dst_mac 02:ea:d3:26:06:3b vlan_id 1586 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10751 flower src_mac 02:f8:99:91:1b:08 dst_mac 02:08:ec:c0:5e:8d src_ip 120.194.111.112 dst_ip 110.79.41.244 ip_proto udp src_port 34300 dst_port 14819 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10752 flower src_mac 02:c3:4b:c6:db:09 dst_mac 02:36:75:0b:f5:86 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10753 flower src_mac 02:38:b8:a7:40:43 dst_mac 02:77:58:87:8a:5b action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10754 flower src_mac 02:e1:37:2e:88:5b dst_mac 02:c9:d3:e3:ee:80 vlan_id 2273 vlan_ethtype ip src_ip 120.157.129.129 dst_ip 100.22.115.70 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10755 flower src_mac 02:dd:cc:cf:25:02 dst_mac 02:bd:64:c7:9b:98 vlan_id 863 vlan_ethtype ip src_ip 39.183.183.85 dst_ip 19.117.99.195 ip_proto tcp src_port 16726 dst_port 16043 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10756 flower src_mac 02:4e:23:4c:0e:02 dst_mac 02:fd:75:12:12:df src_ip 16.236.185.225 dst_ip 18.58.113.175 ip_proto tcp src_port 40555 dst_port 37700 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10757 flower src_mac 02:eb:2c:43:f7:80 dst_mac 02:22:5c:47:c6:c8 vlan_id 768 vlan_ethtype 0x0800 src_ip 64.139.139.104 dst_ip 122.59.66.245 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10758 flower src_mac 02:ae:69:66:13:85 dst_mac 02:c8:18:10:78:da vlan_id 3670 vlan_ethtype ip src_ip 42.128.90.100 dst_ip 65.234.15.69 action pass && tc filter add dev swp1 ingress protocol ip pref 10759 flower src_mac 02:ab:63:3b:bb:9e dst_mac 02:8d:1c:64:ef:22 src_ip 108.133.221.20 dst_ip 35.12.229.187 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10760 flower src_mac 02:df:81:0a:90:f9 dst_mac 02:eb:35:79:13:35 vlan_id 698 vlan_ethtype 0x0800 src_ip 27.27.131.144 dst_ip 112.53.100.108 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10761 flower src_mac 02:f4:6b:b0:5d:75 dst_mac 02:1f:6f:9c:2f:b3 vlan_id 3035 vlan_ethtype ip src_ip 94.49.235.27 dst_ip 46.71.25.71 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10762 flower src_mac 02:66:d1:3e:62:f2 dst_mac 02:05:56:08:7c:95 vlan_id 2914 vlan_ethtype 0x0800 src_ip 65.198.255.81 dst_ip 17.14.180.191 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10763 flower src_mac 02:3d:af:24:42:03 dst_mac 02:c6:90:7c:d6:f3 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10764 flower src_mac 02:12:7e:e8:a0:65 dst_mac 02:84:d9:f2:d6:bc vlan_id 3499 vlan_ethtype ip src_ip 78.172.123.174 dst_ip 109.153.145.102 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10765 flower src_mac 02:0f:f0:21:7b:45 dst_mac 02:4c:e7:1c:52:cd vlan_id 3540 vlan_ethtype 0x0800 src_ip 34.242.98.197 dst_ip 94.48.167.227 ip_proto udp src_port 62502 dst_port 32309 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10766 flower src_mac 02:b6:36:9a:05:09 dst_mac 02:d0:46:04:35:53 vlan_id 1404 vlan_ethtype ipv4 src_ip 99.35.194.117 dst_ip 93.158.108.40 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10767 flower src_mac 02:ab:b5:37:01:c7 dst_mac 02:f0:dc:47:4b:65 vlan_id 1956 vlan_ethtype 0x0800 src_ip 45.13.239.20 dst_ip 68.74.163.124 ip_proto udp src_port 22131 dst_port 59846 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10768 flower src_mac 02:af:7a:d6:12:a5 dst_mac 02:fb:a0:48:de:b0 vlan_id 2477 vlan_ethtype ipv4 src_ip 115.197.161.172 dst_ip 24.64.146.151 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10769 flower src_mac 02:e1:10:d4:f1:cb dst_mac 02:74:2f:a6:3b:71 vlan_id 138 vlan_ethtype ip src_ip 45.140.71.145 dst_ip 50.242.47.150 ip_proto tcp src_port 21652 dst_port 8049 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10770 flower src_mac 02:60:c6:d4:e9:4b dst_mac 02:ad:51:23:24:d4 vlan_id 2359 vlan_ethtype 0x0800 src_ip 14.0.187.151 dst_ip 44.138.181.182 ip_proto tcp src_port 35814 dst_port 30541 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10771 flower src_mac 02:63:ac:55:9c:72 dst_mac 02:61:e4:b9:05:bb vlan_id 3768 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10772 flower src_mac 02:22:dd:c9:7a:ef dst_mac 02:d4:60:aa:0c:24 vlan_id 950 vlan_ethtype ip src_ip 107.142.39.30 dst_ip 103.200.112.130 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10773 flower src_mac 02:fe:f2:23:03:5b dst_mac 02:c1:95:c1:83:6b src_ip 20.26.117.166 dst_ip 68.25.205.222 ip_proto icmp code 123 type 18 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10774 flower src_mac 02:f5:1c:55:eb:59 dst_mac 02:e4:3d:b7:a1:c9 vlan_id 3817 vlan_ethtype ipv4 src_ip 82.227.13.11 dst_ip 14.3.87.200 ip_proto tcp src_port 41102 dst_port 1530 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10775 flower src_mac 02:80:ff:c2:3e:c4 dst_mac 02:d2:53:a8:46:23 vlan_id 3769 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10776 flower src_mac 02:30:d4:fd:e2:b7 dst_mac 02:d7:e4:fb:67:74 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10777 flower src_mac 02:b4:cd:17:6b:b5 dst_mac 02:45:fd:93:69:5b vlan_id 1719 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10778 flower src_mac 02:3c:3c:c3:c1:ef dst_mac 02:1a:25:a5:4f:3c vlan_id 1101 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10779 flower src_mac 02:d5:07:c3:e9:36 dst_mac 02:d0:82:52:be:a9 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10780 flower src_mac 02:8c:ed:cf:f9:c7 dst_mac 02:7c:88:fa:2b:13 vlan_id 369 vlan_ethtype ip src_ip 46.35.16.131 dst_ip 121.172.237.178 ip_proto tcp src_port 1113 dst_port 47546 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10781 flower src_mac 02:62:84:4b:bc:ec dst_mac 02:cd:8e:75:5a:73 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10782 flower src_mac 02:a0:0e:d1:60:0a dst_mac 02:7a:c4:91:96:d0 vlan_id 2617 vlan_ethtype 0x0800 src_ip 14.222.73.71 dst_ip 79.39.93.104 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10783 flower src_mac 02:59:4e:58:aa:68 dst_mac 02:cf:88:d9:77:9b action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10784 flower src_mac 02:e5:b6:4b:77:2b dst_mac 02:51:1c:4e:f1:55 src_ip 35.118.237.55 dst_ip 109.140.150.225 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10785 flower src_mac 02:dd:a5:bd:00:dc dst_mac 02:bd:ca:2a:d9:00 vlan_id 2529 vlan_ethtype 0x0800 src_ip 17.203.248.181 dst_ip 91.179.235.166 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10786 flower src_mac 02:cc:04:a5:bb:6e dst_mac 02:ce:33:f1:2b:37 vlan_id 43 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10787 flower src_mac 02:e6:34:28:c4:ef dst_mac 02:45:f7:bc:b8:3a vlan_id 370 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10788 flower src_mac 02:dc:9c:00:9d:e5 dst_mac 02:86:b6:e0:42:ee action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10789 flower src_mac 02:7b:2e:c6:d6:1e dst_mac 02:f6:2a:f4:44:b3 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10790 flower src_mac 02:17:46:54:e9:ad dst_mac 02:74:69:51:88:f9 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10791 flower src_mac 02:4a:f1:f7:18:04 dst_mac 02:0c:85:42:df:2a vlan_id 509 vlan_ethtype ipv4 src_ip 77.140.146.151 dst_ip 75.28.184.87 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10792 flower src_mac 02:ec:f8:99:23:54 dst_mac 02:06:68:32:bb:65 vlan_id 2374 vlan_ethtype ipv4 src_ip 72.32.35.99 dst_ip 32.139.51.99 ip_proto udp src_port 13644 dst_port 39145 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10793 flower src_mac 02:90:93:0b:1e:c3 dst_mac 02:38:a0:c9:e0:57 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10794 flower src_mac 02:dd:75:a0:9c:a9 dst_mac 02:30:c3:e5:20:40 vlan_id 1459 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10795 flower src_mac 02:18:ce:1d:a4:4f dst_mac 02:7d:87:d5:03:08 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10796 flower src_mac 02:14:33:0d:ba:a2 dst_mac 02:6b:6e:d4:42:20 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10797 flower src_mac 02:a3:de:a8:f5:5d dst_mac 02:dd:77:be:2d:11 vlan_id 3729 vlan_ethtype 0x0800 src_ip 33.176.48.175 dst_ip 53.47.147.73 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10798 flower src_mac 02:ad:36:4e:f0:a7 dst_mac 02:ad:8e:82:21:db action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10799 flower src_mac 02:c7:98:ad:07:49 dst_mac 02:ba:59:66:ff:b2 vlan_id 2597 vlan_ethtype 0x9100 action pass INFO asyncssh:logging.py:92 [conn=24, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 10800 flower src_mac 02:8e:a4:32:22:ba dst_mac 02:8e:de:c5:d5:f0 vlan_id 688 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10801 flower src_mac 02:fa:25:31:c8:4b dst_mac 02:5d:61:46:3e:26 vlan_id 464 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10802 flower src_mac 02:ee:16:36:9f:85 dst_mac 02:9a:0e:54:eb:e3 vlan_id 3490 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10803 flower src_mac 02:7d:77:f8:a3:c7 dst_mac 02:a1:e7:df:20:33 vlan_id 1148 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10804 flower src_mac 02:c1:3b:2f:01:09 dst_mac 02:6a:cb:1b:d5:99 vlan_id 3936 vlan_ethtype ip src_ip 124.148.151.61 dst_ip 17.44.38.6 ip_proto udp src_port 52168 dst_port 61330 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10805 flower src_mac 02:2e:d6:11:90:66 dst_mac 02:79:13:c8:c8:84 src_ip 22.187.158.170 dst_ip 69.143.11.149 ip_proto icmp code 181 type 13 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10806 flower src_mac 02:06:8d:17:1f:73 dst_mac 02:6c:ee:36:e0:9b src_ip 112.103.133.1 dst_ip 124.181.247.227 ip_proto icmp code 203 type 17 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10807 flower src_mac 02:0f:c5:2f:99:e6 dst_mac 02:cd:d7:1b:63:89 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10808 flower src_mac 02:2c:d5:4a:86:60 dst_mac 02:a2:e5:5f:e2:e0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10809 flower src_mac 02:a4:ba:c9:70:42 dst_mac 02:e8:71:16:8a:4d vlan_id 1001 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10810 flower src_mac 02:86:e3:33:a4:b3 dst_mac 02:ed:ee:ed:2b:32 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10811 flower src_mac 02:9e:a7:72:15:4e dst_mac 02:ff:e3:fd:d0:be vlan_id 2275 vlan_ethtype ipv4 src_ip 41.112.238.93 dst_ip 70.174.161.123 ip_proto tcp src_port 59435 dst_port 55409 action drop && tc filter add dev swp1 ingress protocol ip pref 10812 flower src_mac 02:31:46:b3:40:eb dst_mac 02:16:df:9f:48:79 src_ip 21.150.21.213 dst_ip 76.68.23.63 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10813 flower src_mac 02:c7:2b:52:ef:37 dst_mac 02:74:04:21:d7:20 src_ip 53.203.92.92 dst_ip 115.24.220.236 ip_proto icmp code 24 type 3 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10814 flower src_mac 02:6b:b6:4b:79:c3 dst_mac 02:cb:69:d9:21:91 vlan_id 2271 vlan_ethtype 0x0800 src_ip 12.208.5.58 dst_ip 20.15.143.9 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10815 flower src_mac 02:6d:a6:ff:cf:6f dst_mac 02:d0:20:aa:b1:53 vlan_id 3852 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10816 flower src_mac 02:99:4c:33:0a:b5 dst_mac 02:c3:c2:9d:67:38 src_ip 72.218.26.99 dst_ip 58.36.219.67 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10817 flower src_mac 02:2b:1c:8a:87:8e dst_mac 02:b5:e1:ed:a9:7f vlan_id 2463 vlan_ethtype 0x0800 src_ip 89.75.125.228 dst_ip 21.91.123.141 ip_proto udp src_port 55788 dst_port 6447 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10818 flower src_mac 02:93:9d:8f:39:be dst_mac 02:57:e1:bd:82:b3 vlan_id 444 vlan_ethtype 0x0800 src_ip 103.139.40.38 dst_ip 92.63.212.131 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10819 flower src_mac 02:f0:7a:80:a5:f9 dst_mac 02:eb:ee:68:43:9f vlan_id 2169 vlan_ethtype ipv4 src_ip 42.14.197.59 dst_ip 40.204.189.96 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10820 flower src_mac 02:95:e5:bb:b1:14 dst_mac 02:f4:ae:09:6e:41 vlan_id 438 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10821 flower src_mac 02:79:0d:b5:21:37 dst_mac 02:7a:ce:f2:00:ae src_ip 24.67.10.198 dst_ip 12.122.239.103 ip_proto tcp src_port 26592 dst_port 10602 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10822 flower src_mac 02:45:d6:21:76:05 dst_mac 02:c0:51:18:df:f3 vlan_id 1459 vlan_ethtype 0x0800 src_ip 27.9.115.145 dst_ip 23.120.26.246 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10823 flower src_mac 02:3d:60:fb:45:83 dst_mac 02:f2:4f:c8:5c:48 vlan_id 2086 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10824 flower src_mac 02:79:e7:23:3a:e4 dst_mac 02:93:5b:c5:af:12 src_ip 19.93.214.248 dst_ip 84.69.106.226 ip_proto udp src_port 43237 dst_port 6067 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10825 flower src_mac 02:eb:9f:41:ff:f3 dst_mac 02:89:1c:db:55:31 vlan_id 2340 vlan_ethtype ipv4 src_ip 96.251.214.53 dst_ip 86.139.248.119 ip_proto tcp src_port 60483 dst_port 49002 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10826 flower src_mac 02:4c:1e:3a:7b:c6 dst_mac 02:dc:a1:bc:c6:56 vlan_id 787 vlan_ethtype 0x0800 src_ip 118.187.162.245 dst_ip 125.176.123.207 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10827 flower src_mac 02:84:dc:76:35:09 dst_mac 02:75:1c:bd:98:e6 vlan_id 1545 vlan_ethtype 0x0800 src_ip 65.235.48.186 dst_ip 42.176.192.120 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10828 flower src_mac 02:42:22:b2:4e:29 dst_mac 02:ab:93:f6:18:07 src_ip 15.36.35.210 dst_ip 18.84.8.135 ip_proto tcp src_port 15545 dst_port 56806 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10829 flower src_mac 02:56:56:50:77:0c dst_mac 02:82:e7:33:2d:ed action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10830 flower src_mac 02:d5:db:31:7b:e2 dst_mac 02:fc:68:cc:d9:16 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10831 flower src_mac 02:59:c6:96:96:91 dst_mac 02:3a:de:6e:ac:27 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10832 flower src_mac 02:83:a5:b0:fe:52 dst_mac 02:47:53:23:4f:ab action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10833 flower src_mac 02:04:1f:aa:a2:01 dst_mac 02:0c:f7:db:a4:81 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10834 flower src_mac 02:27:31:e3:7d:08 dst_mac 02:36:c1:19:f7:e0 vlan_id 1578 vlan_ethtype ipv4 src_ip 63.166.227.98 dst_ip 52.209.219.169 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10835 flower src_mac 02:de:e1:8d:a0:37 dst_mac 02:04:7a:72:23:87 vlan_id 3245 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10836 flower src_mac 02:71:10:9c:d2:d1 dst_mac 02:94:5f:db:91:23 vlan_id 3031 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10837 flower src_mac 02:a1:0d:70:52:4e dst_mac 02:5f:91:47:d6:8a src_ip 74.190.26.70 dst_ip 126.61.144.230 action drop && tc filter add dev swp1 ingress protocol ip pref 10838 flower src_mac 02:1a:c9:24:0e:a0 dst_mac 02:ed:7d:78:25:33 src_ip 14.47.92.5 dst_ip 85.117.209.220 ip_proto udp src_port 51031 dst_port 20088 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10839 flower src_mac 02:e4:fb:26:a4:c4 dst_mac 02:fd:e2:f3:be:8a vlan_id 436 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10840 flower src_mac 02:93:be:69:8e:7b dst_mac 02:62:74:36:1f:5d src_ip 100.46.14.245 dst_ip 99.12.194.8 ip_proto icmp code 71 type 13 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10841 flower src_mac 02:d5:1d:9d:01:17 dst_mac 02:a1:38:a5:cf:90 action trap && tc filter add dev swp1 ingress protocol ip pref 10842 flower src_mac 02:64:cd:cb:bf:0c dst_mac 02:b5:b3:02:b0:c6 src_ip 30.248.78.235 dst_ip 17.248.22.50 ip_proto icmp code 154 type 4 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10843 flower src_mac 02:6a:ab:6d:8e:e6 dst_mac 02:5d:4a:64:ee:e4 vlan_id 2164 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10844 flower src_mac 02:b2:c5:eb:ea:63 dst_mac 02:52:27:75:25:96 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10845 flower src_mac 02:14:9d:18:41:f1 dst_mac 02:22:f1:f1:cb:c3 src_ip 124.61.93.154 dst_ip 70.54.239.142 ip_proto icmp code 194 type 16 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10846 flower src_mac 02:47:fb:15:3a:46 dst_mac 02:01:2b:51:d4:7e vlan_id 868 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10847 flower src_mac 02:59:d1:1c:84:72 dst_mac 02:47:2e:88:06:53 src_ip 126.122.9.29 dst_ip 31.70.100.140 ip_proto tcp src_port 49509 dst_port 47167 action drop && tc filter add dev swp1 ingress protocol ip pref 10848 flower src_mac 02:01:9f:ae:03:9c dst_mac 02:80:3b:b5:e2:e9 src_ip 59.51.33.225 dst_ip 88.100.193.246 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10849 flower src_mac 02:fa:8a:e6:78:a0 dst_mac 02:11:19:39:52:4f action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10850 flower src_mac 02:ff:fe:74:3a:75 dst_mac 02:14:d9:a2:76:83 vlan_id 1395 vlan_ethtype ipv4 src_ip 40.232.15.73 dst_ip 20.179.213.37 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10851 flower src_mac 02:0d:1f:eb:05:55 dst_mac 02:4b:22:0c:bb:c2 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10852 flower src_mac 02:62:8c:00:99:44 dst_mac 02:98:03:d6:52:c1 action trap && tc filter add dev swp1 ingress protocol ip pref 10853 flower src_mac 02:6f:a4:0d:12:2b dst_mac 02:85:d5:3c:83:ab src_ip 15.136.77.219 dst_ip 18.9.200.126 ip_proto tcp src_port 15574 dst_port 24622 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10854 flower src_mac 02:ef:53:38:18:e3 dst_mac 02:55:90:2d:e5:51 src_ip 30.120.36.208 dst_ip 114.188.4.71 ip_proto udp src_port 17933 dst_port 48242 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10855 flower src_mac 02:87:00:c9:25:48 dst_mac 02:6f:e7:1f:53:2e vlan_id 2902 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10856 flower src_mac 02:d4:a5:bc:af:da dst_mac 02:54:6d:32:a8:dc vlan_id 399 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 10857 flower src_mac 02:50:73:14:56:72 dst_mac 02:d1:12:96:2d:fa src_ip 98.174.93.86 dst_ip 54.115.34.14 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10858 flower src_mac 02:78:35:bc:52:72 dst_mac 02:92:b3:01:03:71 vlan_id 3529 vlan_ethtype 0x0800 src_ip 13.96.86.141 dst_ip 88.103.189.19 ip_proto tcp src_port 55484 dst_port 42645 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10859 flower src_mac 02:70:02:5d:44:c5 dst_mac 02:5d:ca:cb:e1:28 vlan_id 70 vlan_ethtype ip src_ip 55.10.29.167 dst_ip 96.204.2.58 ip_proto udp src_port 37425 dst_port 47166 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10860 flower src_mac 02:d6:62:01:85:01 dst_mac 02:ed:46:89:30:c7 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10861 flower src_mac 02:e1:f5:e7:d6:4b dst_mac 02:8d:ce:07:b1:09 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10862 flower src_mac 02:14:d5:4a:ef:1c dst_mac 02:29:08:89:0f:81 vlan_id 3864 vlan_ethtype ip src_ip 56.190.0.201 dst_ip 57.58.251.106 ip_proto udp src_port 20711 dst_port 15089 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10863 flower src_mac 02:a2:72:8d:e3:be dst_mac 02:e0:04:7e:68:9f vlan_id 194 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10864 flower src_mac 02:c9:06:34:e1:56 dst_mac 02:e1:ca:d0:5c:f1 src_ip 83.136.179.208 dst_ip 50.95.130.3 ip_proto tcp src_port 61273 dst_port 20666 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10865 flower src_mac 02:c1:5e:24:f4:7b dst_mac 02:c7:39:4f:cf:26 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10866 flower src_mac 02:d8:9b:26:37:5f dst_mac 02:e7:7b:75:df:c2 vlan_id 2312 vlan_ethtype ip src_ip 98.216.41.151 dst_ip 46.219.75.198 ip_proto udp src_port 61232 dst_port 36810 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10867 flower src_mac 02:18:b7:d4:70:d4 dst_mac 02:0c:71:ee:03:85 vlan_id 403 vlan_ethtype ip src_ip 29.102.26.164 dst_ip 55.91.26.43 ip_proto tcp src_port 60630 dst_port 53615 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10868 flower src_mac 02:84:b1:77:7a:ba dst_mac 02:58:8d:f0:63:c6 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10869 flower src_mac 02:a8:5c:67:5b:98 dst_mac 02:2f:2d:01:0b:70 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10870 flower src_mac 02:5b:32:3e:91:e7 dst_mac 02:82:69:83:4c:1b action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10871 flower src_mac 02:0c:4a:06:8d:1f dst_mac 02:39:f9:e9:c0:df vlan_id 3224 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10872 flower src_mac 02:8d:0b:03:d5:1b dst_mac 02:7e:8c:55:0d:9b action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10873 flower src_mac 02:b7:f9:3e:2f:e8 dst_mac 02:b5:a7:cd:fc:ee action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10874 flower src_mac 02:71:e3:d8:d5:47 dst_mac 02:0c:11:58:39:e6 src_ip 45.196.164.98 dst_ip 121.156.237.164 ip_proto icmp code 196 type 8 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10875 flower src_mac 02:4c:f3:03:89:1c dst_mac 02:ec:4e:bd:39:8a vlan_id 1789 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 10876 flower src_mac 02:fd:59:07:f9:44 dst_mac 02:ad:21:55:2b:23 src_ip 113.53.38.233 dst_ip 82.148.95.136 ip_proto icmp code 114 type 14 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10877 flower src_mac 02:e6:ee:cb:48:84 dst_mac 02:0e:c2:cf:9e:6d src_ip 74.159.20.215 dst_ip 103.156.200.24 ip_proto tcp src_port 64042 dst_port 64989 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10878 flower src_mac 02:8c:00:5c:cf:d5 dst_mac 02:90:18:5b:94:09 vlan_id 3001 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10879 flower src_mac 02:a1:49:3e:f1:83 dst_mac 02:90:76:9d:5c:aa action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10880 flower src_mac 02:44:44:cb:53:7b dst_mac 02:e4:7e:e0:19:b2 src_ip 43.247.185.72 dst_ip 22.76.96.126 ip_proto tcp src_port 49843 dst_port 22922 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10881 flower src_mac 02:dc:6c:5f:0f:12 dst_mac 02:fb:0c:f7:22:67 src_ip 79.209.97.175 dst_ip 67.89.55.50 ip_proto tcp src_port 61328 dst_port 30421 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10882 flower src_mac 02:40:19:b9:c3:d9 dst_mac 02:c9:35:a8:5e:8f action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10883 flower src_mac 02:f8:f7:8f:6d:90 dst_mac 02:e1:2d:dd:22:bf vlan_id 3624 vlan_ethtype ip src_ip 47.242.59.58 dst_ip 108.204.140.191 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10884 flower src_mac 02:bc:1b:21:77:49 dst_mac 02:ce:a7:e9:fc:18 vlan_id 1502 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10885 flower src_mac 02:58:47:7f:12:c9 dst_mac 02:72:28:fa:60:82 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10886 flower src_mac 02:8f:e0:7f:ee:71 dst_mac 02:ca:ca:b2:2a:2a action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10887 flower src_mac 02:df:c5:5f:aa:d3 dst_mac 02:ce:66:1c:dd:eb vlan_id 3280 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10888 flower src_mac 02:be:a2:cb:bd:50 dst_mac 02:19:de:94:46:1b vlan_id 2509 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10889 flower src_mac 02:fd:3b:6c:e1:9b dst_mac 02:21:64:da:99:c4 vlan_id 1115 vlan_ethtype ip src_ip 77.63.245.66 dst_ip 77.194.202.52 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10890 flower src_mac 02:75:f9:ea:2c:c4 dst_mac 02:89:2a:1a:42:71 vlan_id 1962 vlan_ethtype 0x0800 src_ip 48.125.114.28 dst_ip 52.25.135.97 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10891 flower src_mac 02:ae:9e:37:b4:8f dst_mac 02:94:36:c1:e0:f1 src_ip 81.232.138.189 dst_ip 99.96.6.56 ip_proto icmp code 160 type 8 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10892 flower src_mac 02:fc:28:26:54:86 dst_mac 02:3a:3d:a9:cb:7c vlan_id 3728 vlan_ethtype 0x0800 src_ip 78.156.248.9 dst_ip 72.127.127.83 ip_proto udp src_port 24827 dst_port 15987 action drop && tc filter add dev swp1 ingress protocol ip pref 10893 flower src_mac 02:83:85:17:c4:91 dst_mac 02:ae:0e:01:fd:d7 src_ip 73.160.176.22 dst_ip 125.174.249.158 ip_proto tcp src_port 65396 dst_port 12744 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10894 flower src_mac 02:96:f4:9c:18:dd dst_mac 02:52:76:d4:f9:36 vlan_id 2259 vlan_ethtype ipv4 src_ip 91.216.82.49 dst_ip 113.127.210.137 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10895 flower src_mac 02:1e:59:be:6f:c1 dst_mac 02:49:0f:1d:08:24 vlan_id 1995 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10896 flower src_mac 02:dd:f7:b4:0e:df dst_mac 02:32:e5:0c:37:70 src_ip 25.104.14.137 dst_ip 92.210.200.42 ip_proto tcp src_port 31041 dst_port 34475 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10897 flower src_mac 02:23:3e:a9:ce:64 dst_mac 02:5d:b7:15:fc:19 vlan_id 2609 vlan_ethtype 0x0800 src_ip 93.186.154.7 dst_ip 70.120.153.137 ip_proto udp src_port 48522 dst_port 45024 action trap && tc filter add dev swp1 ingress protocol ip pref 10898 flower src_mac 02:3a:40:7d:48:51 dst_mac 02:4e:b2:43:54:5e src_ip 22.55.186.129 dst_ip 53.57.140.233 ip_proto tcp src_port 45443 dst_port 6284 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10899 flower src_mac 02:21:6c:2d:93:b3 dst_mac 02:c2:8a:22:ba:54 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10900 flower src_mac 02:ec:c7:e5:48:ce dst_mac 02:be:d6:f3:06:24 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10901 flower src_mac 02:96:0e:bd:3f:92 dst_mac 02:d2:e6:d0:70:ba vlan_id 3101 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10902 flower src_mac 02:54:d5:45:4c:70 dst_mac 02:b3:f8:27:b1:4e vlan_id 2088 vlan_ethtype 0x0800 src_ip 71.25.252.207 dst_ip 14.127.168.44 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10903 flower src_mac 02:d4:9f:71:d1:de dst_mac 02:a2:a7:5b:c1:7c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10904 flower src_mac 02:f7:3e:82:76:91 dst_mac 02:28:0d:c1:c3:63 vlan_id 805 vlan_ethtype ipv4 src_ip 13.145.31.208 dst_ip 44.145.102.156 ip_proto udp src_port 41436 dst_port 5343 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10905 flower src_mac 02:08:77:0a:c6:44 dst_mac 02:b2:8b:9d:3f:3e vlan_id 35 vlan_ethtype 0x0800 src_ip 42.185.232.155 dst_ip 123.255.112.115 ip_proto udp src_port 28802 dst_port 29188 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10906 flower src_mac 02:2f:75:f3:a8:a6 dst_mac 02:6c:8a:e2:3c:ad action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10907 flower src_mac 02:78:97:63:a4:ac dst_mac 02:5a:d7:74:7f:01 vlan_id 3218 vlan_ethtype 0x0800 src_ip 112.186.24.169 dst_ip 24.154.120.106 ip_proto udp src_port 57710 dst_port 21367 action pass && tc filter add dev swp1 ingress protocol ip pref 10908 flower src_mac 02:4e:89:a7:af:86 dst_mac 02:dd:22:9a:c7:8d src_ip 118.207.103.142 dst_ip 100.166.214.95 ip_proto tcp src_port 57994 dst_port 7148 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10909 flower src_mac 02:40:b7:32:cb:88 dst_mac 02:95:a6:8f:70:41 src_ip 64.113.224.1 dst_ip 92.29.125.229 ip_proto udp src_port 10841 dst_port 58393 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10910 flower src_mac 02:9c:69:5e:7f:99 dst_mac 02:df:fe:82:51:64 vlan_id 2233 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10911 flower src_mac 02:8e:7e:79:f9:fe dst_mac 02:5f:09:b1:75:f3 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10912 flower src_mac 02:bc:0b:86:bc:76 dst_mac 02:9b:6f:4b:e6:cb src_ip 105.236.215.108 dst_ip 104.51.70.122 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10913 flower src_mac 02:29:f7:4f:fa:06 dst_mac 02:19:16:63:b4:6b vlan_id 949 vlan_ethtype ip src_ip 83.214.105.249 dst_ip 19.76.8.88 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10914 flower src_mac 02:5d:bc:a8:90:8e dst_mac 02:d7:c4:ba:00:26 vlan_id 3656 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 10915 flower src_mac 02:c8:6c:df:78:b8 dst_mac 02:4f:d4:ee:c7:ca src_ip 111.99.61.205 dst_ip 16.236.6.98 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10916 flower src_mac 02:a4:68:46:5e:dc dst_mac 02:93:b1:da:41:6c src_ip 73.218.28.215 dst_ip 99.42.148.239 ip_proto icmp code 202 type 8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10917 flower src_mac 02:d4:9e:4a:2d:fd dst_mac 02:e8:39:fa:7e:13 vlan_id 2835 vlan_ethtype 0x0800 src_ip 124.72.106.250 dst_ip 117.75.173.12 ip_proto udp src_port 52786 dst_port 44599 action pass && tc filter add dev swp1 ingress protocol ip pref 10918 flower src_mac 02:1f:b3:a6:f1:1b dst_mac 02:5b:3a:a4:f6:ff src_ip 85.141.4.218 dst_ip 120.94.122.157 ip_proto udp src_port 30297 dst_port 43706 action trap && tc filter add dev swp1 ingress protocol ip pref 10919 flower src_mac 02:8a:86:81:0d:37 dst_mac 02:f3:38:be:2a:e4 src_ip 60.104.207.163 dst_ip 84.162.199.34 ip_proto icmp code 45 type 18 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10920 flower src_mac 02:3e:37:a4:36:7b dst_mac 02:0d:85:8a:44:4a action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10921 flower src_mac 02:2d:7a:74:e7:91 dst_mac 02:c9:9d:0e:ce:72 src_ip 87.64.250.184 dst_ip 70.238.24.248 ip_proto tcp src_port 36950 dst_port 49089 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10922 flower src_mac 02:84:65:6e:ee:a8 dst_mac 02:98:76:b2:59:03 vlan_id 922 vlan_ethtype ip src_ip 12.130.127.167 dst_ip 62.211.47.12 ip_proto udp src_port 24389 dst_port 10215 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10923 flower src_mac 02:db:e0:dc:a0:b7 dst_mac 02:00:8e:bf:5d:8e action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10924 flower src_mac 02:2f:a8:0c:5c:de dst_mac 02:ca:18:b5:f5:5f src_ip 54.63.51.245 dst_ip 53.33.22.82 ip_proto tcp src_port 31915 dst_port 21446 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10925 flower src_mac 02:ab:05:4c:54:ef dst_mac 02:d3:b2:32:bb:18 vlan_id 2980 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10926 flower src_mac 02:18:6e:01:c7:1d dst_mac 02:3b:5f:4f:a0:a9 vlan_id 1960 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10927 flower src_mac 02:d7:e6:84:60:ed dst_mac 02:ce:5a:63:4c:9b vlan_id 3393 vlan_ethtype ip src_ip 36.23.207.242 dst_ip 104.232.94.73 ip_proto tcp src_port 24992 dst_port 10511 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10928 flower src_mac 02:cf:9b:42:2a:ca dst_mac 02:46:c8:4f:98:30 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10929 flower src_mac 02:91:f0:f2:b0:52 dst_mac 02:8c:83:81:f1:3e vlan_id 1444 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ip pref 10930 flower src_mac 02:99:dd:0a:5f:4e dst_mac 02:e2:ad:ad:d0:2e src_ip 53.210.75.130 dst_ip 104.124.49.182 ip_proto tcp src_port 12342 dst_port 55232 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10931 flower src_mac 02:0c:77:70:18:da dst_mac 02:75:58:88:7a:e7 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10932 flower src_mac 02:0c:f3:17:c9:0e dst_mac 02:17:2d:16:0c:25 vlan_id 3789 vlan_ethtype ip src_ip 122.74.184.130 dst_ip 109.145.5.4 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10933 flower src_mac 02:98:29:b0:21:d7 dst_mac 02:a8:0a:70:5c:4e action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10934 flower src_mac 02:35:9e:0b:66:a5 dst_mac 02:f6:8e:3a:d6:9b src_ip 95.19.56.216 dst_ip 109.19.159.7 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10935 flower src_mac 02:23:b4:00:95:ee dst_mac 02:4e:41:26:79:43 vlan_id 2660 vlan_ethtype ipv4 src_ip 109.40.107.52 dst_ip 105.154.3.186 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10936 flower src_mac 02:ad:ea:35:2b:1a dst_mac 02:e4:5e:24:bc:28 vlan_id 3447 vlan_ethtype ipv4 src_ip 37.124.112.242 dst_ip 25.33.175.135 ip_proto tcp src_port 1897 dst_port 35952 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10937 flower src_mac 02:26:23:40:33:8e dst_mac 02:26:76:3a:02:29 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10938 flower src_mac 02:0f:ae:5c:65:71 dst_mac 02:75:37:27:41:69 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10939 flower src_mac 02:c5:ce:63:0c:4f dst_mac 02:79:fc:3a:5c:36 src_ip 108.156.102.112 dst_ip 101.213.165.46 ip_proto tcp src_port 1304 dst_port 11381 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10940 flower src_mac 02:51:6d:e7:5a:1b dst_mac 02:9a:90:88:7e:b6 vlan_id 2378 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10941 flower src_mac 02:a2:45:6d:06:44 dst_mac 02:87:30:f1:f3:5d vlan_id 1432 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10942 flower src_mac 02:dd:74:0b:43:4c dst_mac 02:e2:c9:4b:95:9a action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10943 flower src_mac 02:b2:4a:7a:17:d3 dst_mac 02:5a:48:54:b1:e0 vlan_id 655 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10944 flower src_mac 02:58:e1:34:82:bd dst_mac 02:1a:1b:e5:bb:5c vlan_id 153 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10945 flower src_mac 02:f5:72:f9:74:ad dst_mac 02:08:de:aa:93:d0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10946 flower src_mac 02:c6:a6:fb:68:ec dst_mac 02:f5:5f:3b:2e:31 vlan_id 884 vlan_ethtype ipv4 src_ip 42.171.15.111 dst_ip 108.199.36.180 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10947 flower src_mac 02:eb:d8:18:f8:f9 dst_mac 02:58:98:66:2b:9d action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10948 flower src_mac 02:78:82:4e:39:41 dst_mac 02:73:60:29:7c:27 vlan_id 2632 vlan_ethtype ip src_ip 118.180.42.145 dst_ip 117.46.185.149 ip_proto udp src_port 50030 dst_port 20630 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10949 flower src_mac 02:dd:a0:a4:be:60 dst_mac 02:4a:5d:bf:8b:26 vlan_id 439 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10950 flower src_mac 02:93:78:d2:e3:d9 dst_mac 02:02:ca:74:93:e2 vlan_id 1065 vlan_ethtype ip src_ip 94.191.159.184 dst_ip 85.244.12.157 ip_proto tcp src_port 64174 dst_port 29224 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10951 flower src_mac 02:28:aa:c7:8e:89 dst_mac 02:be:9d:ae:96:69 src_ip 87.51.134.104 dst_ip 100.198.171.28 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10952 flower src_mac 02:86:1d:78:b3:98 dst_mac 02:00:1d:f1:e1:b8 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10953 flower src_mac 02:d1:24:c6:cb:19 dst_mac 02:da:ab:db:98:62 vlan_id 748 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10954 flower src_mac 02:70:50:db:f2:cf dst_mac 02:db:eb:18:da:c3 src_ip 20.162.14.147 dst_ip 37.149.208.223 ip_proto udp src_port 36770 dst_port 34851 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10955 flower src_mac 02:1d:ff:fa:0b:21 dst_mac 02:7d:d4:c9:92:01 src_ip 17.117.169.85 dst_ip 95.111.129.240 ip_proto icmp code 224 type 8 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10956 flower src_mac 02:6d:c4:8f:00:99 dst_mac 02:8c:21:0f:5f:06 vlan_id 2968 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10957 flower src_mac 02:d7:2b:81:0b:10 dst_mac 02:35:5c:f0:87:ee src_ip 79.119.178.215 dst_ip 104.173.19.167 ip_proto udp src_port 41257 dst_port 29716 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10958 flower src_mac 02:bd:c3:92:e3:2c dst_mac 02:60:2e:8a:6e:c0 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10959 flower src_mac 02:5b:2b:68:9a:ab dst_mac 02:13:4d:64:ef:94 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10960 flower src_mac 02:fb:26:6d:e5:38 dst_mac 02:93:fb:96:93:9f action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10961 flower src_mac 02:5e:8b:79:47:69 dst_mac 02:79:15:15:09:89 vlan_id 3548 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10962 flower src_mac 02:0c:4c:09:31:56 dst_mac 02:15:04:fa:c4:e6 vlan_id 134 vlan_ethtype ipv4 src_ip 86.186.118.205 dst_ip 50.233.149.220 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10963 flower src_mac 02:5d:79:56:18:20 dst_mac 02:f5:92:86:26:49 action drop && tc filter add dev swp1 ingress protocol ip pref 10964 flower src_mac 02:7f:eb:1f:a1:59 dst_mac 02:56:8e:9f:81:91 src_ip 57.221.215.193 dst_ip 57.214.35.215 ip_proto tcp src_port 61447 dst_port 7389 action pass && tc filter add dev swp1 ingress protocol ip pref 10965 flower src_mac 02:a6:b3:89:35:4d dst_mac 02:1b:22:8b:03:dc src_ip 108.54.221.71 dst_ip 104.12.60.96 ip_proto udp src_port 56915 dst_port 22443 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10966 flower src_mac 02:aa:90:ef:ea:82 dst_mac 02:40:36:a5:58:cc vlan_id 699 vlan_ethtype ipv4 src_ip 20.91.148.124 dst_ip 66.149.147.127 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10967 flower src_mac 02:a5:90:b6:cc:50 dst_mac 02:68:a5:0a:55:3d src_ip 68.71.120.17 dst_ip 83.62.153.87 ip_proto udp src_port 17553 dst_port 40164 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10968 flower src_mac 02:6d:5f:e9:77:76 dst_mac 02:02:88:dc:10:61 vlan_id 2109 vlan_ethtype ip src_ip 93.105.41.213 dst_ip 42.236.81.79 ip_proto tcp src_port 155 dst_port 51540 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10969 flower src_mac 02:b6:ef:1d:cf:95 dst_mac 02:39:ac:e5:f2:61 vlan_id 1127 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10970 flower src_mac 02:ab:40:66:40:2c dst_mac 02:6d:5b:01:6a:40 vlan_id 2441 vlan_ethtype ipv4 src_ip 116.252.245.3 dst_ip 35.113.10.199 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10971 flower src_mac 02:86:0c:b6:ec:e4 dst_mac 02:02:b5:49:3e:da vlan_id 982 vlan_ethtype ipv4 src_ip 47.70.91.106 dst_ip 50.233.70.87 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10972 flower src_mac 02:f7:aa:16:37:ff dst_mac 02:4e:a6:8c:99:da src_ip 45.112.60.236 dst_ip 69.12.248.25 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10973 flower src_mac 02:fb:87:30:0b:2e dst_mac 02:65:a1:3a:cf:77 src_ip 77.222.7.69 dst_ip 84.35.188.191 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10974 flower src_mac 02:f6:34:aa:86:9c dst_mac 02:f7:e1:87:81:5a action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10975 flower src_mac 02:23:fe:0e:c1:bc dst_mac 02:bd:ce:e7:56:04 vlan_id 1019 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10976 flower src_mac 02:2a:44:6a:52:c9 dst_mac 02:aa:5c:08:af:79 src_ip 96.234.218.44 dst_ip 117.97.234.238 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10977 flower src_mac 02:2a:4d:69:98:50 dst_mac 02:86:d9:c0:fc:3d vlan_id 1239 vlan_ethtype 0x0800 src_ip 44.46.234.34 dst_ip 109.86.205.195 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10978 flower src_mac 02:0c:19:f1:05:76 dst_mac 02:2d:39:dd:95:72 vlan_id 2420 vlan_ethtype ip src_ip 73.9.82.191 dst_ip 47.30.150.186 action pass && tc filter add dev swp1 ingress protocol ip pref 10979 flower src_mac 02:2a:11:da:4b:9c dst_mac 02:25:52:24:7e:9b src_ip 86.171.223.35 dst_ip 59.116.120.98 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10980 flower src_mac 02:09:55:3a:84:f6 dst_mac 02:45:17:15:c6:dc action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10981 flower src_mac 02:72:6b:d6:72:46 dst_mac 02:5c:61:71:81:d8 vlan_id 2440 vlan_ethtype 0x0800 src_ip 50.233.36.146 dst_ip 101.119.230.58 ip_proto udp src_port 51435 dst_port 25320 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10982 flower src_mac 02:0c:98:ac:9b:ae dst_mac 02:02:1c:1f:3a:ff vlan_id 3085 vlan_ethtype ip src_ip 79.154.142.22 dst_ip 76.5.14.120 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10983 flower src_mac 02:18:1b:8a:83:23 dst_mac 02:ca:e5:2a:d4:41 vlan_id 3591 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10984 flower src_mac 02:dd:fd:ab:44:24 dst_mac 02:e8:3d:87:c6:c3 vlan_id 3770 vlan_ethtype ipv4 src_ip 63.241.113.157 dst_ip 59.40.253.118 ip_proto udp src_port 14643 dst_port 48142 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10985 flower src_mac 02:bb:69:11:82:86 dst_mac 02:15:fa:63:ca:56 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10986 flower src_mac 02:76:1d:63:b3:d0 dst_mac 02:94:e5:95:25:87 vlan_id 1597 vlan_ethtype ip src_ip 71.158.38.123 dst_ip 107.145.66.202 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10987 flower src_mac 02:ba:f3:de:1d:cf dst_mac 02:43:ec:7d:dc:f7 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10988 flower src_mac 02:8a:8d:62:ea:08 dst_mac 02:7f:a5:f8:47:a5 vlan_id 2404 vlan_ethtype 0x0800 src_ip 55.115.122.96 dst_ip 37.27.128.189 action pass && tc filter add dev swp1 ingress protocol ip pref 10989 flower src_mac 02:7c:b6:d1:ae:9d dst_mac 02:df:c1:7f:97:33 src_ip 28.16.181.43 dst_ip 94.62.154.47 ip_proto icmp code 166 type 0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10990 flower src_mac 02:a8:dd:78:cf:0b dst_mac 02:36:1c:31:d2:61 vlan_id 2470 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10991 flower src_mac 02:27:b2:b5:d7:75 dst_mac 02:6c:a8:9b:1f:cb src_ip 82.241.194.43 dst_ip 66.92.246.240 ip_proto tcp src_port 1658 dst_port 16139 action pass && tc filter add dev swp1 ingress protocol ip pref 10992 flower src_mac 02:87:1f:13:44:5e dst_mac 02:1d:cc:56:68:b6 src_ip 115.233.33.129 dst_ip 63.44.135.121 ip_proto icmp code 202 type 13 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10993 flower src_mac 02:d7:8e:da:af:52 dst_mac 02:0f:04:1c:66:ea vlan_id 2975 vlan_ethtype ip src_ip 94.107.237.250 dst_ip 88.200.11.63 ip_proto tcp src_port 59502 dst_port 51789 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10994 flower src_mac 02:dc:4f:11:51:cc dst_mac 02:85:07:1e:37:5a src_ip 86.207.246.216 dst_ip 118.192.196.132 ip_proto udp src_port 30512 dst_port 60354 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10995 flower src_mac 02:10:39:be:9b:66 dst_mac 02:0a:8f:e1:dc:fe src_ip 63.149.111.54 dst_ip 37.67.194.246 ip_proto icmp code 95 type 11 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10996 flower src_mac 02:fc:2b:9f:60:ef dst_mac 02:5a:41:82:a2:12 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10997 flower src_mac 02:a8:f4:ea:1e:fd dst_mac 02:1e:69:8f:d0:82 vlan_id 2219 vlan_ethtype 0x0800 src_ip 69.229.58.109 dst_ip 78.82.188.139 action drop && tc filter add dev swp1 ingress protocol ip pref 10998 flower src_mac 02:42:ed:36:0d:83 dst_mac 02:3b:45:e4:11:84 src_ip 103.250.55.236 dst_ip 51.49.170.244 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10999 flower src_mac 02:b7:fe:75:1c:10 dst_mac 02:ff:ab:99:04:08 vlan_id 97 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11000 flower src_mac 02:40:c4:67:01:cc dst_mac 02:f6:10:0c:89:8a vlan_id 1285 vlan_ethtype ipv4 src_ip 63.120.32.95 dst_ip 105.78.180.121 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11001 flower src_mac 02:af:c1:71:22:fb dst_mac 02:99:93:3d:ce:40 src_ip 102.254.171.23 dst_ip 71.234.180.29 ip_proto icmp code 115 type 14 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11002 flower src_mac 02:74:33:e3:1f:cf dst_mac 02:df:54:45:ae:64 vlan_id 3502 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11003 flower src_mac 02:21:bc:d5:32:9b dst_mac 02:a7:36:20:34:15 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11004 flower src_mac 02:dc:9b:e2:fd:5b dst_mac 02:0b:57:47:8c:1c src_ip 87.234.107.64 dst_ip 75.88.224.16 ip_proto tcp src_port 22763 dst_port 2612 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11005 flower src_mac 02:19:bc:f8:4b:fc dst_mac 02:e8:43:d6:56:93 vlan_id 3412 vlan_ethtype ip src_ip 120.140.76.168 dst_ip 98.139.249.22 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11006 flower src_mac 02:af:fb:3c:34:ec dst_mac 02:31:e8:b1:86:b8 vlan_id 2586 vlan_ethtype 0x0800 src_ip 11.91.215.150 dst_ip 42.87.198.13 ip_proto tcp src_port 12000 dst_port 7050 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11007 flower src_mac 02:d0:ba:e6:bb:67 dst_mac 02:a4:4a:14:6b:53 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11008 flower src_mac 02:bf:6d:a5:6a:7e dst_mac 02:5b:37:65:af:d6 vlan_id 478 vlan_ethtype ip src_ip 75.54.45.46 dst_ip 67.5.80.4 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11009 flower src_mac 02:e3:40:40:da:d8 dst_mac 02:3e:2a:5e:78:9f vlan_id 1186 vlan_ethtype 0x0800 src_ip 67.28.155.213 dst_ip 111.62.26.182 ip_proto udp src_port 6069 dst_port 129 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11010 flower src_mac 02:db:6c:32:d4:f1 dst_mac 02:08:1d:32:42:5a src_ip 96.116.156.196 dst_ip 64.109.203.20 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11011 flower src_mac 02:96:fd:8d:84:b0 dst_mac 02:d4:40:8e:df:92 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11012 flower src_mac 02:23:bc:62:95:d1 dst_mac 02:c8:56:1b:c4:98 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11013 flower src_mac 02:33:d1:83:fc:df dst_mac 02:86:b3:37:48:4b action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11014 flower src_mac 02:3b:e8:93:d1:83 dst_mac 02:0d:90:0d:0f:72 vlan_id 1649 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11015 flower src_mac 02:63:7f:4e:b0:05 dst_mac 02:46:8e:eb:d9:83 vlan_id 887 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 11016 flower src_mac 02:a0:37:74:e4:72 dst_mac 02:0e:6d:2c:15:23 src_ip 54.29.120.122 dst_ip 75.225.154.237 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11017 flower src_mac 02:eb:e1:b3:3b:c9 dst_mac 02:b5:5a:ed:ca:1d vlan_id 2619 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11018 flower src_mac 02:31:69:6f:ef:70 dst_mac 02:47:b6:f6:b1:7e vlan_id 3641 vlan_ethtype ip src_ip 21.167.190.236 dst_ip 35.98.95.35 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11019 flower src_mac 02:1b:99:53:24:b8 dst_mac 02:c3:53:a3:23:87 src_ip 68.185.255.121 dst_ip 59.239.83.73 ip_proto udp src_port 50660 dst_port 3084 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11020 flower src_mac 02:b1:9e:d0:8e:cd dst_mac 02:b9:03:a9:02:69 vlan_id 3983 vlan_ethtype 0x0800 src_ip 21.116.71.65 dst_ip 51.211.71.152 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11021 flower src_mac 02:41:23:27:0a:d0 dst_mac 02:75:32:42:b5:5d action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11022 flower src_mac 02:27:f7:89:ac:38 dst_mac 02:08:53:8a:70:a2 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11023 flower src_mac 02:79:31:a8:9f:b3 dst_mac 02:c9:b7:85:94:e2 vlan_id 3544 vlan_ethtype ipv4 src_ip 101.230.243.164 dst_ip 29.106.33.112 ip_proto tcp src_port 2203 dst_port 13050 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11024 flower src_mac 02:a7:91:71:b0:cf dst_mac 02:d4:33:03:13:78 src_ip 61.185.23.230 dst_ip 82.42.178.160 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11025 flower src_mac 02:cd:c8:75:73:5a dst_mac 02:29:82:98:48:36 vlan_id 3272 vlan_ethtype 0x0800 src_ip 110.170.28.35 dst_ip 116.50.45.87 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11026 flower src_mac 02:ed:f2:55:9c:4b dst_mac 02:04:22:a9:f1:c4 vlan_id 1994 vlan_ethtype ip src_ip 51.34.206.70 dst_ip 69.151.88.206 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11027 flower src_mac 02:23:0a:00:44:e3 dst_mac 02:e1:24:a1:d0:9f action pass && tc filter add dev swp1 ingress protocol ip pref 11028 flower src_mac 02:b7:a7:e2:5a:56 dst_mac 02:4b:4d:73:f0:f3 src_ip 52.12.255.209 dst_ip 37.93.68.212 ip_proto icmp code 209 type 14 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11029 flower src_mac 02:13:30:b0:b9:af dst_mac 02:ce:b4:b9:76:35 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11030 flower src_mac 02:15:59:dc:77:d3 dst_mac 02:c6:64:f4:80:01 src_ip 103.138.242.47 dst_ip 110.129.255.77 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11031 flower src_mac 02:46:4a:53:63:6d dst_mac 02:20:82:4b:bf:69 src_ip 40.60.47.123 dst_ip 59.195.54.227 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11032 flower src_mac 02:c2:77:50:43:40 dst_mac 02:4e:8b:27:7e:7d vlan_id 3425 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11033 flower src_mac 02:ba:b4:d1:d2:89 dst_mac 02:6b:1b:24:fb:9f vlan_id 1378 vlan_ethtype ip src_ip 57.162.230.196 dst_ip 60.85.27.185 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11034 flower src_mac 02:68:fe:0c:3d:c1 dst_mac 02:61:ea:81:26:06 vlan_id 2521 vlan_ethtype ipv4 src_ip 72.201.139.185 dst_ip 13.211.183.130 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11035 flower src_mac 02:1f:6b:8d:f2:79 dst_mac 02:fb:d6:bd:e4:1f action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11036 flower src_mac 02:b8:99:29:7f:99 dst_mac 02:42:08:11:82:45 vlan_id 1634 vlan_ethtype 0x0800 src_ip 55.153.132.202 dst_ip 76.15.70.127 ip_proto tcp src_port 926 dst_port 56212 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11037 flower src_mac 02:cd:1d:16:73:1d dst_mac 02:8d:9e:9b:95:eb src_ip 103.218.217.185 dst_ip 98.189.114.141 ip_proto udp src_port 59487 dst_port 17943 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11038 flower src_mac 02:34:f4:84:82:9c dst_mac 02:a9:c5:d7:4c:08 vlan_id 198 vlan_ethtype ipv4 src_ip 92.116.199.224 dst_ip 30.122.145.70 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11039 flower src_mac 02:86:bf:9f:b6:59 dst_mac 02:b5:fc:55:d1:69 vlan_id 284 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11040 flower src_mac 02:07:f4:a8:44:e3 dst_mac 02:a3:d3:39:31:5a action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11041 flower src_mac 02:8d:41:9b:f0:b8 dst_mac 02:09:fb:9f:58:e6 vlan_id 2403 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11042 flower src_mac 02:27:77:95:42:af dst_mac 02:46:c3:df:85:e4 vlan_id 3060 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11043 flower src_mac 02:ba:10:75:ad:23 dst_mac 02:4d:72:0a:2f:19 vlan_id 497 vlan_ethtype ipv4 src_ip 19.21.10.222 dst_ip 57.142.248.41 ip_proto tcp src_port 55570 dst_port 22248 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11044 flower src_mac 02:1b:ce:dc:25:31 dst_mac 02:23:a8:e1:3d:81 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11045 flower src_mac 02:e0:19:01:5d:ba dst_mac 02:30:9d:18:cf:c1 vlan_id 4055 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11046 flower src_mac 02:4c:6c:c7:87:5f dst_mac 02:17:09:d1:be:af vlan_id 2759 vlan_ethtype ipv4 src_ip 12.242.59.71 dst_ip 47.108.97.212 ip_proto tcp src_port 10514 dst_port 54002 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11047 flower src_mac 02:ba:f8:c7:e7:05 dst_mac 02:fc:16:7a:e5:d5 vlan_id 1501 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11048 flower src_mac 02:82:db:a4:bf:e6 dst_mac 02:b6:0c:b2:99:b0 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11049 flower src_mac 02:35:b7:89:60:c2 dst_mac 02:31:2a:c8:b6:36 vlan_id 1311 vlan_ethtype ip src_ip 84.33.126.202 dst_ip 111.251.149.153 ip_proto udp src_port 61107 dst_port 36123 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11050 flower src_mac 02:24:09:ac:47:35 dst_mac 02:27:0e:2b:bc:42 vlan_id 973 vlan_ethtype 0x0800 src_ip 118.249.87.190 dst_ip 11.64.157.63 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11051 flower src_mac 02:8f:4b:ad:e6:f1 dst_mac 02:12:70:2e:84:40 vlan_id 2022 vlan_ethtype ipv4 src_ip 45.103.103.76 dst_ip 46.14.218.221 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11052 flower src_mac 02:92:b9:ea:33:f2 dst_mac 02:84:98:80:6a:e3 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11053 flower src_mac 02:17:e7:23:8b:3e dst_mac 02:61:63:ff:a9:3b vlan_id 2797 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11054 flower src_mac 02:bb:ca:20:02:3a dst_mac 02:fe:f0:14:34:43 vlan_id 2787 vlan_ethtype ipv4 src_ip 91.243.3.12 dst_ip 75.54.58.21 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11055 flower src_mac 02:1c:c9:97:8d:ee dst_mac 02:7b:62:fe:c7:dc src_ip 20.85.84.130 dst_ip 38.202.207.13 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11056 flower src_mac 02:cd:c7:1c:ec:03 dst_mac 02:00:55:49:95:3d src_ip 59.231.31.99 dst_ip 93.79.200.188 ip_proto icmp code 243 type 15 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11057 flower src_mac 02:2a:f7:d1:31:ca dst_mac 02:56:80:ac:af:d1 vlan_id 1482 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ip pref 11058 flower src_mac 02:c6:33:8f:83:89 dst_mac 02:45:30:aa:9a:24 src_ip 97.134.134.108 dst_ip 75.225.21.84 ip_proto udp src_port 62745 dst_port 34251 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11059 flower src_mac 02:f6:28:f3:04:b5 dst_mac 02:e5:97:cf:a5:f6 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11060 flower src_mac 02:ef:6b:81:ea:a7 dst_mac 02:5e:9f:d9:84:07 vlan_id 404 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11061 flower src_mac 02:25:53:98:64:cb dst_mac 02:94:53:de:28:24 src_ip 104.189.218.32 dst_ip 124.227.1.222 ip_proto tcp src_port 16196 dst_port 54303 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11062 flower src_mac 02:3c:90:3f:51:e3 dst_mac 02:c6:1b:24:ca:72 vlan_id 4078 vlan_ethtype ipv4 src_ip 113.133.29.246 dst_ip 14.34.141.181 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11063 flower src_mac 02:4d:5b:c1:12:9c dst_mac 02:f5:a6:f3:72:1f src_ip 126.223.98.224 dst_ip 126.35.143.28 ip_proto tcp src_port 22677 dst_port 4123 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11064 flower src_mac 02:87:9c:75:71:95 dst_mac 02:04:1b:47:d5:9e vlan_id 2011 vlan_ethtype ipv4 src_ip 117.218.160.94 dst_ip 69.175.134.76 ip_proto udp src_port 53638 dst_port 62785 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11065 flower src_mac 02:44:92:4b:37:d5 dst_mac 02:c3:57:df:4d:42 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11066 flower src_mac 02:81:64:99:70:db dst_mac 02:bb:28:41:49:1a vlan_id 2474 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11067 flower src_mac 02:48:ba:ed:f0:b3 dst_mac 02:70:fc:7f:f5:77 vlan_id 2509 vlan_ethtype ip src_ip 79.6.127.85 dst_ip 101.227.137.151 ip_proto tcp src_port 60011 dst_port 59286 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11068 flower src_mac 02:95:a8:79:4d:e8 dst_mac 02:56:37:81:90:d6 src_ip 87.169.164.91 dst_ip 80.29.22.182 ip_proto tcp src_port 6847 dst_port 46186 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11069 flower src_mac 02:c1:22:02:94:d8 dst_mac 02:d7:46:f5:e0:8d action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11070 flower src_mac 02:3a:5d:92:68:ef dst_mac 02:c7:15:ba:8b:0b vlan_id 1978 vlan_ethtype ipv4 src_ip 113.7.87.116 dst_ip 58.135.221.31 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11071 flower src_mac 02:72:b2:91:05:60 dst_mac 02:9b:ab:27:ec:b2 vlan_id 533 vlan_ethtype ipv4 src_ip 87.53.27.89 dst_ip 67.252.66.238 ip_proto tcp src_port 62113 dst_port 5413 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11072 flower src_mac 02:80:49:a0:57:1b dst_mac 02:ec:f0:50:c5:17 vlan_id 3905 vlan_ethtype 0x0800 src_ip 78.57.195.12 dst_ip 125.198.228.207 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11073 flower src_mac 02:93:5e:84:1b:37 dst_mac 02:40:2f:02:92:74 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11074 flower src_mac 02:7c:cc:48:c0:d5 dst_mac 02:ba:51:43:dc:06 vlan_id 2969 vlan_ethtype ipv4 src_ip 79.72.41.97 dst_ip 28.51.181.229 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11075 flower src_mac 02:91:ca:8c:97:80 dst_mac 02:3a:ac:9a:58:18 vlan_id 600 vlan_ethtype ipv4 src_ip 50.83.246.159 dst_ip 120.192.75.195 ip_proto tcp src_port 40965 dst_port 36089 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11076 flower src_mac 02:b0:fa:3a:f0:62 dst_mac 02:87:cd:29:37:67 src_ip 74.139.208.215 dst_ip 59.245.75.142 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11077 flower src_mac 02:bc:09:05:e2:cf dst_mac 02:7b:f3:77:f8:08 vlan_id 400 vlan_ethtype 0x0800 src_ip 36.93.65.232 dst_ip 84.248.255.240 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11078 flower src_mac 02:35:53:c6:04:8e dst_mac 02:8f:fb:86:23:29 vlan_id 2515 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11079 flower src_mac 02:d6:c5:db:9b:f0 dst_mac 02:56:57:f6:8a:84 vlan_id 4030 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11080 flower src_mac 02:11:be:99:b4:15 dst_mac 02:70:ce:79:f8:a2 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11081 flower src_mac 02:92:6c:d1:3a:18 dst_mac 02:b8:ab:a8:35:8c vlan_id 656 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11082 flower src_mac 02:8b:84:6f:a3:2b dst_mac 02:08:5c:c1:65:87 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11083 flower src_mac 02:b8:3c:69:a1:59 dst_mac 02:55:e4:65:2f:d6 vlan_id 992 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11084 flower src_mac 02:ac:3d:b2:c3:0e dst_mac 02:bb:69:50:f7:a2 vlan_id 2135 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11085 flower src_mac 02:4c:4f:ee:79:b3 dst_mac 02:b5:42:ba:5d:0b vlan_id 2442 vlan_ethtype ipv4 src_ip 81.141.102.124 dst_ip 79.129.251.69 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11086 flower src_mac 02:9c:5b:0a:ea:3b dst_mac 02:20:3a:50:e9:66 vlan_id 3547 vlan_ethtype 0x0800 src_ip 49.67.249.34 dst_ip 56.62.254.213 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11087 flower src_mac 02:9d:4c:e8:b5:ea dst_mac 02:62:b7:05:92:18 vlan_id 300 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11088 flower src_mac 02:42:4c:0b:92:45 dst_mac 02:2e:b0:9f:18:b2 src_ip 28.134.54.50 dst_ip 115.124.30.239 ip_proto udp src_port 6098 dst_port 20875 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11089 flower src_mac 02:f9:53:9d:e7:c8 dst_mac 02:6f:72:08:cd:b7 vlan_id 3990 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11090 flower src_mac 02:53:77:43:45:36 dst_mac 02:00:83:a6:3a:0d vlan_id 1973 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 11091 flower src_mac 02:3f:fe:67:42:a4 dst_mac 02:38:24:a0:38:b7 src_ip 124.195.166.198 dst_ip 52.69.46.240 ip_proto icmp code 119 type 16 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11092 flower src_mac 02:59:b1:bd:6c:5f dst_mac 02:a9:d3:86:1b:ad action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11093 flower src_mac 02:15:bb:38:87:e8 dst_mac 02:13:8b:d2:40:70 vlan_id 770 vlan_ethtype ip src_ip 122.139.228.45 dst_ip 124.155.236.242 action pass && tc filter add dev swp1 ingress protocol ip pref 11094 flower src_mac 02:38:72:a4:91:74 dst_mac 02:14:cb:29:b3:ae src_ip 78.112.122.236 dst_ip 43.90.254.121 ip_proto tcp src_port 41575 dst_port 57196 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11095 flower src_mac 02:2b:95:f1:94:5b dst_mac 02:44:5c:89:93:23 vlan_id 1883 vlan_ethtype 0x0800 src_ip 81.102.168.69 dst_ip 88.129.141.223 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11096 flower src_mac 02:de:74:90:27:4d dst_mac 02:41:1c:2e:e1:7d action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11097 flower src_mac 02:46:7c:c3:d0:1d dst_mac 02:1a:3d:8f:37:78 vlan_id 61 vlan_ethtype ipv4 src_ip 26.154.102.17 dst_ip 78.218.38.112 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11098 flower src_mac 02:c1:18:62:ce:34 dst_mac 02:07:55:46:20:56 vlan_id 4061 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11099 flower src_mac 02:e6:71:a9:e7:28 dst_mac 02:dd:cf:10:21:96 vlan_id 2016 vlan_ethtype ip src_ip 112.45.55.156 dst_ip 47.93.58.250 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11100 flower src_mac 02:52:11:ee:5f:ef dst_mac 02:d7:24:c0:ed:ac vlan_id 1387 vlan_ethtype ip src_ip 81.183.193.71 dst_ip 60.22.55.96 ip_proto udp src_port 32829 dst_port 8919 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11101 flower src_mac 02:82:6c:fd:d5:41 dst_mac 02:4e:c9:3a:bb:f9 vlan_id 2546 vlan_ethtype ip src_ip 78.101.195.65 dst_ip 27.224.40.101 ip_proto tcp src_port 9086 dst_port 7848 action trap && tc filter add dev swp1 ingress protocol ip pref 11102 flower src_mac 02:77:1e:a8:db:67 dst_mac 02:8b:23:ad:90:2f src_ip 57.44.223.174 dst_ip 36.185.156.214 ip_proto icmp code 226 type 18 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11103 flower src_mac 02:6a:a5:3c:fd:e4 dst_mac 02:83:48:ca:78:a7 vlan_id 1091 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11104 flower src_mac 02:ac:61:2d:b7:1e dst_mac 02:9e:a2:36:2a:b1 vlan_id 2919 vlan_ethtype ip src_ip 15.141.6.36 dst_ip 16.23.87.243 ip_proto tcp src_port 26553 dst_port 57252 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11105 flower src_mac 02:01:a0:8f:4c:43 dst_mac 02:7b:55:2d:6d:59 vlan_id 3255 vlan_ethtype ip src_ip 72.217.96.15 dst_ip 51.123.91.88 ip_proto udp src_port 7950 dst_port 19374 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11106 flower src_mac 02:9b:05:ce:56:d7 dst_mac 02:1e:ab:c8:f2:e3 vlan_id 1486 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11107 flower src_mac 02:64:80:34:7d:da dst_mac 02:04:b8:66:d2:8c vlan_id 2438 vlan_ethtype 0x0800 src_ip 89.114.227.221 dst_ip 114.82.208.82 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11108 flower src_mac 02:fd:10:5a:a6:7b dst_mac 02:dd:e4:36:a6:ba vlan_id 1415 vlan_ethtype ipv4 src_ip 40.144.195.228 dst_ip 89.154.24.160 ip_proto tcp src_port 8363 dst_port 7022 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11109 flower src_mac 02:fe:b4:d3:49:b2 dst_mac 02:a3:1e:35:6e:1d vlan_id 1875 vlan_ethtype 0x0800 src_ip 66.190.2.61 dst_ip 126.210.88.76 ip_proto udp src_port 32825 dst_port 1417 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11110 flower src_mac 02:7d:14:89:31:df dst_mac 02:22:d9:d8:7e:59 vlan_id 3199 vlan_ethtype ip src_ip 22.53.78.204 dst_ip 59.55.253.129 ip_proto tcp src_port 34674 dst_port 30956 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11111 flower src_mac 02:0f:13:11:d1:f4 dst_mac 02:26:4c:20:c3:df action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11112 flower src_mac 02:db:07:ee:51:bc dst_mac 02:a1:cf:75:5e:2a action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11113 flower src_mac 02:b9:0e:12:dd:d5 dst_mac 02:99:83:5e:fe:e4 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11114 flower src_mac 02:a1:e4:3b:12:ca dst_mac 02:92:67:bd:56:79 src_ip 76.120.155.87 dst_ip 100.96.120.191 ip_proto tcp src_port 37205 dst_port 13943 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11115 flower src_mac 02:76:5e:86:de:ed dst_mac 02:9c:a4:ac:84:f7 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11116 flower src_mac 02:1e:1b:4d:85:0f dst_mac 02:f1:b3:29:fc:fc vlan_id 2207 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11117 flower src_mac 02:95:bd:41:6b:32 dst_mac 02:ed:4c:55:c8:3d vlan_id 3951 vlan_ethtype ipv4 src_ip 121.196.198.64 dst_ip 85.101.135.17 ip_proto udp src_port 19300 dst_port 60520 action pass && tc filter add dev swp1 ingress protocol ip pref 11118 flower src_mac 02:23:04:06:b5:96 dst_mac 02:9d:4a:ad:62:fa src_ip 106.186.96.24 dst_ip 74.232.134.55 ip_proto icmp code 152 type 16 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11119 flower src_mac 02:0b:1a:c1:fd:52 dst_mac 02:50:d8:b2:d3:6e src_ip 32.24.180.17 dst_ip 101.27.91.182 ip_proto udp src_port 6061 dst_port 33715 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11120 flower src_mac 02:09:2e:24:e2:6d dst_mac 02:3f:70:ad:ce:43 vlan_id 3809 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11121 flower src_mac 02:09:d8:37:54:26 dst_mac 02:ef:7e:25:1d:5f src_ip 30.49.105.139 dst_ip 98.11.234.55 ip_proto icmp code 20 type 5 action trap && tc filter add dev swp1 ingress protocol ip pref 11122 flower src_mac 02:1f:87:bd:d7:5f dst_mac 02:f5:f8:f0:54:bc src_ip 72.237.141.181 dst_ip 48.10.51.211 ip_proto icmp code 122 type 14 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11123 flower src_mac 02:89:8e:09:0d:b0 dst_mac 02:c4:4f:16:76:6b action drop && tc filter add dev swp1 ingress protocol ip pref 11124 flower src_mac 02:9b:bf:1b:af:f9 dst_mac 02:62:3d:0b:fb:1d src_ip 22.6.86.207 dst_ip 11.222.19.227 ip_proto tcp src_port 57753 dst_port 39339 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11125 flower src_mac 02:38:52:76:f7:ab dst_mac 02:0a:9c:6f:63:9c action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11126 flower src_mac 02:00:97:51:2d:e5 dst_mac 02:5e:f1:4b:3c:cc vlan_id 2222 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11127 flower src_mac 02:a7:2b:04:62:40 dst_mac 02:4f:94:2b:a4:1b vlan_id 624 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11128 flower src_mac 02:cf:6c:53:ab:73 dst_mac 02:5b:dd:cd:97:e6 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11129 flower src_mac 02:72:d4:d2:17:46 dst_mac 02:0c:2a:66:c5:97 vlan_id 880 vlan_ethtype ipv4 src_ip 108.69.6.133 dst_ip 85.76.65.120 ip_proto tcp src_port 37253 dst_port 29026 action drop && tc filter add dev swp1 ingress protocol ip pref 11130 flower src_mac 02:48:1e:be:e7:ab dst_mac 02:05:a3:a6:cc:6c src_ip 114.140.127.155 dst_ip 106.255.198.235 ip_proto tcp src_port 3570 dst_port 38256 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11131 flower src_mac 02:2d:91:e3:3e:60 dst_mac 02:7a:2c:24:b1:95 vlan_id 326 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11132 flower src_mac 02:e5:b3:86:d8:e7 dst_mac 02:57:cb:70:75:50 vlan_id 2403 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11133 flower src_mac 02:1f:c9:44:4a:eb dst_mac 02:76:ff:00:f3:01 vlan_id 3829 vlan_ethtype ipv4 src_ip 96.119.120.80 dst_ip 102.208.18.208 action trap && tc filter add dev swp1 ingress protocol ip pref 11134 flower src_mac 02:53:f0:7e:28:27 dst_mac 02:23:02:5e:28:a7 src_ip 60.185.144.236 dst_ip 103.107.82.140 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11135 flower src_mac 02:dd:36:5d:f2:36 dst_mac 02:1d:67:8b:21:33 vlan_id 1741 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ip pref 11136 flower src_mac 02:f7:fc:1e:13:f6 dst_mac 02:9d:98:8f:3b:5a src_ip 27.122.176.132 dst_ip 77.108.80.102 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11137 flower src_mac 02:99:42:01:61:75 dst_mac 02:b0:42:10:87:00 src_ip 82.67.253.221 dst_ip 48.146.241.210 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11138 flower src_mac 02:92:02:38:e3:87 dst_mac 02:55:2e:15:75:c1 src_ip 96.206.127.149 dst_ip 41.124.195.73 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11139 flower src_mac 02:7f:ce:e0:81:4c dst_mac 02:03:3e:77:5d:c5 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11140 flower src_mac 02:3c:c9:a2:8d:b4 dst_mac 02:38:65:21:ea:da action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11141 flower src_mac 02:a9:07:b8:71:9f dst_mac 02:80:25:cb:da:32 vlan_id 2265 vlan_ethtype ip src_ip 18.124.130.138 dst_ip 20.232.25.90 ip_proto tcp src_port 58534 dst_port 62698 action drop && tc filter add dev swp1 ingress protocol ip pref 11142 flower src_mac 02:bd:5b:71:66:43 dst_mac 02:8d:29:f6:7b:3a src_ip 70.235.240.7 dst_ip 113.36.65.20 ip_proto icmp code 196 type 18 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11143 flower src_mac 02:79:73:6c:4a:2b dst_mac 02:a5:56:35:90:0f src_ip 70.234.253.138 dst_ip 74.50.108.205 ip_proto udp src_port 35646 dst_port 2232 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11144 flower src_mac 02:98:40:89:8d:b0 dst_mac 02:9d:e5:c4:b5:d1 vlan_id 1799 vlan_ethtype 0x0800 src_ip 77.3.196.139 dst_ip 109.56.66.187 ip_proto udp src_port 58835 dst_port 1850 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11145 flower src_mac 02:ff:96:5f:b3:5a dst_mac 02:35:91:f4:31:78 src_ip 43.38.212.19 dst_ip 108.70.219.245 ip_proto tcp src_port 7911 dst_port 58908 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11146 flower src_mac 02:b6:3d:c9:b0:8b dst_mac 02:7a:26:e2:a3:39 vlan_id 2959 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11147 flower src_mac 02:b9:50:54:93:bd dst_mac 02:06:32:ab:0e:06 vlan_id 6 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11148 flower src_mac 02:24:b4:bd:e8:9e dst_mac 02:33:3f:94:54:e2 vlan_id 3953 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 11149 flower src_mac 02:70:9d:87:8f:20 dst_mac 02:b2:bd:31:03:e0 src_ip 107.133.240.140 dst_ip 29.49.208.147 ip_proto icmp code 0 type 5 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11150 flower src_mac 02:f0:5b:4a:bc:bb dst_mac 02:e0:fd:1e:f0:9a action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11151 flower src_mac 02:fe:16:20:79:3c dst_mac 02:9a:20:f5:da:fc action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11152 flower src_mac 02:c8:99:5b:8b:fe dst_mac 02:23:a2:9d:26:d3 src_ip 15.247.128.52 dst_ip 43.226.31.32 ip_proto tcp src_port 13914 dst_port 61830 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11153 flower src_mac 02:70:9e:4c:0a:3b dst_mac 02:cd:2d:77:8d:0c vlan_id 3856 vlan_ethtype ip src_ip 36.128.130.147 dst_ip 99.202.198.245 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11154 flower src_mac 02:13:9c:a0:b1:ac dst_mac 02:ae:36:34:68:cd action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11155 flower src_mac 02:81:56:aa:e1:27 dst_mac 02:28:ca:7e:74:0f vlan_id 3857 vlan_ethtype ip src_ip 60.209.113.189 dst_ip 35.176.93.211 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11156 flower src_mac 02:c2:20:7f:32:99 dst_mac 02:28:28:a6:db:60 src_ip 51.87.227.246 dst_ip 107.98.81.8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11157 flower src_mac 02:4b:ff:ef:1f:37 dst_mac 02:99:21:df:1a:f0 vlan_id 4017 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11158 flower src_mac 02:d5:f5:f0:c2:79 dst_mac 02:ef:65:90:be:9b action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11159 flower src_mac 02:f1:78:23:d9:14 dst_mac 02:98:de:d4:6d:d4 vlan_id 3087 vlan_ethtype ipv4 src_ip 69.169.138.133 dst_ip 108.52.163.9 ip_proto udp src_port 59645 dst_port 60686 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11160 flower src_mac 02:9e:49:4c:70:1c dst_mac 02:4f:ce:2f:32:13 vlan_id 1142 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11161 flower src_mac 02:16:e2:c9:bd:be dst_mac 02:c4:46:e1:10:d6 vlan_id 2429 vlan_ethtype ip src_ip 92.61.127.6 dst_ip 59.60.225.161 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11162 flower src_mac 02:6d:71:01:1c:72 dst_mac 02:a4:31:dd:9b:6e vlan_id 2274 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11163 flower src_mac 02:ac:de:b0:91:71 dst_mac 02:3a:c5:05:38:08 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11164 flower src_mac 02:e6:93:1a:87:ec dst_mac 02:5e:6e:0f:24:72 src_ip 112.208.109.172 dst_ip 32.138.187.119 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11165 flower src_mac 02:b8:30:a2:54:4a dst_mac 02:37:04:56:14:e3 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11166 flower src_mac 02:dd:2a:14:e8:9a dst_mac 02:1a:13:85:aa:94 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11167 flower src_mac 02:22:c5:cd:f5:e2 dst_mac 02:64:84:c6:72:6e vlan_id 51 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11168 flower src_mac 02:00:78:bc:0f:92 dst_mac 02:ff:a2:f4:fa:be action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11169 flower src_mac 02:41:b4:e6:85:98 dst_mac 02:51:11:65:83:77 vlan_id 1770 vlan_ethtype 0x0800 src_ip 72.237.50.156 dst_ip 111.34.40.172 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11170 flower src_mac 02:ae:12:9f:56:75 dst_mac 02:cb:b5:5b:27:ff src_ip 74.57.109.88 dst_ip 33.219.103.80 ip_proto icmp code 234 type 0 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11171 flower src_mac 02:78:9f:12:5f:38 dst_mac 02:0c:53:59:22:f0 vlan_id 2590 vlan_ethtype ipv4 src_ip 109.251.14.86 dst_ip 83.2.214.184 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11172 flower src_mac 02:56:69:77:8e:95 dst_mac 02:92:d4:b3:8b:af vlan_id 1758 vlan_ethtype ipv4 src_ip 11.151.15.38 dst_ip 97.42.143.51 ip_proto tcp src_port 8962 dst_port 51006 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11173 flower src_mac 02:80:ea:22:d7:f3 dst_mac 02:ba:c5:9b:4a:aa action pass && tc filter add dev swp1 ingress protocol ip pref 11174 flower src_mac 02:f0:00:bd:bc:7b dst_mac 02:40:68:4a:d3:19 src_ip 29.80.211.24 dst_ip 122.196.125.81 ip_proto tcp src_port 32466 dst_port 43270 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11175 flower src_mac 02:69:fb:fa:9b:31 dst_mac 02:b9:41:af:46:8d action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11176 flower src_mac 02:d9:98:82:ec:53 dst_mac 02:91:02:e0:6e:22 vlan_id 2579 vlan_ethtype 0x0800 src_ip 24.29.194.93 dst_ip 76.252.119.35 ip_proto tcp src_port 14546 dst_port 50158 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11177 flower src_mac 02:90:17:09:ce:97 dst_mac 02:3b:63:6e:67:78 vlan_id 1799 vlan_ethtype ip src_ip 76.190.45.189 dst_ip 23.53.236.102 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11178 flower src_mac 02:8e:9c:e6:e2:af dst_mac 02:5c:50:70:03:5a vlan_id 1880 vlan_ethtype ip src_ip 104.227.239.201 dst_ip 115.77.75.159 ip_proto udp src_port 58015 dst_port 13612 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11179 flower src_mac 02:32:3a:d1:50:e6 dst_mac 02:9a:a0:be:48:fa vlan_id 1341 vlan_ethtype ip src_ip 109.211.135.3 dst_ip 42.20.120.234 ip_proto udp src_port 12447 dst_port 1733 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11180 flower src_mac 02:1a:e2:54:54:76 dst_mac 02:ca:9a:e8:58:e8 src_ip 36.194.163.97 dst_ip 74.103.123.234 ip_proto udp src_port 54548 dst_port 27066 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11181 flower src_mac 02:22:8b:dd:69:53 dst_mac 02:47:11:68:aa:17 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11182 flower src_mac 02:73:ce:c1:c4:21 dst_mac 02:d0:f0:eb:05:0c src_ip 107.163.254.23 dst_ip 19.111.135.17 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11183 flower src_mac 02:e0:1a:ce:17:fb dst_mac 02:f5:e2:61:16:ab action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11184 flower src_mac 02:55:25:cd:22:b9 dst_mac 02:5e:95:9e:76:64 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11185 flower src_mac 02:3e:d4:22:a7:91 dst_mac 02:b9:d9:1b:18:f7 vlan_id 2547 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11186 flower src_mac 02:57:b1:bf:2d:e1 dst_mac 02:f9:57:92:75:95 vlan_id 3017 vlan_ethtype ip src_ip 57.216.233.12 dst_ip 15.21.99.155 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11187 flower src_mac 02:54:26:d9:9f:ff dst_mac 02:7e:fe:a1:8a:99 vlan_id 36 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11188 flower src_mac 02:8a:2a:27:88:d6 dst_mac 02:25:90:84:d7:db vlan_id 1786 vlan_ethtype 0x0800 src_ip 43.0.178.100 dst_ip 26.80.25.250 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11189 flower src_mac 02:2e:1c:58:c7:e7 dst_mac 02:18:ee:d9:71:31 vlan_id 557 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11190 flower src_mac 02:1b:58:12:76:0f dst_mac 02:ec:e7:a2:d1:38 vlan_id 4032 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11191 flower src_mac 02:fa:63:c6:6b:93 dst_mac 02:df:63:88:83:ed vlan_id 3535 vlan_ethtype ip src_ip 60.102.192.249 dst_ip 70.172.122.208 ip_proto udp src_port 10532 dst_port 22380 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11192 flower src_mac 02:f1:44:ce:5a:ed dst_mac 02:1c:52:5a:8a:91 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11193 flower src_mac 02:9a:77:f8:0a:18 dst_mac 02:d4:3b:08:39:c8 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11194 flower src_mac 02:d0:a7:55:36:a3 dst_mac 02:7e:e8:e4:b8:79 src_ip 31.129.152.232 dst_ip 26.61.21.223 ip_proto icmp code 98 type 3 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11195 flower src_mac 02:ea:29:97:ea:67 dst_mac 02:ff:d5:a0:fe:80 vlan_id 3875 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11196 flower src_mac 02:97:31:f5:87:eb dst_mac 02:a0:79:89:49:b7 src_ip 49.60.31.82 dst_ip 118.67.106.53 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11197 flower src_mac 02:5d:30:72:45:b5 dst_mac 02:90:17:4c:7b:f8 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11198 flower src_mac 02:a6:70:29:4d:1d dst_mac 02:de:df:51:c9:56 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11199 flower src_mac 02:81:bc:07:58:5b dst_mac 02:cb:83:f4:e6:ca vlan_id 1691 vlan_ethtype 0x9300 action drop INFO asyncssh:logging.py:92 [conn=24, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=8] Command: tc filter add dev swp1 ingress protocol 802.1q pref 10800 flower src_mac 02:8e:a4:32:22:ba dst_mac 02:8e:de:c5:d5:f0 vlan_id 688 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10801 flower src_mac 02:fa:25:31:c8:4b dst_mac 02:5d:61:46:3e:26 vlan_id 464 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10802 flower src_mac 02:ee:16:36:9f:85 dst_mac 02:9a:0e:54:eb:e3 vlan_id 3490 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10803 flower src_mac 02:7d:77:f8:a3:c7 dst_mac 02:a1:e7:df:20:33 vlan_id 1148 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10804 flower src_mac 02:c1:3b:2f:01:09 dst_mac 02:6a:cb:1b:d5:99 vlan_id 3936 vlan_ethtype ip src_ip 124.148.151.61 dst_ip 17.44.38.6 ip_proto udp src_port 52168 dst_port 61330 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10805 flower src_mac 02:2e:d6:11:90:66 dst_mac 02:79:13:c8:c8:84 src_ip 22.187.158.170 dst_ip 69.143.11.149 ip_proto icmp code 181 type 13 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10806 flower src_mac 02:06:8d:17:1f:73 dst_mac 02:6c:ee:36:e0:9b src_ip 112.103.133.1 dst_ip 124.181.247.227 ip_proto icmp code 203 type 17 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10807 flower src_mac 02:0f:c5:2f:99:e6 dst_mac 02:cd:d7:1b:63:89 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10808 flower src_mac 02:2c:d5:4a:86:60 dst_mac 02:a2:e5:5f:e2:e0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10809 flower src_mac 02:a4:ba:c9:70:42 dst_mac 02:e8:71:16:8a:4d vlan_id 1001 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10810 flower src_mac 02:86:e3:33:a4:b3 dst_mac 02:ed:ee:ed:2b:32 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10811 flower src_mac 02:9e:a7:72:15:4e dst_mac 02:ff:e3:fd:d0:be vlan_id 2275 vlan_ethtype ipv4 src_ip 41.112.238.93 dst_ip 70.174.161.123 ip_proto tcp src_port 59435 dst_port 55409 action drop && tc filter add dev swp1 ingress protocol ip pref 10812 flower src_mac 02:31:46:b3:40:eb dst_mac 02:16:df:9f:48:79 src_ip 21.150.21.213 dst_ip 76.68.23.63 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10813 flower src_mac 02:c7:2b:52:ef:37 dst_mac 02:74:04:21:d7:20 src_ip 53.203.92.92 dst_ip 115.24.220.236 ip_proto icmp code 24 type 3 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10814 flower src_mac 02:6b:b6:4b:79:c3 dst_mac 02:cb:69:d9:21:91 vlan_id 2271 vlan_ethtype 0x0800 src_ip 12.208.5.58 dst_ip 20.15.143.9 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10815 flower src_mac 02:6d:a6:ff:cf:6f dst_mac 02:d0:20:aa:b1:53 vlan_id 3852 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10816 flower src_mac 02:99:4c:33:0a:b5 dst_mac 02:c3:c2:9d:67:38 src_ip 72.218.26.99 dst_ip 58.36.219.67 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10817 flower src_mac 02:2b:1c:8a:87:8e dst_mac 02:b5:e1:ed:a9:7f vlan_id 2463 vlan_ethtype 0x0800 src_ip 89.75.125.228 dst_ip 21.91.123.141 ip_proto udp src_port 55788 dst_port 6447 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10818 flower src_mac 02:93:9d:8f:39:be dst_mac 02:57:e1:bd:82:b3 vlan_id 444 vlan_ethtype 0x0800 src_ip 103.139.40.38 dst_ip 92.63.212.131 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10819 flower src_mac 02:f0:7a:80:a5:f9 dst_mac 02:eb:ee:68:43:9f vlan_id 2169 vlan_ethtype ipv4 src_ip 42.14.197.59 dst_ip 40.204.189.96 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10820 flower src_mac 02:95:e5:bb:b1:14 dst_mac 02:f4:ae:09:6e:41 vlan_id 438 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10821 flower src_mac 02:79:0d:b5:21:37 dst_mac 02:7a:ce:f2:00:ae src_ip 24.67.10.198 dst_ip 12.122.239.103 ip_proto tcp src_port 26592 dst_port 10602 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10822 flower src_mac 02:45:d6:21:76:05 dst_mac 02:c0:51:18:df:f3 vlan_id 1459 vlan_ethtype 0x0800 src_ip 27.9.115.145 dst_ip 23.120.26.246 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10823 flower src_mac 02:3d:60:fb:45:83 dst_mac 02:f2:4f:c8:5c:48 vlan_id 2086 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10824 flower src_mac 02:79:e7:23:3a:e4 dst_mac 02:93:5b:c5:af:12 src_ip 19.93.214.248 dst_ip 84.69.106.226 ip_proto udp src_port 43237 dst_port 6067 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10825 flower src_mac 02:eb:9f:41:ff:f3 dst_mac 02:89:1c:db:55:31 vlan_id 2340 vlan_ethtype ipv4 src_ip 96.251.214.53 dst_ip 86.139.248.119 ip_proto tcp src_port 60483 dst_port 49002 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10826 flower src_mac 02:4c:1e:3a:7b:c6 dst_mac 02:dc:a1:bc:c6:56 vlan_id 787 vlan_ethtype 0x0800 src_ip 118.187.162.245 dst_ip 125.176.123.207 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10827 flower src_mac 02:84:dc:76:35:09 dst_mac 02:75:1c:bd:98:e6 vlan_id 1545 vlan_ethtype 0x0800 src_ip 65.235.48.186 dst_ip 42.176.192.120 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10828 flower src_mac 02:42:22:b2:4e:29 dst_mac 02:ab:93:f6:18:07 src_ip 15.36.35.210 dst_ip 18.84.8.135 ip_proto tcp src_port 15545 dst_port 56806 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10829 flower src_mac 02:56:56:50:77:0c dst_mac 02:82:e7:33:2d:ed action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10830 flower src_mac 02:d5:db:31:7b:e2 dst_mac 02:fc:68:cc:d9:16 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10831 flower src_mac 02:59:c6:96:96:91 dst_mac 02:3a:de:6e:ac:27 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10832 flower src_mac 02:83:a5:b0:fe:52 dst_mac 02:47:53:23:4f:ab action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10833 flower src_mac 02:04:1f:aa:a2:01 dst_mac 02:0c:f7:db:a4:81 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10834 flower src_mac 02:27:31:e3:7d:08 dst_mac 02:36:c1:19:f7:e0 vlan_id 1578 vlan_ethtype ipv4 src_ip 63.166.227.98 dst_ip 52.209.219.169 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10835 flower src_mac 02:de:e1:8d:a0:37 dst_mac 02:04:7a:72:23:87 vlan_id 3245 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10836 flower src_mac 02:71:10:9c:d2:d1 dst_mac 02:94:5f:db:91:23 vlan_id 3031 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10837 flower src_mac 02:a1:0d:70:52:4e dst_mac 02:5f:91:47:d6:8a src_ip 74.190.26.70 dst_ip 126.61.144.230 action drop && tc filter add dev swp1 ingress protocol ip pref 10838 flower src_mac 02:1a:c9:24:0e:a0 dst_mac 02:ed:7d:78:25:33 src_ip 14.47.92.5 dst_ip 85.117.209.220 ip_proto udp src_port 51031 dst_port 20088 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10839 flower src_mac 02:e4:fb:26:a4:c4 dst_mac 02:fd:e2:f3:be:8a vlan_id 436 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10840 flower src_mac 02:93:be:69:8e:7b dst_mac 02:62:74:36:1f:5d src_ip 100.46.14.245 dst_ip 99.12.194.8 ip_proto icmp code 71 type 13 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10841 flower src_mac 02:d5:1d:9d:01:17 dst_mac 02:a1:38:a5:cf:90 action trap && tc filter add dev swp1 ingress protocol ip pref 10842 flower src_mac 02:64:cd:cb:bf:0c dst_mac 02:b5:b3:02:b0:c6 src_ip 30.248.78.235 dst_ip 17.248.22.50 ip_proto icmp code 154 type 4 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10843 flower src_mac 02:6a:ab:6d:8e:e6 dst_mac 02:5d:4a:64:ee:e4 vlan_id 2164 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10844 flower src_mac 02:b2:c5:eb:ea:63 dst_mac 02:52:27:75:25:96 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10845 flower src_mac 02:14:9d:18:41:f1 dst_mac 02:22:f1:f1:cb:c3 src_ip 124.61.93.154 dst_ip 70.54.239.142 ip_proto icmp code 194 type 16 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10846 flower src_mac 02:47:fb:15:3a:46 dst_mac 02:01:2b:51:d4:7e vlan_id 868 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10847 flower src_mac 02:59:d1:1c:84:72 dst_mac 02:47:2e:88:06:53 src_ip 126.122.9.29 dst_ip 31.70.100.140 ip_proto tcp src_port 49509 dst_port 47167 action drop && tc filter add dev swp1 ingress protocol ip pref 10848 flower src_mac 02:01:9f:ae:03:9c dst_mac 02:80:3b:b5:e2:e9 src_ip 59.51.33.225 dst_ip 88.100.193.246 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10849 flower src_mac 02:fa:8a:e6:78:a0 dst_mac 02:11:19:39:52:4f action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10850 flower src_mac 02:ff:fe:74:3a:75 dst_mac 02:14:d9:a2:76:83 vlan_id 1395 vlan_ethtype ipv4 src_ip 40.232.15.73 dst_ip 20.179.213.37 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10851 flower src_mac 02:0d:1f:eb:05:55 dst_mac 02:4b:22:0c:bb:c2 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10852 flower src_mac 02:62:8c:00:99:44 dst_mac 02:98:03:d6:52:c1 action trap && tc filter add dev swp1 ingress protocol ip pref 10853 flower src_mac 02:6f:a4:0d:12:2b dst_mac 02:85:d5:3c:83:ab src_ip 15.136.77.219 dst_ip 18.9.200.126 ip_proto tcp src_port 15574 dst_port 24622 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10854 flower src_mac 02:ef:53:38:18:e3 dst_mac 02:55:90:2d:e5:51 src_ip 30.120.36.208 dst_ip 114.188.4.71 ip_proto udp src_port 17933 dst_port 48242 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10855 flower src_mac 02:87:00:c9:25:48 dst_mac 02:6f:e7:1f:53:2e vlan_id 2902 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10856 flower src_mac 02:d4:a5:bc:af:da dst_mac 02:54:6d:32:a8:dc vlan_id 399 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 10857 flower src_mac 02:50:73:14:56:72 dst_mac 02:d1:12:96:2d:fa src_ip 98.174.93.86 dst_ip 54.115.34.14 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10858 flower src_mac 02:78:35:bc:52:72 dst_mac 02:92:b3:01:03:71 vlan_id 3529 vlan_ethtype 0x0800 src_ip 13.96.86.141 dst_ip 88.103.189.19 ip_proto tcp src_port 55484 dst_port 42645 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10859 flower src_mac 02:70:02:5d:44:c5 dst_mac 02:5d:ca:cb:e1:28 vlan_id 70 vlan_ethtype ip src_ip 55.10.29.167 dst_ip 96.204.2.58 ip_proto udp src_port 37425 dst_port 47166 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10860 flower src_mac 02:d6:62:01:85:01 dst_mac 02:ed:46:89:30:c7 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10861 flower src_mac 02:e1:f5:e7:d6:4b dst_mac 02:8d:ce:07:b1:09 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10862 flower src_mac 02:14:d5:4a:ef:1c dst_mac 02:29:08:89:0f:81 vlan_id 3864 vlan_ethtype ip src_ip 56.190.0.201 dst_ip 57.58.251.106 ip_proto udp src_port 20711 dst_port 15089 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10863 flower src_mac 02:a2:72:8d:e3:be dst_mac 02:e0:04:7e:68:9f vlan_id 194 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10864 flower src_mac 02:c9:06:34:e1:56 dst_mac 02:e1:ca:d0:5c:f1 src_ip 83.136.179.208 dst_ip 50.95.130.3 ip_proto tcp src_port 61273 dst_port 20666 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10865 flower src_mac 02:c1:5e:24:f4:7b dst_mac 02:c7:39:4f:cf:26 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10866 flower src_mac 02:d8:9b:26:37:5f dst_mac 02:e7:7b:75:df:c2 vlan_id 2312 vlan_ethtype ip src_ip 98.216.41.151 dst_ip 46.219.75.198 ip_proto udp src_port 61232 dst_port 36810 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10867 flower src_mac 02:18:b7:d4:70:d4 dst_mac 02:0c:71:ee:03:85 vlan_id 403 vlan_ethtype ip src_ip 29.102.26.164 dst_ip 55.91.26.43 ip_proto tcp src_port 60630 dst_port 53615 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10868 flower src_mac 02:84:b1:77:7a:ba dst_mac 02:58:8d:f0:63:c6 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10869 flower src_mac 02:a8:5c:67:5b:98 dst_mac 02:2f:2d:01:0b:70 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10870 flower src_mac 02:5b:32:3e:91:e7 dst_mac 02:82:69:83:4c:1b action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10871 flower src_mac 02:0c:4a:06:8d:1f dst_mac 02:39:f9:e9:c0:df vlan_id 3224 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10872 flower src_mac 02:8d:0b:03:d5:1b dst_mac 02:7e:8c:55:0d:9b action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10873 flower src_mac 02:b7:f9:3e:2f:e8 dst_mac 02:b5:a7:cd:fc:ee action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10874 flower src_mac 02:71:e3:d8:d5:47 dst_mac 02:0c:11:58:39:e6 src_ip 45.196.164.98 dst_ip 121.156.237.164 ip_proto icmp code 196 type 8 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10875 flower src_mac 02:4c:f3:03:89:1c dst_mac 02:ec:4e:bd:39:8a vlan_id 1789 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 10876 flower src_mac 02:fd:59:07:f9:44 dst_mac 02:ad:21:55:2b:23 src_ip 113.53.38.233 dst_ip 82.148.95.136 ip_proto icmp code 114 type 14 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10877 flower src_mac 02:e6:ee:cb:48:84 dst_mac 02:0e:c2:cf:9e:6d src_ip 74.159.20.215 dst_ip 103.156.200.24 ip_proto tcp src_port 64042 dst_port 64989 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10878 flower src_mac 02:8c:00:5c:cf:d5 dst_mac 02:90:18:5b:94:09 vlan_id 3001 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10879 flower src_mac 02:a1:49:3e:f1:83 dst_mac 02:90:76:9d:5c:aa action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10880 flower src_mac 02:44:44:cb:53:7b dst_mac 02:e4:7e:e0:19:b2 src_ip 43.247.185.72 dst_ip 22.76.96.126 ip_proto tcp src_port 49843 dst_port 22922 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10881 flower src_mac 02:dc:6c:5f:0f:12 dst_mac 02:fb:0c:f7:22:67 src_ip 79.209.97.175 dst_ip 67.89.55.50 ip_proto tcp src_port 61328 dst_port 30421 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10882 flower src_mac 02:40:19:b9:c3:d9 dst_mac 02:c9:35:a8:5e:8f action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10883 flower src_mac 02:f8:f7:8f:6d:90 dst_mac 02:e1:2d:dd:22:bf vlan_id 3624 vlan_ethtype ip src_ip 47.242.59.58 dst_ip 108.204.140.191 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10884 flower src_mac 02:bc:1b:21:77:49 dst_mac 02:ce:a7:e9:fc:18 vlan_id 1502 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10885 flower src_mac 02:58:47:7f:12:c9 dst_mac 02:72:28:fa:60:82 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10886 flower src_mac 02:8f:e0:7f:ee:71 dst_mac 02:ca:ca:b2:2a:2a action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10887 flower src_mac 02:df:c5:5f:aa:d3 dst_mac 02:ce:66:1c:dd:eb vlan_id 3280 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10888 flower src_mac 02:be:a2:cb:bd:50 dst_mac 02:19:de:94:46:1b vlan_id 2509 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10889 flower src_mac 02:fd:3b:6c:e1:9b dst_mac 02:21:64:da:99:c4 vlan_id 1115 vlan_ethtype ip src_ip 77.63.245.66 dst_ip 77.194.202.52 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10890 flower src_mac 02:75:f9:ea:2c:c4 dst_mac 02:89:2a:1a:42:71 vlan_id 1962 vlan_ethtype 0x0800 src_ip 48.125.114.28 dst_ip 52.25.135.97 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10891 flower src_mac 02:ae:9e:37:b4:8f dst_mac 02:94:36:c1:e0:f1 src_ip 81.232.138.189 dst_ip 99.96.6.56 ip_proto icmp code 160 type 8 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10892 flower src_mac 02:fc:28:26:54:86 dst_mac 02:3a:3d:a9:cb:7c vlan_id 3728 vlan_ethtype 0x0800 src_ip 78.156.248.9 dst_ip 72.127.127.83 ip_proto udp src_port 24827 dst_port 15987 action drop && tc filter add dev swp1 ingress protocol ip pref 10893 flower src_mac 02:83:85:17:c4:91 dst_mac 02:ae:0e:01:fd:d7 src_ip 73.160.176.22 dst_ip 125.174.249.158 ip_proto tcp src_port 65396 dst_port 12744 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10894 flower src_mac 02:96:f4:9c:18:dd dst_mac 02:52:76:d4:f9:36 vlan_id 2259 vlan_ethtype ipv4 src_ip 91.216.82.49 dst_ip 113.127.210.137 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10895 flower src_mac 02:1e:59:be:6f:c1 dst_mac 02:49:0f:1d:08:24 vlan_id 1995 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10896 flower src_mac 02:dd:f7:b4:0e:df dst_mac 02:32:e5:0c:37:70 src_ip 25.104.14.137 dst_ip 92.210.200.42 ip_proto tcp src_port 31041 dst_port 34475 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10897 flower src_mac 02:23:3e:a9:ce:64 dst_mac 02:5d:b7:15:fc:19 vlan_id 2609 vlan_ethtype 0x0800 src_ip 93.186.154.7 dst_ip 70.120.153.137 ip_proto udp src_port 48522 dst_port 45024 action trap && tc filter add dev swp1 ingress protocol ip pref 10898 flower src_mac 02:3a:40:7d:48:51 dst_mac 02:4e:b2:43:54:5e src_ip 22.55.186.129 dst_ip 53.57.140.233 ip_proto tcp src_port 45443 dst_port 6284 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10899 flower src_mac 02:21:6c:2d:93:b3 dst_mac 02:c2:8a:22:ba:54 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10900 flower src_mac 02:ec:c7:e5:48:ce dst_mac 02:be:d6:f3:06:24 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10901 flower src_mac 02:96:0e:bd:3f:92 dst_mac 02:d2:e6:d0:70:ba vlan_id 3101 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10902 flower src_mac 02:54:d5:45:4c:70 dst_mac 02:b3:f8:27:b1:4e vlan_id 2088 vlan_ethtype 0x0800 src_ip 71.25.252.207 dst_ip 14.127.168.44 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10903 flower src_mac 02:d4:9f:71:d1:de dst_mac 02:a2:a7:5b:c1:7c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10904 flower src_mac 02:f7:3e:82:76:91 dst_mac 02:28:0d:c1:c3:63 vlan_id 805 vlan_ethtype ipv4 src_ip 13.145.31.208 dst_ip 44.145.102.156 ip_proto udp src_port 41436 dst_port 5343 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10905 flower src_mac 02:08:77:0a:c6:44 dst_mac 02:b2:8b:9d:3f:3e vlan_id 35 vlan_ethtype 0x0800 src_ip 42.185.232.155 dst_ip 123.255.112.115 ip_proto udp src_port 28802 dst_port 29188 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10906 flower src_mac 02:2f:75:f3:a8:a6 dst_mac 02:6c:8a:e2:3c:ad action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10907 flower src_mac 02:78:97:63:a4:ac dst_mac 02:5a:d7:74:7f:01 vlan_id 3218 vlan_ethtype 0x0800 src_ip 112.186.24.169 dst_ip 24.154.120.106 ip_proto udp src_port 57710 dst_port 21367 action pass && tc filter add dev swp1 ingress protocol ip pref 10908 flower src_mac 02:4e:89:a7:af:86 dst_mac 02:dd:22:9a:c7:8d src_ip 118.207.103.142 dst_ip 100.166.214.95 ip_proto tcp src_port 57994 dst_port 7148 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10909 flower src_mac 02:40:b7:32:cb:88 dst_mac 02:95:a6:8f:70:41 src_ip 64.113.224.1 dst_ip 92.29.125.229 ip_proto udp src_port 10841 dst_port 58393 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10910 flower src_mac 02:9c:69:5e:7f:99 dst_mac 02:df:fe:82:51:64 vlan_id 2233 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10911 flower src_mac 02:8e:7e:79:f9:fe dst_mac 02:5f:09:b1:75:f3 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10912 flower src_mac 02:bc:0b:86:bc:76 dst_mac 02:9b:6f:4b:e6:cb src_ip 105.236.215.108 dst_ip 104.51.70.122 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10913 flower src_mac 02:29:f7:4f:fa:06 dst_mac 02:19:16:63:b4:6b vlan_id 949 vlan_ethtype ip src_ip 83.214.105.249 dst_ip 19.76.8.88 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10914 flower src_mac 02:5d:bc:a8:90:8e dst_mac 02:d7:c4:ba:00:26 vlan_id 3656 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 10915 flower src_mac 02:c8:6c:df:78:b8 dst_mac 02:4f:d4:ee:c7:ca src_ip 111.99.61.205 dst_ip 16.236.6.98 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10916 flower src_mac 02:a4:68:46:5e:dc dst_mac 02:93:b1:da:41:6c src_ip 73.218.28.215 dst_ip 99.42.148.239 ip_proto icmp code 202 type 8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10917 flower src_mac 02:d4:9e:4a:2d:fd dst_mac 02:e8:39:fa:7e:13 vlan_id 2835 vlan_ethtype 0x0800 src_ip 124.72.106.250 dst_ip 117.75.173.12 ip_proto udp src_port 52786 dst_port 44599 action pass && tc filter add dev swp1 ingress protocol ip pref 10918 flower src_mac 02:1f:b3:a6:f1:1b dst_mac 02:5b:3a:a4:f6:ff src_ip 85.141.4.218 dst_ip 120.94.122.157 ip_proto udp src_port 30297 dst_port 43706 action trap && tc filter add dev swp1 ingress protocol ip pref 10919 flower src_mac 02:8a:86:81:0d:37 dst_mac 02:f3:38:be:2a:e4 src_ip 60.104.207.163 dst_ip 84.162.199.34 ip_proto icmp code 45 type 18 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10920 flower src_mac 02:3e:37:a4:36:7b dst_mac 02:0d:85:8a:44:4a action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10921 flower src_mac 02:2d:7a:74:e7:91 dst_mac 02:c9:9d:0e:ce:72 src_ip 87.64.250.184 dst_ip 70.238.24.248 ip_proto tcp src_port 36950 dst_port 49089 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10922 flower src_mac 02:84:65:6e:ee:a8 dst_mac 02:98:76:b2:59:03 vlan_id 922 vlan_ethtype ip src_ip 12.130.127.167 dst_ip 62.211.47.12 ip_proto udp src_port 24389 dst_port 10215 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10923 flower src_mac 02:db:e0:dc:a0:b7 dst_mac 02:00:8e:bf:5d:8e action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10924 flower src_mac 02:2f:a8:0c:5c:de dst_mac 02:ca:18:b5:f5:5f src_ip 54.63.51.245 dst_ip 53.33.22.82 ip_proto tcp src_port 31915 dst_port 21446 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10925 flower src_mac 02:ab:05:4c:54:ef dst_mac 02:d3:b2:32:bb:18 vlan_id 2980 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10926 flower src_mac 02:18:6e:01:c7:1d dst_mac 02:3b:5f:4f:a0:a9 vlan_id 1960 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10927 flower src_mac 02:d7:e6:84:60:ed dst_mac 02:ce:5a:63:4c:9b vlan_id 3393 vlan_ethtype ip src_ip 36.23.207.242 dst_ip 104.232.94.73 ip_proto tcp src_port 24992 dst_port 10511 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10928 flower src_mac 02:cf:9b:42:2a:ca dst_mac 02:46:c8:4f:98:30 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10929 flower src_mac 02:91:f0:f2:b0:52 dst_mac 02:8c:83:81:f1:3e vlan_id 1444 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ip pref 10930 flower src_mac 02:99:dd:0a:5f:4e dst_mac 02:e2:ad:ad:d0:2e src_ip 53.210.75.130 dst_ip 104.124.49.182 ip_proto tcp src_port 12342 dst_port 55232 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10931 flower src_mac 02:0c:77:70:18:da dst_mac 02:75:58:88:7a:e7 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10932 flower src_mac 02:0c:f3:17:c9:0e dst_mac 02:17:2d:16:0c:25 vlan_id 3789 vlan_ethtype ip src_ip 122.74.184.130 dst_ip 109.145.5.4 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10933 flower src_mac 02:98:29:b0:21:d7 dst_mac 02:a8:0a:70:5c:4e action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10934 flower src_mac 02:35:9e:0b:66:a5 dst_mac 02:f6:8e:3a:d6:9b src_ip 95.19.56.216 dst_ip 109.19.159.7 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10935 flower src_mac 02:23:b4:00:95:ee dst_mac 02:4e:41:26:79:43 vlan_id 2660 vlan_ethtype ipv4 src_ip 109.40.107.52 dst_ip 105.154.3.186 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10936 flower src_mac 02:ad:ea:35:2b:1a dst_mac 02:e4:5e:24:bc:28 vlan_id 3447 vlan_ethtype ipv4 src_ip 37.124.112.242 dst_ip 25.33.175.135 ip_proto tcp src_port 1897 dst_port 35952 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10937 flower src_mac 02:26:23:40:33:8e dst_mac 02:26:76:3a:02:29 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10938 flower src_mac 02:0f:ae:5c:65:71 dst_mac 02:75:37:27:41:69 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10939 flower src_mac 02:c5:ce:63:0c:4f dst_mac 02:79:fc:3a:5c:36 src_ip 108.156.102.112 dst_ip 101.213.165.46 ip_proto tcp src_port 1304 dst_port 11381 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10940 flower src_mac 02:51:6d:e7:5a:1b dst_mac 02:9a:90:88:7e:b6 vlan_id 2378 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10941 flower src_mac 02:a2:45:6d:06:44 dst_mac 02:87:30:f1:f3:5d vlan_id 1432 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10942 flower src_mac 02:dd:74:0b:43:4c dst_mac 02:e2:c9:4b:95:9a action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10943 flower src_mac 02:b2:4a:7a:17:d3 dst_mac 02:5a:48:54:b1:e0 vlan_id 655 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10944 flower src_mac 02:58:e1:34:82:bd dst_mac 02:1a:1b:e5:bb:5c vlan_id 153 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 10945 flower src_mac 02:f5:72:f9:74:ad dst_mac 02:08:de:aa:93:d0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10946 flower src_mac 02:c6:a6:fb:68:ec dst_mac 02:f5:5f:3b:2e:31 vlan_id 884 vlan_ethtype ipv4 src_ip 42.171.15.111 dst_ip 108.199.36.180 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 10947 flower src_mac 02:eb:d8:18:f8:f9 dst_mac 02:58:98:66:2b:9d action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10948 flower src_mac 02:78:82:4e:39:41 dst_mac 02:73:60:29:7c:27 vlan_id 2632 vlan_ethtype ip src_ip 118.180.42.145 dst_ip 117.46.185.149 ip_proto udp src_port 50030 dst_port 20630 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10949 flower src_mac 02:dd:a0:a4:be:60 dst_mac 02:4a:5d:bf:8b:26 vlan_id 439 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10950 flower src_mac 02:93:78:d2:e3:d9 dst_mac 02:02:ca:74:93:e2 vlan_id 1065 vlan_ethtype ip src_ip 94.191.159.184 dst_ip 85.244.12.157 ip_proto tcp src_port 64174 dst_port 29224 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10951 flower src_mac 02:28:aa:c7:8e:89 dst_mac 02:be:9d:ae:96:69 src_ip 87.51.134.104 dst_ip 100.198.171.28 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10952 flower src_mac 02:86:1d:78:b3:98 dst_mac 02:00:1d:f1:e1:b8 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10953 flower src_mac 02:d1:24:c6:cb:19 dst_mac 02:da:ab:db:98:62 vlan_id 748 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 10954 flower src_mac 02:70:50:db:f2:cf dst_mac 02:db:eb:18:da:c3 src_ip 20.162.14.147 dst_ip 37.149.208.223 ip_proto udp src_port 36770 dst_port 34851 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10955 flower src_mac 02:1d:ff:fa:0b:21 dst_mac 02:7d:d4:c9:92:01 src_ip 17.117.169.85 dst_ip 95.111.129.240 ip_proto icmp code 224 type 8 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10956 flower src_mac 02:6d:c4:8f:00:99 dst_mac 02:8c:21:0f:5f:06 vlan_id 2968 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10957 flower src_mac 02:d7:2b:81:0b:10 dst_mac 02:35:5c:f0:87:ee src_ip 79.119.178.215 dst_ip 104.173.19.167 ip_proto udp src_port 41257 dst_port 29716 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10958 flower src_mac 02:bd:c3:92:e3:2c dst_mac 02:60:2e:8a:6e:c0 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10959 flower src_mac 02:5b:2b:68:9a:ab dst_mac 02:13:4d:64:ef:94 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 10960 flower src_mac 02:fb:26:6d:e5:38 dst_mac 02:93:fb:96:93:9f action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10961 flower src_mac 02:5e:8b:79:47:69 dst_mac 02:79:15:15:09:89 vlan_id 3548 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10962 flower src_mac 02:0c:4c:09:31:56 dst_mac 02:15:04:fa:c4:e6 vlan_id 134 vlan_ethtype ipv4 src_ip 86.186.118.205 dst_ip 50.233.149.220 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 10963 flower src_mac 02:5d:79:56:18:20 dst_mac 02:f5:92:86:26:49 action drop && tc filter add dev swp1 ingress protocol ip pref 10964 flower src_mac 02:7f:eb:1f:a1:59 dst_mac 02:56:8e:9f:81:91 src_ip 57.221.215.193 dst_ip 57.214.35.215 ip_proto tcp src_port 61447 dst_port 7389 action pass && tc filter add dev swp1 ingress protocol ip pref 10965 flower src_mac 02:a6:b3:89:35:4d dst_mac 02:1b:22:8b:03:dc src_ip 108.54.221.71 dst_ip 104.12.60.96 ip_proto udp src_port 56915 dst_port 22443 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10966 flower src_mac 02:aa:90:ef:ea:82 dst_mac 02:40:36:a5:58:cc vlan_id 699 vlan_ethtype ipv4 src_ip 20.91.148.124 dst_ip 66.149.147.127 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 10967 flower src_mac 02:a5:90:b6:cc:50 dst_mac 02:68:a5:0a:55:3d src_ip 68.71.120.17 dst_ip 83.62.153.87 ip_proto udp src_port 17553 dst_port 40164 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10968 flower src_mac 02:6d:5f:e9:77:76 dst_mac 02:02:88:dc:10:61 vlan_id 2109 vlan_ethtype ip src_ip 93.105.41.213 dst_ip 42.236.81.79 ip_proto tcp src_port 155 dst_port 51540 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10969 flower src_mac 02:b6:ef:1d:cf:95 dst_mac 02:39:ac:e5:f2:61 vlan_id 1127 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10970 flower src_mac 02:ab:40:66:40:2c dst_mac 02:6d:5b:01:6a:40 vlan_id 2441 vlan_ethtype ipv4 src_ip 116.252.245.3 dst_ip 35.113.10.199 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10971 flower src_mac 02:86:0c:b6:ec:e4 dst_mac 02:02:b5:49:3e:da vlan_id 982 vlan_ethtype ipv4 src_ip 47.70.91.106 dst_ip 50.233.70.87 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 10972 flower src_mac 02:f7:aa:16:37:ff dst_mac 02:4e:a6:8c:99:da src_ip 45.112.60.236 dst_ip 69.12.248.25 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10973 flower src_mac 02:fb:87:30:0b:2e dst_mac 02:65:a1:3a:cf:77 src_ip 77.222.7.69 dst_ip 84.35.188.191 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 10974 flower src_mac 02:f6:34:aa:86:9c dst_mac 02:f7:e1:87:81:5a action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10975 flower src_mac 02:23:fe:0e:c1:bc dst_mac 02:bd:ce:e7:56:04 vlan_id 1019 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 10976 flower src_mac 02:2a:44:6a:52:c9 dst_mac 02:aa:5c:08:af:79 src_ip 96.234.218.44 dst_ip 117.97.234.238 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10977 flower src_mac 02:2a:4d:69:98:50 dst_mac 02:86:d9:c0:fc:3d vlan_id 1239 vlan_ethtype 0x0800 src_ip 44.46.234.34 dst_ip 109.86.205.195 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10978 flower src_mac 02:0c:19:f1:05:76 dst_mac 02:2d:39:dd:95:72 vlan_id 2420 vlan_ethtype ip src_ip 73.9.82.191 dst_ip 47.30.150.186 action pass && tc filter add dev swp1 ingress protocol ip pref 10979 flower src_mac 02:2a:11:da:4b:9c dst_mac 02:25:52:24:7e:9b src_ip 86.171.223.35 dst_ip 59.116.120.98 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 10980 flower src_mac 02:09:55:3a:84:f6 dst_mac 02:45:17:15:c6:dc action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10981 flower src_mac 02:72:6b:d6:72:46 dst_mac 02:5c:61:71:81:d8 vlan_id 2440 vlan_ethtype 0x0800 src_ip 50.233.36.146 dst_ip 101.119.230.58 ip_proto udp src_port 51435 dst_port 25320 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 10982 flower src_mac 02:0c:98:ac:9b:ae dst_mac 02:02:1c:1f:3a:ff vlan_id 3085 vlan_ethtype ip src_ip 79.154.142.22 dst_ip 76.5.14.120 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 10983 flower src_mac 02:18:1b:8a:83:23 dst_mac 02:ca:e5:2a:d4:41 vlan_id 3591 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10984 flower src_mac 02:dd:fd:ab:44:24 dst_mac 02:e8:3d:87:c6:c3 vlan_id 3770 vlan_ethtype ipv4 src_ip 63.241.113.157 dst_ip 59.40.253.118 ip_proto udp src_port 14643 dst_port 48142 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 10985 flower src_mac 02:bb:69:11:82:86 dst_mac 02:15:fa:63:ca:56 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10986 flower src_mac 02:76:1d:63:b3:d0 dst_mac 02:94:e5:95:25:87 vlan_id 1597 vlan_ethtype ip src_ip 71.158.38.123 dst_ip 107.145.66.202 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 10987 flower src_mac 02:ba:f3:de:1d:cf dst_mac 02:43:ec:7d:dc:f7 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10988 flower src_mac 02:8a:8d:62:ea:08 dst_mac 02:7f:a5:f8:47:a5 vlan_id 2404 vlan_ethtype 0x0800 src_ip 55.115.122.96 dst_ip 37.27.128.189 action pass && tc filter add dev swp1 ingress protocol ip pref 10989 flower src_mac 02:7c:b6:d1:ae:9d dst_mac 02:df:c1:7f:97:33 src_ip 28.16.181.43 dst_ip 94.62.154.47 ip_proto icmp code 166 type 0 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 10990 flower src_mac 02:a8:dd:78:cf:0b dst_mac 02:36:1c:31:d2:61 vlan_id 2470 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 10991 flower src_mac 02:27:b2:b5:d7:75 dst_mac 02:6c:a8:9b:1f:cb src_ip 82.241.194.43 dst_ip 66.92.246.240 ip_proto tcp src_port 1658 dst_port 16139 action pass && tc filter add dev swp1 ingress protocol ip pref 10992 flower src_mac 02:87:1f:13:44:5e dst_mac 02:1d:cc:56:68:b6 src_ip 115.233.33.129 dst_ip 63.44.135.121 ip_proto icmp code 202 type 13 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 10993 flower src_mac 02:d7:8e:da:af:52 dst_mac 02:0f:04:1c:66:ea vlan_id 2975 vlan_ethtype ip src_ip 94.107.237.250 dst_ip 88.200.11.63 ip_proto tcp src_port 59502 dst_port 51789 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 10994 flower src_mac 02:dc:4f:11:51:cc dst_mac 02:85:07:1e:37:5a src_ip 86.207.246.216 dst_ip 118.192.196.132 ip_proto udp src_port 30512 dst_port 60354 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 10995 flower src_mac 02:10:39:be:9b:66 dst_mac 02:0a:8f:e1:dc:fe src_ip 63.149.111.54 dst_ip 37.67.194.246 ip_proto icmp code 95 type 11 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 10996 flower src_mac 02:fc:2b:9f:60:ef dst_mac 02:5a:41:82:a2:12 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 10997 flower src_mac 02:a8:f4:ea:1e:fd dst_mac 02:1e:69:8f:d0:82 vlan_id 2219 vlan_ethtype 0x0800 src_ip 69.229.58.109 dst_ip 78.82.188.139 action drop && tc filter add dev swp1 ingress protocol ip pref 10998 flower src_mac 02:42:ed:36:0d:83 dst_mac 02:3b:45:e4:11:84 src_ip 103.250.55.236 dst_ip 51.49.170.244 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 10999 flower src_mac 02:b7:fe:75:1c:10 dst_mac 02:ff:ab:99:04:08 vlan_id 97 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11000 flower src_mac 02:40:c4:67:01:cc dst_mac 02:f6:10:0c:89:8a vlan_id 1285 vlan_ethtype ipv4 src_ip 63.120.32.95 dst_ip 105.78.180.121 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11001 flower src_mac 02:af:c1:71:22:fb dst_mac 02:99:93:3d:ce:40 src_ip 102.254.171.23 dst_ip 71.234.180.29 ip_proto icmp code 115 type 14 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11002 flower src_mac 02:74:33:e3:1f:cf dst_mac 02:df:54:45:ae:64 vlan_id 3502 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11003 flower src_mac 02:21:bc:d5:32:9b dst_mac 02:a7:36:20:34:15 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11004 flower src_mac 02:dc:9b:e2:fd:5b dst_mac 02:0b:57:47:8c:1c src_ip 87.234.107.64 dst_ip 75.88.224.16 ip_proto tcp src_port 22763 dst_port 2612 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11005 flower src_mac 02:19:bc:f8:4b:fc dst_mac 02:e8:43:d6:56:93 vlan_id 3412 vlan_ethtype ip src_ip 120.140.76.168 dst_ip 98.139.249.22 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11006 flower src_mac 02:af:fb:3c:34:ec dst_mac 02:31:e8:b1:86:b8 vlan_id 2586 vlan_ethtype 0x0800 src_ip 11.91.215.150 dst_ip 42.87.198.13 ip_proto tcp src_port 12000 dst_port 7050 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11007 flower src_mac 02:d0:ba:e6:bb:67 dst_mac 02:a4:4a:14:6b:53 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11008 flower src_mac 02:bf:6d:a5:6a:7e dst_mac 02:5b:37:65:af:d6 vlan_id 478 vlan_ethtype ip src_ip 75.54.45.46 dst_ip 67.5.80.4 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11009 flower src_mac 02:e3:40:40:da:d8 dst_mac 02:3e:2a:5e:78:9f vlan_id 1186 vlan_ethtype 0x0800 src_ip 67.28.155.213 dst_ip 111.62.26.182 ip_proto udp src_port 6069 dst_port 129 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11010 flower src_mac 02:db:6c:32:d4:f1 dst_mac 02:08:1d:32:42:5a src_ip 96.116.156.196 dst_ip 64.109.203.20 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11011 flower src_mac 02:96:fd:8d:84:b0 dst_mac 02:d4:40:8e:df:92 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11012 flower src_mac 02:23:bc:62:95:d1 dst_mac 02:c8:56:1b:c4:98 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11013 flower src_mac 02:33:d1:83:fc:df dst_mac 02:86:b3:37:48:4b action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11014 flower src_mac 02:3b:e8:93:d1:83 dst_mac 02:0d:90:0d:0f:72 vlan_id 1649 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11015 flower src_mac 02:63:7f:4e:b0:05 dst_mac 02:46:8e:eb:d9:83 vlan_id 887 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 11016 flower src_mac 02:a0:37:74:e4:72 dst_mac 02:0e:6d:2c:15:23 src_ip 54.29.120.122 dst_ip 75.225.154.237 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11017 flower src_mac 02:eb:e1:b3:3b:c9 dst_mac 02:b5:5a:ed:ca:1d vlan_id 2619 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11018 flower src_mac 02:31:69:6f:ef:70 dst_mac 02:47:b6:f6:b1:7e vlan_id 3641 vlan_ethtype ip src_ip 21.167.190.236 dst_ip 35.98.95.35 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11019 flower src_mac 02:1b:99:53:24:b8 dst_mac 02:c3:53:a3:23:87 src_ip 68.185.255.121 dst_ip 59.239.83.73 ip_proto udp src_port 50660 dst_port 3084 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11020 flower src_mac 02:b1:9e:d0:8e:cd dst_mac 02:b9:03:a9:02:69 vlan_id 3983 vlan_ethtype 0x0800 src_ip 21.116.71.65 dst_ip 51.211.71.152 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11021 flower src_mac 02:41:23:27:0a:d0 dst_mac 02:75:32:42:b5:5d action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11022 flower src_mac 02:27:f7:89:ac:38 dst_mac 02:08:53:8a:70:a2 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11023 flower src_mac 02:79:31:a8:9f:b3 dst_mac 02:c9:b7:85:94:e2 vlan_id 3544 vlan_ethtype ipv4 src_ip 101.230.243.164 dst_ip 29.106.33.112 ip_proto tcp src_port 2203 dst_port 13050 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11024 flower src_mac 02:a7:91:71:b0:cf dst_mac 02:d4:33:03:13:78 src_ip 61.185.23.230 dst_ip 82.42.178.160 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11025 flower src_mac 02:cd:c8:75:73:5a dst_mac 02:29:82:98:48:36 vlan_id 3272 vlan_ethtype 0x0800 src_ip 110.170.28.35 dst_ip 116.50.45.87 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11026 flower src_mac 02:ed:f2:55:9c:4b dst_mac 02:04:22:a9:f1:c4 vlan_id 1994 vlan_ethtype ip src_ip 51.34.206.70 dst_ip 69.151.88.206 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11027 flower src_mac 02:23:0a:00:44:e3 dst_mac 02:e1:24:a1:d0:9f action pass && tc filter add dev swp1 ingress protocol ip pref 11028 flower src_mac 02:b7:a7:e2:5a:56 dst_mac 02:4b:4d:73:f0:f3 src_ip 52.12.255.209 dst_ip 37.93.68.212 ip_proto icmp code 209 type 14 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11029 flower src_mac 02:13:30:b0:b9:af dst_mac 02:ce:b4:b9:76:35 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11030 flower src_mac 02:15:59:dc:77:d3 dst_mac 02:c6:64:f4:80:01 src_ip 103.138.242.47 dst_ip 110.129.255.77 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11031 flower src_mac 02:46:4a:53:63:6d dst_mac 02:20:82:4b:bf:69 src_ip 40.60.47.123 dst_ip 59.195.54.227 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11032 flower src_mac 02:c2:77:50:43:40 dst_mac 02:4e:8b:27:7e:7d vlan_id 3425 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11033 flower src_mac 02:ba:b4:d1:d2:89 dst_mac 02:6b:1b:24:fb:9f vlan_id 1378 vlan_ethtype ip src_ip 57.162.230.196 dst_ip 60.85.27.185 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11034 flower src_mac 02:68:fe:0c:3d:c1 dst_mac 02:61:ea:81:26:06 vlan_id 2521 vlan_ethtype ipv4 src_ip 72.201.139.185 dst_ip 13.211.183.130 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11035 flower src_mac 02:1f:6b:8d:f2:79 dst_mac 02:fb:d6:bd:e4:1f action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11036 flower src_mac 02:b8:99:29:7f:99 dst_mac 02:42:08:11:82:45 vlan_id 1634 vlan_ethtype 0x0800 src_ip 55.153.132.202 dst_ip 76.15.70.127 ip_proto tcp src_port 926 dst_port 56212 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11037 flower src_mac 02:cd:1d:16:73:1d dst_mac 02:8d:9e:9b:95:eb src_ip 103.218.217.185 dst_ip 98.189.114.141 ip_proto udp src_port 59487 dst_port 17943 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11038 flower src_mac 02:34:f4:84:82:9c dst_mac 02:a9:c5:d7:4c:08 vlan_id 198 vlan_ethtype ipv4 src_ip 92.116.199.224 dst_ip 30.122.145.70 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11039 flower src_mac 02:86:bf:9f:b6:59 dst_mac 02:b5:fc:55:d1:69 vlan_id 284 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11040 flower src_mac 02:07:f4:a8:44:e3 dst_mac 02:a3:d3:39:31:5a action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11041 flower src_mac 02:8d:41:9b:f0:b8 dst_mac 02:09:fb:9f:58:e6 vlan_id 2403 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11042 flower src_mac 02:27:77:95:42:af dst_mac 02:46:c3:df:85:e4 vlan_id 3060 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11043 flower src_mac 02:ba:10:75:ad:23 dst_mac 02:4d:72:0a:2f:19 vlan_id 497 vlan_ethtype ipv4 src_ip 19.21.10.222 dst_ip 57.142.248.41 ip_proto tcp src_port 55570 dst_port 22248 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11044 flower src_mac 02:1b:ce:dc:25:31 dst_mac 02:23:a8:e1:3d:81 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11045 flower src_mac 02:e0:19:01:5d:ba dst_mac 02:30:9d:18:cf:c1 vlan_id 4055 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11046 flower src_mac 02:4c:6c:c7:87:5f dst_mac 02:17:09:d1:be:af vlan_id 2759 vlan_ethtype ipv4 src_ip 12.242.59.71 dst_ip 47.108.97.212 ip_proto tcp src_port 10514 dst_port 54002 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11047 flower src_mac 02:ba:f8:c7:e7:05 dst_mac 02:fc:16:7a:e5:d5 vlan_id 1501 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11048 flower src_mac 02:82:db:a4:bf:e6 dst_mac 02:b6:0c:b2:99:b0 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11049 flower src_mac 02:35:b7:89:60:c2 dst_mac 02:31:2a:c8:b6:36 vlan_id 1311 vlan_ethtype ip src_ip 84.33.126.202 dst_ip 111.251.149.153 ip_proto udp src_port 61107 dst_port 36123 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11050 flower src_mac 02:24:09:ac:47:35 dst_mac 02:27:0e:2b:bc:42 vlan_id 973 vlan_ethtype 0x0800 src_ip 118.249.87.190 dst_ip 11.64.157.63 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11051 flower src_mac 02:8f:4b:ad:e6:f1 dst_mac 02:12:70:2e:84:40 vlan_id 2022 vlan_ethtype ipv4 src_ip 45.103.103.76 dst_ip 46.14.218.221 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11052 flower src_mac 02:92:b9:ea:33:f2 dst_mac 02:84:98:80:6a:e3 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11053 flower src_mac 02:17:e7:23:8b:3e dst_mac 02:61:63:ff:a9:3b vlan_id 2797 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11054 flower src_mac 02:bb:ca:20:02:3a dst_mac 02:fe:f0:14:34:43 vlan_id 2787 vlan_ethtype ipv4 src_ip 91.243.3.12 dst_ip 75.54.58.21 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11055 flower src_mac 02:1c:c9:97:8d:ee dst_mac 02:7b:62:fe:c7:dc src_ip 20.85.84.130 dst_ip 38.202.207.13 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11056 flower src_mac 02:cd:c7:1c:ec:03 dst_mac 02:00:55:49:95:3d src_ip 59.231.31.99 dst_ip 93.79.200.188 ip_proto icmp code 243 type 15 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11057 flower src_mac 02:2a:f7:d1:31:ca dst_mac 02:56:80:ac:af:d1 vlan_id 1482 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ip pref 11058 flower src_mac 02:c6:33:8f:83:89 dst_mac 02:45:30:aa:9a:24 src_ip 97.134.134.108 dst_ip 75.225.21.84 ip_proto udp src_port 62745 dst_port 34251 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11059 flower src_mac 02:f6:28:f3:04:b5 dst_mac 02:e5:97:cf:a5:f6 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11060 flower src_mac 02:ef:6b:81:ea:a7 dst_mac 02:5e:9f:d9:84:07 vlan_id 404 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11061 flower src_mac 02:25:53:98:64:cb dst_mac 02:94:53:de:28:24 src_ip 104.189.218.32 dst_ip 124.227.1.222 ip_proto tcp src_port 16196 dst_port 54303 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11062 flower src_mac 02:3c:90:3f:51:e3 dst_mac 02:c6:1b:24:ca:72 vlan_id 4078 vlan_ethtype ipv4 src_ip 113.133.29.246 dst_ip 14.34.141.181 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11063 flower src_mac 02:4d:5b:c1:12:9c dst_mac 02:f5:a6:f3:72:1f src_ip 126.223.98.224 dst_ip 126.35.143.28 ip_proto tcp src_port 22677 dst_port 4123 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11064 flower src_mac 02:87:9c:75:71:95 dst_mac 02:04:1b:47:d5:9e vlan_id 2011 vlan_ethtype ipv4 src_ip 117.218.160.94 dst_ip 69.175.134.76 ip_proto udp src_port 53638 dst_port 62785 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11065 flower src_mac 02:44:92:4b:37:d5 dst_mac 02:c3:57:df:4d:42 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11066 flower src_mac 02:81:64:99:70:db dst_mac 02:bb:28:41:49:1a vlan_id 2474 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11067 flower src_mac 02:48:ba:ed:f0:b3 dst_mac 02:70:fc:7f:f5:77 vlan_id 2509 vlan_ethtype ip src_ip 79.6.127.85 dst_ip 101.227.137.151 ip_proto tcp src_port 60011 dst_port 59286 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11068 flower src_mac 02:95:a8:79:4d:e8 dst_mac 02:56:37:81:90:d6 src_ip 87.169.164.91 dst_ip 80.29.22.182 ip_proto tcp src_port 6847 dst_port 46186 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11069 flower src_mac 02:c1:22:02:94:d8 dst_mac 02:d7:46:f5:e0:8d action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11070 flower src_mac 02:3a:5d:92:68:ef dst_mac 02:c7:15:ba:8b:0b vlan_id 1978 vlan_ethtype ipv4 src_ip 113.7.87.116 dst_ip 58.135.221.31 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11071 flower src_mac 02:72:b2:91:05:60 dst_mac 02:9b:ab:27:ec:b2 vlan_id 533 vlan_ethtype ipv4 src_ip 87.53.27.89 dst_ip 67.252.66.238 ip_proto tcp src_port 62113 dst_port 5413 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11072 flower src_mac 02:80:49:a0:57:1b dst_mac 02:ec:f0:50:c5:17 vlan_id 3905 vlan_ethtype 0x0800 src_ip 78.57.195.12 dst_ip 125.198.228.207 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11073 flower src_mac 02:93:5e:84:1b:37 dst_mac 02:40:2f:02:92:74 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11074 flower src_mac 02:7c:cc:48:c0:d5 dst_mac 02:ba:51:43:dc:06 vlan_id 2969 vlan_ethtype ipv4 src_ip 79.72.41.97 dst_ip 28.51.181.229 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11075 flower src_mac 02:91:ca:8c:97:80 dst_mac 02:3a:ac:9a:58:18 vlan_id 600 vlan_ethtype ipv4 src_ip 50.83.246.159 dst_ip 120.192.75.195 ip_proto tcp src_port 40965 dst_port 36089 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11076 flower src_mac 02:b0:fa:3a:f0:62 dst_mac 02:87:cd:29:37:67 src_ip 74.139.208.215 dst_ip 59.245.75.142 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11077 flower src_mac 02:bc:09:05:e2:cf dst_mac 02:7b:f3:77:f8:08 vlan_id 400 vlan_ethtype 0x0800 src_ip 36.93.65.232 dst_ip 84.248.255.240 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11078 flower src_mac 02:35:53:c6:04:8e dst_mac 02:8f:fb:86:23:29 vlan_id 2515 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11079 flower src_mac 02:d6:c5:db:9b:f0 dst_mac 02:56:57:f6:8a:84 vlan_id 4030 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11080 flower src_mac 02:11:be:99:b4:15 dst_mac 02:70:ce:79:f8:a2 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11081 flower src_mac 02:92:6c:d1:3a:18 dst_mac 02:b8:ab:a8:35:8c vlan_id 656 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11082 flower src_mac 02:8b:84:6f:a3:2b dst_mac 02:08:5c:c1:65:87 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11083 flower src_mac 02:b8:3c:69:a1:59 dst_mac 02:55:e4:65:2f:d6 vlan_id 992 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11084 flower src_mac 02:ac:3d:b2:c3:0e dst_mac 02:bb:69:50:f7:a2 vlan_id 2135 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11085 flower src_mac 02:4c:4f:ee:79:b3 dst_mac 02:b5:42:ba:5d:0b vlan_id 2442 vlan_ethtype ipv4 src_ip 81.141.102.124 dst_ip 79.129.251.69 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11086 flower src_mac 02:9c:5b:0a:ea:3b dst_mac 02:20:3a:50:e9:66 vlan_id 3547 vlan_ethtype 0x0800 src_ip 49.67.249.34 dst_ip 56.62.254.213 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11087 flower src_mac 02:9d:4c:e8:b5:ea dst_mac 02:62:b7:05:92:18 vlan_id 300 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11088 flower src_mac 02:42:4c:0b:92:45 dst_mac 02:2e:b0:9f:18:b2 src_ip 28.134.54.50 dst_ip 115.124.30.239 ip_proto udp src_port 6098 dst_port 20875 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11089 flower src_mac 02:f9:53:9d:e7:c8 dst_mac 02:6f:72:08:cd:b7 vlan_id 3990 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11090 flower src_mac 02:53:77:43:45:36 dst_mac 02:00:83:a6:3a:0d vlan_id 1973 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 11091 flower src_mac 02:3f:fe:67:42:a4 dst_mac 02:38:24:a0:38:b7 src_ip 124.195.166.198 dst_ip 52.69.46.240 ip_proto icmp code 119 type 16 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11092 flower src_mac 02:59:b1:bd:6c:5f dst_mac 02:a9:d3:86:1b:ad action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11093 flower src_mac 02:15:bb:38:87:e8 dst_mac 02:13:8b:d2:40:70 vlan_id 770 vlan_ethtype ip src_ip 122.139.228.45 dst_ip 124.155.236.242 action pass && tc filter add dev swp1 ingress protocol ip pref 11094 flower src_mac 02:38:72:a4:91:74 dst_mac 02:14:cb:29:b3:ae src_ip 78.112.122.236 dst_ip 43.90.254.121 ip_proto tcp src_port 41575 dst_port 57196 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11095 flower src_mac 02:2b:95:f1:94:5b dst_mac 02:44:5c:89:93:23 vlan_id 1883 vlan_ethtype 0x0800 src_ip 81.102.168.69 dst_ip 88.129.141.223 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11096 flower src_mac 02:de:74:90:27:4d dst_mac 02:41:1c:2e:e1:7d action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11097 flower src_mac 02:46:7c:c3:d0:1d dst_mac 02:1a:3d:8f:37:78 vlan_id 61 vlan_ethtype ipv4 src_ip 26.154.102.17 dst_ip 78.218.38.112 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11098 flower src_mac 02:c1:18:62:ce:34 dst_mac 02:07:55:46:20:56 vlan_id 4061 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11099 flower src_mac 02:e6:71:a9:e7:28 dst_mac 02:dd:cf:10:21:96 vlan_id 2016 vlan_ethtype ip src_ip 112.45.55.156 dst_ip 47.93.58.250 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11100 flower src_mac 02:52:11:ee:5f:ef dst_mac 02:d7:24:c0:ed:ac vlan_id 1387 vlan_ethtype ip src_ip 81.183.193.71 dst_ip 60.22.55.96 ip_proto udp src_port 32829 dst_port 8919 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11101 flower src_mac 02:82:6c:fd:d5:41 dst_mac 02:4e:c9:3a:bb:f9 vlan_id 2546 vlan_ethtype ip src_ip 78.101.195.65 dst_ip 27.224.40.101 ip_proto tcp src_port 9086 dst_port 7848 action trap && tc filter add dev swp1 ingress protocol ip pref 11102 flower src_mac 02:77:1e:a8:db:67 dst_mac 02:8b:23:ad:90:2f src_ip 57.44.223.174 dst_ip 36.185.156.214 ip_proto icmp code 226 type 18 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11103 flower src_mac 02:6a:a5:3c:fd:e4 dst_mac 02:83:48:ca:78:a7 vlan_id 1091 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11104 flower src_mac 02:ac:61:2d:b7:1e dst_mac 02:9e:a2:36:2a:b1 vlan_id 2919 vlan_ethtype ip src_ip 15.141.6.36 dst_ip 16.23.87.243 ip_proto tcp src_port 26553 dst_port 57252 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11105 flower src_mac 02:01:a0:8f:4c:43 dst_mac 02:7b:55:2d:6d:59 vlan_id 3255 vlan_ethtype ip src_ip 72.217.96.15 dst_ip 51.123.91.88 ip_proto udp src_port 7950 dst_port 19374 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11106 flower src_mac 02:9b:05:ce:56:d7 dst_mac 02:1e:ab:c8:f2:e3 vlan_id 1486 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11107 flower src_mac 02:64:80:34:7d:da dst_mac 02:04:b8:66:d2:8c vlan_id 2438 vlan_ethtype 0x0800 src_ip 89.114.227.221 dst_ip 114.82.208.82 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11108 flower src_mac 02:fd:10:5a:a6:7b dst_mac 02:dd:e4:36:a6:ba vlan_id 1415 vlan_ethtype ipv4 src_ip 40.144.195.228 dst_ip 89.154.24.160 ip_proto tcp src_port 8363 dst_port 7022 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11109 flower src_mac 02:fe:b4:d3:49:b2 dst_mac 02:a3:1e:35:6e:1d vlan_id 1875 vlan_ethtype 0x0800 src_ip 66.190.2.61 dst_ip 126.210.88.76 ip_proto udp src_port 32825 dst_port 1417 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11110 flower src_mac 02:7d:14:89:31:df dst_mac 02:22:d9:d8:7e:59 vlan_id 3199 vlan_ethtype ip src_ip 22.53.78.204 dst_ip 59.55.253.129 ip_proto tcp src_port 34674 dst_port 30956 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11111 flower src_mac 02:0f:13:11:d1:f4 dst_mac 02:26:4c:20:c3:df action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11112 flower src_mac 02:db:07:ee:51:bc dst_mac 02:a1:cf:75:5e:2a action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11113 flower src_mac 02:b9:0e:12:dd:d5 dst_mac 02:99:83:5e:fe:e4 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11114 flower src_mac 02:a1:e4:3b:12:ca dst_mac 02:92:67:bd:56:79 src_ip 76.120.155.87 dst_ip 100.96.120.191 ip_proto tcp src_port 37205 dst_port 13943 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11115 flower src_mac 02:76:5e:86:de:ed dst_mac 02:9c:a4:ac:84:f7 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11116 flower src_mac 02:1e:1b:4d:85:0f dst_mac 02:f1:b3:29:fc:fc vlan_id 2207 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11117 flower src_mac 02:95:bd:41:6b:32 dst_mac 02:ed:4c:55:c8:3d vlan_id 3951 vlan_ethtype ipv4 src_ip 121.196.198.64 dst_ip 85.101.135.17 ip_proto udp src_port 19300 dst_port 60520 action pass && tc filter add dev swp1 ingress protocol ip pref 11118 flower src_mac 02:23:04:06:b5:96 dst_mac 02:9d:4a:ad:62:fa src_ip 106.186.96.24 dst_ip 74.232.134.55 ip_proto icmp code 152 type 16 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11119 flower src_mac 02:0b:1a:c1:fd:52 dst_mac 02:50:d8:b2:d3:6e src_ip 32.24.180.17 dst_ip 101.27.91.182 ip_proto udp src_port 6061 dst_port 33715 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11120 flower src_mac 02:09:2e:24:e2:6d dst_mac 02:3f:70:ad:ce:43 vlan_id 3809 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11121 flower src_mac 02:09:d8:37:54:26 dst_mac 02:ef:7e:25:1d:5f src_ip 30.49.105.139 dst_ip 98.11.234.55 ip_proto icmp code 20 type 5 action trap && tc filter add dev swp1 ingress protocol ip pref 11122 flower src_mac 02:1f:87:bd:d7:5f dst_mac 02:f5:f8:f0:54:bc src_ip 72.237.141.181 dst_ip 48.10.51.211 ip_proto icmp code 122 type 14 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11123 flower src_mac 02:89:8e:09:0d:b0 dst_mac 02:c4:4f:16:76:6b action drop && tc filter add dev swp1 ingress protocol ip pref 11124 flower src_mac 02:9b:bf:1b:af:f9 dst_mac 02:62:3d:0b:fb:1d src_ip 22.6.86.207 dst_ip 11.222.19.227 ip_proto tcp src_port 57753 dst_port 39339 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11125 flower src_mac 02:38:52:76:f7:ab dst_mac 02:0a:9c:6f:63:9c action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11126 flower src_mac 02:00:97:51:2d:e5 dst_mac 02:5e:f1:4b:3c:cc vlan_id 2222 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11127 flower src_mac 02:a7:2b:04:62:40 dst_mac 02:4f:94:2b:a4:1b vlan_id 624 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11128 flower src_mac 02:cf:6c:53:ab:73 dst_mac 02:5b:dd:cd:97:e6 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11129 flower src_mac 02:72:d4:d2:17:46 dst_mac 02:0c:2a:66:c5:97 vlan_id 880 vlan_ethtype ipv4 src_ip 108.69.6.133 dst_ip 85.76.65.120 ip_proto tcp src_port 37253 dst_port 29026 action drop && tc filter add dev swp1 ingress protocol ip pref 11130 flower src_mac 02:48:1e:be:e7:ab dst_mac 02:05:a3:a6:cc:6c src_ip 114.140.127.155 dst_ip 106.255.198.235 ip_proto tcp src_port 3570 dst_port 38256 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11131 flower src_mac 02:2d:91:e3:3e:60 dst_mac 02:7a:2c:24:b1:95 vlan_id 326 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11132 flower src_mac 02:e5:b3:86:d8:e7 dst_mac 02:57:cb:70:75:50 vlan_id 2403 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11133 flower src_mac 02:1f:c9:44:4a:eb dst_mac 02:76:ff:00:f3:01 vlan_id 3829 vlan_ethtype ipv4 src_ip 96.119.120.80 dst_ip 102.208.18.208 action trap && tc filter add dev swp1 ingress protocol ip pref 11134 flower src_mac 02:53:f0:7e:28:27 dst_mac 02:23:02:5e:28:a7 src_ip 60.185.144.236 dst_ip 103.107.82.140 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11135 flower src_mac 02:dd:36:5d:f2:36 dst_mac 02:1d:67:8b:21:33 vlan_id 1741 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol ip pref 11136 flower src_mac 02:f7:fc:1e:13:f6 dst_mac 02:9d:98:8f:3b:5a src_ip 27.122.176.132 dst_ip 77.108.80.102 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11137 flower src_mac 02:99:42:01:61:75 dst_mac 02:b0:42:10:87:00 src_ip 82.67.253.221 dst_ip 48.146.241.210 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11138 flower src_mac 02:92:02:38:e3:87 dst_mac 02:55:2e:15:75:c1 src_ip 96.206.127.149 dst_ip 41.124.195.73 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11139 flower src_mac 02:7f:ce:e0:81:4c dst_mac 02:03:3e:77:5d:c5 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11140 flower src_mac 02:3c:c9:a2:8d:b4 dst_mac 02:38:65:21:ea:da action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11141 flower src_mac 02:a9:07:b8:71:9f dst_mac 02:80:25:cb:da:32 vlan_id 2265 vlan_ethtype ip src_ip 18.124.130.138 dst_ip 20.232.25.90 ip_proto tcp src_port 58534 dst_port 62698 action drop && tc filter add dev swp1 ingress protocol ip pref 11142 flower src_mac 02:bd:5b:71:66:43 dst_mac 02:8d:29:f6:7b:3a src_ip 70.235.240.7 dst_ip 113.36.65.20 ip_proto icmp code 196 type 18 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11143 flower src_mac 02:79:73:6c:4a:2b dst_mac 02:a5:56:35:90:0f src_ip 70.234.253.138 dst_ip 74.50.108.205 ip_proto udp src_port 35646 dst_port 2232 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11144 flower src_mac 02:98:40:89:8d:b0 dst_mac 02:9d:e5:c4:b5:d1 vlan_id 1799 vlan_ethtype 0x0800 src_ip 77.3.196.139 dst_ip 109.56.66.187 ip_proto udp src_port 58835 dst_port 1850 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11145 flower src_mac 02:ff:96:5f:b3:5a dst_mac 02:35:91:f4:31:78 src_ip 43.38.212.19 dst_ip 108.70.219.245 ip_proto tcp src_port 7911 dst_port 58908 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11146 flower src_mac 02:b6:3d:c9:b0:8b dst_mac 02:7a:26:e2:a3:39 vlan_id 2959 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11147 flower src_mac 02:b9:50:54:93:bd dst_mac 02:06:32:ab:0e:06 vlan_id 6 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11148 flower src_mac 02:24:b4:bd:e8:9e dst_mac 02:33:3f:94:54:e2 vlan_id 3953 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 11149 flower src_mac 02:70:9d:87:8f:20 dst_mac 02:b2:bd:31:03:e0 src_ip 107.133.240.140 dst_ip 29.49.208.147 ip_proto icmp code 0 type 5 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11150 flower src_mac 02:f0:5b:4a:bc:bb dst_mac 02:e0:fd:1e:f0:9a action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11151 flower src_mac 02:fe:16:20:79:3c dst_mac 02:9a:20:f5:da:fc action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11152 flower src_mac 02:c8:99:5b:8b:fe dst_mac 02:23:a2:9d:26:d3 src_ip 15.247.128.52 dst_ip 43.226.31.32 ip_proto tcp src_port 13914 dst_port 61830 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11153 flower src_mac 02:70:9e:4c:0a:3b dst_mac 02:cd:2d:77:8d:0c vlan_id 3856 vlan_ethtype ip src_ip 36.128.130.147 dst_ip 99.202.198.245 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11154 flower src_mac 02:13:9c:a0:b1:ac dst_mac 02:ae:36:34:68:cd action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11155 flower src_mac 02:81:56:aa:e1:27 dst_mac 02:28:ca:7e:74:0f vlan_id 3857 vlan_ethtype ip src_ip 60.209.113.189 dst_ip 35.176.93.211 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11156 flower src_mac 02:c2:20:7f:32:99 dst_mac 02:28:28:a6:db:60 src_ip 51.87.227.246 dst_ip 107.98.81.8 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11157 flower src_mac 02:4b:ff:ef:1f:37 dst_mac 02:99:21:df:1a:f0 vlan_id 4017 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11158 flower src_mac 02:d5:f5:f0:c2:79 dst_mac 02:ef:65:90:be:9b action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11159 flower src_mac 02:f1:78:23:d9:14 dst_mac 02:98:de:d4:6d:d4 vlan_id 3087 vlan_ethtype ipv4 src_ip 69.169.138.133 dst_ip 108.52.163.9 ip_proto udp src_port 59645 dst_port 60686 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11160 flower src_mac 02:9e:49:4c:70:1c dst_mac 02:4f:ce:2f:32:13 vlan_id 1142 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11161 flower src_mac 02:16:e2:c9:bd:be dst_mac 02:c4:46:e1:10:d6 vlan_id 2429 vlan_ethtype ip src_ip 92.61.127.6 dst_ip 59.60.225.161 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11162 flower src_mac 02:6d:71:01:1c:72 dst_mac 02:a4:31:dd:9b:6e vlan_id 2274 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11163 flower src_mac 02:ac:de:b0:91:71 dst_mac 02:3a:c5:05:38:08 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11164 flower src_mac 02:e6:93:1a:87:ec dst_mac 02:5e:6e:0f:24:72 src_ip 112.208.109.172 dst_ip 32.138.187.119 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11165 flower src_mac 02:b8:30:a2:54:4a dst_mac 02:37:04:56:14:e3 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11166 flower src_mac 02:dd:2a:14:e8:9a dst_mac 02:1a:13:85:aa:94 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11167 flower src_mac 02:22:c5:cd:f5:e2 dst_mac 02:64:84:c6:72:6e vlan_id 51 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11168 flower src_mac 02:00:78:bc:0f:92 dst_mac 02:ff:a2:f4:fa:be action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11169 flower src_mac 02:41:b4:e6:85:98 dst_mac 02:51:11:65:83:77 vlan_id 1770 vlan_ethtype 0x0800 src_ip 72.237.50.156 dst_ip 111.34.40.172 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11170 flower src_mac 02:ae:12:9f:56:75 dst_mac 02:cb:b5:5b:27:ff src_ip 74.57.109.88 dst_ip 33.219.103.80 ip_proto icmp code 234 type 0 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11171 flower src_mac 02:78:9f:12:5f:38 dst_mac 02:0c:53:59:22:f0 vlan_id 2590 vlan_ethtype ipv4 src_ip 109.251.14.86 dst_ip 83.2.214.184 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11172 flower src_mac 02:56:69:77:8e:95 dst_mac 02:92:d4:b3:8b:af vlan_id 1758 vlan_ethtype ipv4 src_ip 11.151.15.38 dst_ip 97.42.143.51 ip_proto tcp src_port 8962 dst_port 51006 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11173 flower src_mac 02:80:ea:22:d7:f3 dst_mac 02:ba:c5:9b:4a:aa action pass && tc filter add dev swp1 ingress protocol ip pref 11174 flower src_mac 02:f0:00:bd:bc:7b dst_mac 02:40:68:4a:d3:19 src_ip 29.80.211.24 dst_ip 122.196.125.81 ip_proto tcp src_port 32466 dst_port 43270 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11175 flower src_mac 02:69:fb:fa:9b:31 dst_mac 02:b9:41:af:46:8d action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11176 flower src_mac 02:d9:98:82:ec:53 dst_mac 02:91:02:e0:6e:22 vlan_id 2579 vlan_ethtype 0x0800 src_ip 24.29.194.93 dst_ip 76.252.119.35 ip_proto tcp src_port 14546 dst_port 50158 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11177 flower src_mac 02:90:17:09:ce:97 dst_mac 02:3b:63:6e:67:78 vlan_id 1799 vlan_ethtype ip src_ip 76.190.45.189 dst_ip 23.53.236.102 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11178 flower src_mac 02:8e:9c:e6:e2:af dst_mac 02:5c:50:70:03:5a vlan_id 1880 vlan_ethtype ip src_ip 104.227.239.201 dst_ip 115.77.75.159 ip_proto udp src_port 58015 dst_port 13612 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11179 flower src_mac 02:32:3a:d1:50:e6 dst_mac 02:9a:a0:be:48:fa vlan_id 1341 vlan_ethtype ip src_ip 109.211.135.3 dst_ip 42.20.120.234 ip_proto udp src_port 12447 dst_port 1733 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11180 flower src_mac 02:1a:e2:54:54:76 dst_mac 02:ca:9a:e8:58:e8 src_ip 36.194.163.97 dst_ip 74.103.123.234 ip_proto udp src_port 54548 dst_port 27066 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11181 flower src_mac 02:22:8b:dd:69:53 dst_mac 02:47:11:68:aa:17 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11182 flower src_mac 02:73:ce:c1:c4:21 dst_mac 02:d0:f0:eb:05:0c src_ip 107.163.254.23 dst_ip 19.111.135.17 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11183 flower src_mac 02:e0:1a:ce:17:fb dst_mac 02:f5:e2:61:16:ab action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11184 flower src_mac 02:55:25:cd:22:b9 dst_mac 02:5e:95:9e:76:64 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11185 flower src_mac 02:3e:d4:22:a7:91 dst_mac 02:b9:d9:1b:18:f7 vlan_id 2547 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11186 flower src_mac 02:57:b1:bf:2d:e1 dst_mac 02:f9:57:92:75:95 vlan_id 3017 vlan_ethtype ip src_ip 57.216.233.12 dst_ip 15.21.99.155 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11187 flower src_mac 02:54:26:d9:9f:ff dst_mac 02:7e:fe:a1:8a:99 vlan_id 36 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11188 flower src_mac 02:8a:2a:27:88:d6 dst_mac 02:25:90:84:d7:db vlan_id 1786 vlan_ethtype 0x0800 src_ip 43.0.178.100 dst_ip 26.80.25.250 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11189 flower src_mac 02:2e:1c:58:c7:e7 dst_mac 02:18:ee:d9:71:31 vlan_id 557 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11190 flower src_mac 02:1b:58:12:76:0f dst_mac 02:ec:e7:a2:d1:38 vlan_id 4032 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11191 flower src_mac 02:fa:63:c6:6b:93 dst_mac 02:df:63:88:83:ed vlan_id 3535 vlan_ethtype ip src_ip 60.102.192.249 dst_ip 70.172.122.208 ip_proto udp src_port 10532 dst_port 22380 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11192 flower src_mac 02:f1:44:ce:5a:ed dst_mac 02:1c:52:5a:8a:91 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11193 flower src_mac 02:9a:77:f8:0a:18 dst_mac 02:d4:3b:08:39:c8 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11194 flower src_mac 02:d0:a7:55:36:a3 dst_mac 02:7e:e8:e4:b8:79 src_ip 31.129.152.232 dst_ip 26.61.21.223 ip_proto icmp code 98 type 3 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11195 flower src_mac 02:ea:29:97:ea:67 dst_mac 02:ff:d5:a0:fe:80 vlan_id 3875 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11196 flower src_mac 02:97:31:f5:87:eb dst_mac 02:a0:79:89:49:b7 src_ip 49.60.31.82 dst_ip 118.67.106.53 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11197 flower src_mac 02:5d:30:72:45:b5 dst_mac 02:90:17:4c:7b:f8 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11198 flower src_mac 02:a6:70:29:4d:1d dst_mac 02:de:df:51:c9:56 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11199 flower src_mac 02:81:bc:07:58:5b dst_mac 02:cb:83:f4:e6:ca vlan_id 1691 vlan_ethtype 0x9300 action drop INFO asyncssh:logging.py:92 [conn=24, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 11200 flower src_mac 02:c8:12:95:05:4c dst_mac 02:ff:c0:d7:3a:48 vlan_id 3053 vlan_ethtype 0x0800 src_ip 16.193.160.250 dst_ip 13.171.64.217 ip_proto tcp src_port 32905 dst_port 46771 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11201 flower src_mac 02:27:4c:58:cf:c3 dst_mac 02:33:5b:5a:0f:4d vlan_id 3136 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11202 flower src_mac 02:bb:9d:59:5b:41 dst_mac 02:ba:97:8a:b5:f7 vlan_id 707 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11203 flower src_mac 02:53:0f:0d:16:6e dst_mac 02:82:c8:6d:f6:38 vlan_id 3300 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11204 flower src_mac 02:8a:c0:90:b9:63 dst_mac 02:86:0e:17:0d:1e vlan_id 755 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11205 flower src_mac 02:3b:f9:52:e5:6c dst_mac 02:d4:9b:04:71:5d vlan_id 363 vlan_ethtype 0x0800 src_ip 121.120.161.186 dst_ip 99.119.212.10 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11206 flower src_mac 02:fc:1a:06:ce:7f dst_mac 02:f9:74:e8:15:90 vlan_id 1660 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11207 flower src_mac 02:25:13:e6:ad:a3 dst_mac 02:46:c1:67:0c:da vlan_id 4012 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11208 flower src_mac 02:6c:ac:08:e6:71 dst_mac 02:5d:cf:c9:90:6c src_ip 44.181.65.219 dst_ip 98.142.7.203 ip_proto tcp src_port 42802 dst_port 33247 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11209 flower src_mac 02:98:db:8c:cd:a1 dst_mac 02:99:48:7d:3a:a1 src_ip 89.197.80.207 dst_ip 100.68.223.47 ip_proto tcp src_port 19554 dst_port 56289 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11210 flower src_mac 02:38:87:30:af:60 dst_mac 02:35:b0:bf:e7:51 src_ip 64.137.90.234 dst_ip 65.250.21.242 ip_proto udp src_port 24443 dst_port 49062 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11211 flower src_mac 02:a7:c4:44:10:12 dst_mac 02:07:94:1e:a5:a1 vlan_id 833 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11212 flower src_mac 02:39:2f:7c:6b:f5 dst_mac 02:31:0b:27:5b:4a vlan_id 2355 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11213 flower src_mac 02:bc:45:ec:bc:b4 dst_mac 02:02:3a:06:f5:1b vlan_id 3675 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11214 flower src_mac 02:30:b6:b4:b1:cd dst_mac 02:ff:92:4b:d4:7a action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11215 flower src_mac 02:f5:89:fd:26:ca dst_mac 02:a5:e5:eb:9c:ab vlan_id 3479 vlan_ethtype ip src_ip 73.27.116.42 dst_ip 12.189.174.55 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11216 flower src_mac 02:ca:93:b5:84:89 dst_mac 02:b8:a4:ca:95:82 src_ip 99.59.137.150 dst_ip 107.207.123.170 ip_proto udp src_port 15646 dst_port 49637 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11217 flower src_mac 02:68:9f:21:19:32 dst_mac 02:61:64:0b:79:bc action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11218 flower src_mac 02:f0:48:eb:70:93 dst_mac 02:b3:f5:68:74:3e src_ip 15.171.19.3 dst_ip 84.120.28.233 ip_proto udp src_port 14175 dst_port 34726 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11219 flower src_mac 02:10:0c:af:9b:ac dst_mac 02:2a:b6:a0:be:36 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11220 flower src_mac 02:c1:2b:f7:4d:45 dst_mac 02:08:85:c4:65:55 vlan_id 2238 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11221 flower src_mac 02:6b:c7:94:56:f1 dst_mac 02:fb:e3:01:3d:20 vlan_id 1264 vlan_ethtype ipv4 src_ip 61.74.238.229 dst_ip 33.97.236.158 ip_proto tcp src_port 11988 dst_port 16669 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11222 flower src_mac 02:d1:3e:ba:09:fb dst_mac 02:1e:97:9a:3f:a2 vlan_id 1079 vlan_ethtype ip src_ip 87.145.53.228 dst_ip 102.162.47.246 ip_proto tcp src_port 36053 dst_port 5701 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11223 flower src_mac 02:e4:de:c6:be:36 dst_mac 02:4e:ad:c1:79:1b src_ip 112.236.15.54 dst_ip 59.185.57.193 ip_proto udp src_port 18078 dst_port 14291 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11224 flower src_mac 02:c0:14:c8:63:a3 dst_mac 02:0a:dd:b5:c1:12 vlan_id 2986 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11225 flower src_mac 02:0b:45:9c:d9:0d dst_mac 02:71:fd:3a:4a:43 vlan_id 2751 vlan_ethtype 0x0800 src_ip 63.52.51.140 dst_ip 58.245.155.77 ip_proto tcp src_port 64406 dst_port 81 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11226 flower src_mac 02:6e:f2:f3:16:03 dst_mac 02:0d:47:d7:7a:c5 action trap && tc filter add dev swp1 ingress protocol ip pref 11227 flower src_mac 02:f9:0f:a5:1f:78 dst_mac 02:86:09:a5:65:fb src_ip 117.148.146.13 dst_ip 22.42.86.204 ip_proto udp src_port 53288 dst_port 19751 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11228 flower src_mac 02:61:c9:fe:1a:ee dst_mac 02:63:2a:48:d2:f8 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11229 flower src_mac 02:2f:ab:ae:6d:d2 dst_mac 02:2f:20:df:ca:c1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11230 flower src_mac 02:66:a3:bb:54:0e dst_mac 02:bf:5e:d9:00:33 vlan_id 1001 vlan_ethtype ipv4 src_ip 97.235.226.8 dst_ip 21.3.203.75 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11231 flower src_mac 02:de:80:0c:9a:1e dst_mac 02:d1:a3:85:90:fc vlan_id 1343 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11232 flower src_mac 02:d5:09:93:5a:6b dst_mac 02:07:f7:40:54:e9 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11233 flower src_mac 02:d2:8a:cd:1a:cf dst_mac 02:a0:9a:1b:b3:02 src_ip 93.52.44.77 dst_ip 107.174.53.111 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11234 flower src_mac 02:75:99:ba:88:16 dst_mac 02:1f:da:fb:67:e1 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11235 flower src_mac 02:2d:ab:a5:63:dd dst_mac 02:ce:19:31:c5:da action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11236 flower src_mac 02:b9:7c:89:b1:dd dst_mac 02:94:08:71:18:f7 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11237 flower src_mac 02:8a:91:34:18:56 dst_mac 02:d2:0a:40:e2:1c vlan_id 3191 vlan_ethtype ipv4 src_ip 106.119.135.169 dst_ip 82.147.250.43 ip_proto tcp src_port 8349 dst_port 41781 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11238 flower src_mac 02:63:79:e1:f9:9a dst_mac 02:57:f3:77:d1:34 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11239 flower src_mac 02:6d:cd:3d:ac:dc dst_mac 02:58:af:b5:1c:77 action drop && tc filter add dev swp1 ingress protocol ip pref 11240 flower src_mac 02:f1:eb:2f:be:8f dst_mac 02:26:02:1d:68:4d src_ip 108.110.132.50 dst_ip 100.11.183.219 ip_proto icmp code 60 type 8 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11241 flower src_mac 02:8e:53:ef:21:da dst_mac 02:f3:86:44:3e:5c vlan_id 2459 vlan_ethtype ip src_ip 11.126.86.243 dst_ip 63.56.86.117 ip_proto tcp src_port 29303 dst_port 9822 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11242 flower src_mac 02:e5:c2:db:d7:b3 dst_mac 02:81:e5:77:48:f5 vlan_id 2032 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11243 flower src_mac 02:a6:06:a5:4d:67 dst_mac 02:64:4f:d5:46:47 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11244 flower src_mac 02:59:f0:c7:bd:3d dst_mac 02:2c:18:b6:af:c0 vlan_id 2657 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11245 flower src_mac 02:8a:e5:19:34:fa dst_mac 02:02:14:9e:86:2b vlan_id 3543 vlan_ethtype 0x0800 src_ip 96.79.124.89 dst_ip 120.78.245.132 ip_proto tcp src_port 16489 dst_port 50904 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11246 flower src_mac 02:61:da:83:7f:fb dst_mac 02:42:49:d5:6d:90 vlan_id 4005 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11247 flower src_mac 02:ca:2e:c6:dd:42 dst_mac 02:f8:57:de:6f:31 src_ip 98.98.95.169 dst_ip 125.98.106.107 ip_proto udp src_port 28167 dst_port 19508 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11248 flower src_mac 02:3c:59:c3:f3:6f dst_mac 02:9d:f2:e9:6b:55 vlan_id 605 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11249 flower src_mac 02:e0:36:68:e0:8d dst_mac 02:13:a2:ea:d2:ea vlan_id 2126 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11250 flower src_mac 02:f3:05:ff:cb:a0 dst_mac 02:b5:a2:ab:e5:86 vlan_id 2818 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11251 flower src_mac 02:de:90:45:9f:5d dst_mac 02:ff:db:1f:36:28 vlan_id 24 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11252 flower src_mac 02:bb:83:9c:b4:af dst_mac 02:ad:7a:a7:08:60 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11253 flower src_mac 02:f2:1f:cc:86:c5 dst_mac 02:37:11:ed:83:61 vlan_id 3390 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11254 flower src_mac 02:c9:00:3c:16:31 dst_mac 02:0b:bf:d5:be:31 src_ip 18.36.132.27 dst_ip 45.88.162.249 ip_proto udp src_port 56467 dst_port 12210 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11255 flower src_mac 02:11:1a:9a:34:c4 dst_mac 02:c5:d9:08:a0:54 vlan_id 3650 vlan_ethtype ip src_ip 58.152.94.89 dst_ip 40.31.224.105 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11256 flower src_mac 02:01:e8:bb:62:9c dst_mac 02:b8:0b:4e:0b:07 vlan_id 679 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11257 flower src_mac 02:dd:43:23:f7:a6 dst_mac 02:0b:ec:bb:ff:be action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11258 flower src_mac 02:c0:3c:21:22:7b dst_mac 02:71:30:a7:5b:80 vlan_id 2160 vlan_ethtype ip src_ip 23.191.16.198 dst_ip 12.1.200.113 ip_proto tcp src_port 13740 dst_port 9783 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11259 flower src_mac 02:e6:df:95:be:e1 dst_mac 02:22:c2:bc:b7:99 vlan_id 2733 vlan_ethtype ipv4 src_ip 17.239.208.118 dst_ip 55.57.105.193 ip_proto tcp src_port 55056 dst_port 65354 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11260 flower src_mac 02:d0:13:99:94:91 dst_mac 02:60:0a:27:0a:2f src_ip 36.160.103.247 dst_ip 118.230.46.225 ip_proto icmp code 52 type 13 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11261 flower src_mac 02:4a:d7:87:cb:b7 dst_mac 02:77:76:56:ce:ed vlan_id 1354 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11262 flower src_mac 02:c5:37:68:83:9e dst_mac 02:80:c8:97:c9:90 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11263 flower src_mac 02:73:90:56:0d:a8 dst_mac 02:d5:55:d9:9c:2c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11264 flower src_mac 02:65:1b:e8:80:dd dst_mac 02:4b:25:8a:18:1b vlan_id 929 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11265 flower src_mac 02:be:70:56:c6:3a dst_mac 02:45:53:be:b8:95 vlan_id 1827 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11266 flower src_mac 02:97:c0:4a:87:71 dst_mac 02:02:41:ca:af:13 vlan_id 3681 vlan_ethtype 0x0800 src_ip 123.213.50.209 dst_ip 28.203.121.228 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11267 flower src_mac 02:bc:b4:0b:4f:01 dst_mac 02:37:36:82:b2:28 vlan_id 1812 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 11268 flower src_mac 02:cf:b6:c9:2b:1b dst_mac 02:67:92:60:2c:47 src_ip 34.33.93.160 dst_ip 118.222.47.104 ip_proto icmp code 193 type 0 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11269 flower src_mac 02:c2:85:6d:b8:82 dst_mac 02:88:50:93:5b:0f vlan_id 3795 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11270 flower src_mac 02:aa:a2:d4:b3:1b dst_mac 02:a0:70:a9:02:02 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11271 flower src_mac 02:cc:4b:b2:d6:a3 dst_mac 02:d3:f6:9e:16:c1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11272 flower src_mac 02:8c:74:8f:5a:5f dst_mac 02:25:e7:c8:36:b0 vlan_id 1665 vlan_ethtype 0x0800 src_ip 97.147.210.204 dst_ip 119.141.8.97 ip_proto tcp src_port 64396 dst_port 63537 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11273 flower src_mac 02:d8:9b:cc:f4:65 dst_mac 02:91:78:ab:be:2f vlan_id 3709 vlan_ethtype ipv4 src_ip 16.188.139.135 dst_ip 58.205.41.7 ip_proto udp src_port 35486 dst_port 52387 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11274 flower src_mac 02:26:f5:40:9d:d0 dst_mac 02:f5:32:54:8d:dd action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11275 flower src_mac 02:0b:3f:5c:32:f5 dst_mac 02:61:76:22:c8:a6 vlan_id 251 vlan_ethtype 0x0800 src_ip 50.54.225.78 dst_ip 58.116.228.27 ip_proto tcp src_port 21146 dst_port 2617 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11276 flower src_mac 02:4e:30:09:e8:39 dst_mac 02:73:64:0a:cf:68 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11277 flower src_mac 02:04:ca:09:64:b3 dst_mac 02:e0:c3:4a:d9:14 vlan_id 2163 vlan_ethtype ipv4 src_ip 76.220.174.9 dst_ip 44.167.85.42 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11278 flower src_mac 02:e3:6d:bd:82:dd dst_mac 02:c9:b4:52:82:7e vlan_id 1878 vlan_ethtype 0x0800 src_ip 116.28.191.142 dst_ip 28.237.21.47 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11279 flower src_mac 02:7b:89:07:96:99 dst_mac 02:00:46:47:31:58 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11280 flower src_mac 02:bd:cb:81:96:48 dst_mac 02:19:34:f9:cf:63 vlan_id 851 vlan_ethtype ip src_ip 115.139.81.134 dst_ip 96.100.22.249 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11281 flower src_mac 02:30:f8:ed:22:12 dst_mac 02:70:b3:c7:f2:b8 src_ip 20.111.222.194 dst_ip 38.31.191.182 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11282 flower src_mac 02:86:90:03:c7:b3 dst_mac 02:da:f9:b0:c7:dc action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11283 flower src_mac 02:75:3a:1c:4a:1a dst_mac 02:74:42:e3:61:ea src_ip 11.161.44.172 dst_ip 73.173.78.85 ip_proto icmp code 126 type 11 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11284 flower src_mac 02:f1:3f:e2:92:01 dst_mac 02:33:04:5f:ad:49 vlan_id 337 vlan_ethtype 0x0800 src_ip 111.154.9.168 dst_ip 51.229.47.63 ip_proto udp src_port 4776 dst_port 19846 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11285 flower src_mac 02:56:06:ec:9c:ce dst_mac 02:e0:e2:1a:21:c4 vlan_id 1066 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11286 flower src_mac 02:55:1a:1c:3c:fb dst_mac 02:b5:4d:c5:6e:a7 vlan_id 3549 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11287 flower src_mac 02:4e:6a:cd:a4:16 dst_mac 02:c2:0f:9f:bf:a6 vlan_id 4091 vlan_ethtype ip src_ip 67.122.60.75 dst_ip 20.148.114.68 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11288 flower src_mac 02:fe:fc:63:67:9b dst_mac 02:92:23:86:71:6a action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11289 flower src_mac 02:81:6e:86:f0:dd dst_mac 02:3f:36:ae:1e:a7 vlan_id 14 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11290 flower src_mac 02:09:fc:19:99:c7 dst_mac 02:ce:f1:ca:32:3d vlan_id 9 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11291 flower src_mac 02:8c:6f:83:d7:3b dst_mac 02:e1:a6:00:41:0c action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11292 flower src_mac 02:40:b1:72:1b:ba dst_mac 02:72:f1:ae:63:af vlan_id 3359 vlan_ethtype 0x0800 src_ip 62.229.76.206 dst_ip 126.245.209.162 action trap && tc filter add dev swp1 ingress protocol ip pref 11293 flower src_mac 02:b4:46:dd:3b:80 dst_mac 02:99:ec:6c:4a:2a src_ip 30.185.11.168 dst_ip 31.251.86.24 ip_proto icmp code 197 type 15 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11294 flower src_mac 02:bc:e0:83:ef:b6 dst_mac 02:40:dd:90:88:10 vlan_id 3513 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11295 flower src_mac 02:a1:10:5e:9b:3d dst_mac 02:ce:03:1e:95:99 vlan_id 3653 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11296 flower src_mac 02:35:bb:aa:e3:39 dst_mac 02:16:b6:4f:87:ae vlan_id 2814 vlan_ethtype ipv4 src_ip 41.90.50.202 dst_ip 89.227.29.178 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11297 flower src_mac 02:3a:e5:a9:72:2b dst_mac 02:f8:5e:a4:bb:a7 vlan_id 701 vlan_ethtype ip src_ip 99.170.240.177 dst_ip 58.87.142.186 ip_proto udp src_port 46444 dst_port 27539 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11298 flower src_mac 02:ce:80:0b:74:7d dst_mac 02:8b:d5:84:b8:6e action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11299 flower src_mac 02:88:ac:90:b8:ce dst_mac 02:df:7f:d7:b9:68 vlan_id 2560 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11300 flower src_mac 02:b8:d6:ff:1d:74 dst_mac 02:ca:14:9a:01:06 vlan_id 1346 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11301 flower src_mac 02:56:ca:dd:58:c8 dst_mac 02:6f:dc:0d:c8:18 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11302 flower src_mac 02:b4:0c:1f:e2:ce dst_mac 02:93:d8:bf:c8:fd action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11303 flower src_mac 02:ea:24:6f:2b:b3 dst_mac 02:3e:3a:10:d1:91 src_ip 77.177.243.14 dst_ip 12.33.124.189 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11304 flower src_mac 02:a5:0a:39:4b:8d dst_mac 02:63:97:75:70:32 vlan_id 1702 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11305 flower src_mac 02:89:5c:13:2c:bd dst_mac 02:22:c9:44:78:78 src_ip 57.72.84.134 dst_ip 48.137.211.28 ip_proto tcp src_port 27293 dst_port 61349 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11306 flower src_mac 02:9f:b0:13:8a:14 dst_mac 02:d8:c5:dc:77:e5 vlan_id 471 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11307 flower src_mac 02:4c:20:e9:0c:f3 dst_mac 02:67:3a:93:8b:73 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11308 flower src_mac 02:ed:f0:1d:ed:f2 dst_mac 02:6f:51:04:c4:8f vlan_id 2295 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11309 flower src_mac 02:62:bc:de:27:68 dst_mac 02:15:0c:45:45:cd vlan_id 1878 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11310 flower src_mac 02:71:c3:18:7f:e3 dst_mac 02:54:2d:c8:19:9b action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11311 flower src_mac 02:1c:ca:d6:26:23 dst_mac 02:d4:a5:6e:0c:75 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11312 flower src_mac 02:10:47:e2:83:13 dst_mac 02:74:dd:06:50:54 vlan_id 707 vlan_ethtype 0x0800 src_ip 43.130.27.94 dst_ip 99.219.126.152 ip_proto tcp src_port 48724 dst_port 28500 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11313 flower src_mac 02:e1:7d:f9:6a:21 dst_mac 02:7b:e9:06:01:d1 vlan_id 3570 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11314 flower src_mac 02:68:d9:47:ec:ba dst_mac 02:5b:e6:00:08:0a action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11315 flower src_mac 02:97:d4:5b:04:9a dst_mac 02:ab:80:38:b9:f5 src_ip 122.27.151.65 dst_ip 49.185.189.25 ip_proto tcp src_port 54201 dst_port 39351 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11316 flower src_mac 02:06:33:81:98:d5 dst_mac 02:86:62:45:af:eb vlan_id 668 vlan_ethtype 0x0800 src_ip 26.193.134.229 dst_ip 82.13.117.108 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11317 flower src_mac 02:1e:58:93:f5:82 dst_mac 02:dc:82:48:99:55 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11318 flower src_mac 02:43:85:3a:e9:c8 dst_mac 02:0e:f7:87:b9:b1 src_ip 90.214.56.131 dst_ip 31.95.168.248 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11319 flower src_mac 02:8f:da:66:0f:8a dst_mac 02:ae:9b:e0:ae:a8 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11320 flower src_mac 02:ee:36:7e:84:b0 dst_mac 02:bf:0d:9c:70:c7 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11321 flower src_mac 02:cc:c5:ba:ec:e9 dst_mac 02:91:f8:20:46:8f vlan_id 891 vlan_ethtype 0x0800 src_ip 89.155.184.221 dst_ip 66.17.117.209 ip_proto udp src_port 14113 dst_port 47490 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11322 flower src_mac 02:1f:ec:44:ca:5e dst_mac 02:4a:15:6b:b6:c0 vlan_id 2241 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11323 flower src_mac 02:07:0b:d8:f5:ef dst_mac 02:26:d6:da:9e:34 vlan_id 3194 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11324 flower src_mac 02:cb:69:ee:30:35 dst_mac 02:88:60:23:40:86 vlan_id 1813 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11325 flower src_mac 02:20:28:8f:d9:68 dst_mac 02:e5:d6:cd:2a:be vlan_id 472 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11326 flower src_mac 02:a6:91:d4:75:fc dst_mac 02:39:c5:dd:5c:91 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11327 flower src_mac 02:d8:1f:7e:51:b5 dst_mac 02:29:d3:71:48:9d vlan_id 2549 vlan_ethtype ipv4 src_ip 34.236.125.147 dst_ip 116.122.147.4 ip_proto udp src_port 20581 dst_port 25072 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11328 flower src_mac 02:15:e8:b6:11:f8 dst_mac 02:4c:21:b6:53:1e action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11329 flower src_mac 02:da:fd:98:e0:db dst_mac 02:4c:11:b8:fc:e2 vlan_id 534 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11330 flower src_mac 02:b6:bb:d8:a8:a5 dst_mac 02:07:7a:51:51:4a vlan_id 2176 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11331 flower src_mac 02:e7:ed:8d:9a:9b dst_mac 02:b5:a0:a7:c8:76 vlan_id 953 vlan_ethtype ip src_ip 30.60.184.117 dst_ip 41.141.45.183 ip_proto tcp src_port 51967 dst_port 44858 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11332 flower src_mac 02:8b:5b:05:21:52 dst_mac 02:a3:4d:43:f2:3e src_ip 95.11.26.234 dst_ip 48.116.228.131 ip_proto icmp code 174 type 12 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11333 flower src_mac 02:1c:7f:c8:be:31 dst_mac 02:fe:37:a7:de:d5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11334 flower src_mac 02:ef:7b:a4:14:5d dst_mac 02:05:f9:f0:6d:aa vlan_id 3170 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11335 flower src_mac 02:59:ae:3f:d8:aa dst_mac 02:af:a5:05:a8:65 vlan_id 3743 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11336 flower src_mac 02:51:10:07:00:a7 dst_mac 02:84:c9:24:8a:76 vlan_id 2184 vlan_ethtype ipv4 src_ip 55.250.66.165 dst_ip 79.124.238.132 action pass && tc filter add dev swp1 ingress protocol ip pref 11337 flower src_mac 02:12:4e:a8:20:cd dst_mac 02:f2:b3:ce:ed:11 src_ip 92.194.6.158 dst_ip 119.13.17.100 ip_proto udp src_port 7903 dst_port 53670 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11338 flower src_mac 02:13:e3:a5:27:59 dst_mac 02:70:db:38:d7:e0 src_ip 18.223.54.245 dst_ip 62.37.248.199 ip_proto tcp src_port 18868 dst_port 59660 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11339 flower src_mac 02:7b:a3:4f:45:04 dst_mac 02:20:e8:51:15:ad src_ip 112.193.175.41 dst_ip 25.43.130.213 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11340 flower src_mac 02:f6:cd:26:c2:c8 dst_mac 02:fc:ef:46:bd:90 vlan_id 3237 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 11341 flower src_mac 02:54:0a:71:fd:38 dst_mac 02:fb:fc:3f:29:64 src_ip 90.55.240.79 dst_ip 39.69.98.63 ip_proto tcp src_port 40565 dst_port 50948 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11342 flower src_mac 02:7f:7c:07:74:6b dst_mac 02:5d:0c:32:b1:6f vlan_id 2337 vlan_ethtype 0x0800 src_ip 79.15.84.156 dst_ip 43.207.31.24 ip_proto udp src_port 39085 dst_port 20720 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11343 flower src_mac 02:ab:b1:92:fd:01 dst_mac 02:90:63:e2:e4:99 vlan_id 487 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11344 flower src_mac 02:ac:1f:e7:95:1c dst_mac 02:f0:bf:24:68:12 vlan_id 2085 vlan_ethtype ipv4 src_ip 21.223.100.155 dst_ip 36.221.23.89 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11345 flower src_mac 02:c3:28:f9:09:db dst_mac 02:1b:e9:4c:09:85 vlan_id 116 vlan_ethtype ipv4 src_ip 80.231.218.19 dst_ip 47.14.221.139 ip_proto udp src_port 33369 dst_port 10110 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11346 flower src_mac 02:b1:f7:87:e5:4f dst_mac 02:8b:70:cc:8f:73 vlan_id 2853 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11347 flower src_mac 02:fd:a8:e2:73:4f dst_mac 02:a0:62:04:a2:de action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11348 flower src_mac 02:68:2c:bf:33:f9 dst_mac 02:b1:60:21:f0:ac src_ip 55.149.161.97 dst_ip 44.169.129.201 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11349 flower src_mac 02:85:9c:95:8a:b5 dst_mac 02:03:75:37:64:bd vlan_id 3056 vlan_ethtype ip src_ip 83.121.247.155 dst_ip 99.222.182.183 action pass && tc filter add dev swp1 ingress protocol ip pref 11350 flower src_mac 02:14:73:e2:01:dd dst_mac 02:2b:55:48:52:15 src_ip 103.212.88.10 dst_ip 13.98.186.194 ip_proto udp src_port 56971 dst_port 59905 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11351 flower src_mac 02:36:c3:ca:cc:6c dst_mac 02:83:ca:e9:d0:30 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11352 flower src_mac 02:2c:2a:bb:b9:1e dst_mac 02:12:58:32:c9:49 src_ip 87.93.10.66 dst_ip 116.194.117.38 ip_proto udp src_port 62121 dst_port 16281 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11353 flower src_mac 02:dc:21:c3:bf:d5 dst_mac 02:02:9e:4e:3f:c3 vlan_id 604 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11354 flower src_mac 02:04:0b:7b:a8:3c dst_mac 02:7b:fb:42:a9:e7 vlan_id 270 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11355 flower src_mac 02:47:0e:51:66:0c dst_mac 02:73:61:47:ee:ee vlan_id 3869 vlan_ethtype ipv4 src_ip 81.174.149.107 dst_ip 13.25.9.18 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11356 flower src_mac 02:80:e1:41:96:1e dst_mac 02:08:c1:fd:e3:73 src_ip 85.24.66.91 dst_ip 93.56.77.237 ip_proto udp src_port 57136 dst_port 64217 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11357 flower src_mac 02:8f:c7:97:28:87 dst_mac 02:c0:dd:5f:47:d9 vlan_id 266 vlan_ethtype ipv4 src_ip 88.220.155.86 dst_ip 58.238.21.223 ip_proto udp src_port 52990 dst_port 52718 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11358 flower src_mac 02:35:99:0e:f3:68 dst_mac 02:f0:c5:92:92:27 vlan_id 135 vlan_ethtype 0x0800 src_ip 51.128.207.236 dst_ip 81.147.194.150 ip_proto tcp src_port 17295 dst_port 43201 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11359 flower src_mac 02:e8:9b:9d:3e:39 dst_mac 02:c8:9c:44:c9:0b vlan_id 2671 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 11360 flower src_mac 02:82:c1:2f:a3:a1 dst_mac 02:18:f0:37:03:ed src_ip 66.143.166.52 dst_ip 37.47.52.127 ip_proto udp src_port 23521 dst_port 50000 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11361 flower src_mac 02:db:37:d4:ba:53 dst_mac 02:3c:d2:5f:be:1f action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11362 flower src_mac 02:77:4b:89:fa:80 dst_mac 02:a7:3d:4d:bb:4b vlan_id 315 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11363 flower src_mac 02:68:2c:9e:d2:25 dst_mac 02:df:96:08:0c:06 vlan_id 1580 vlan_ethtype ip src_ip 117.4.216.116 dst_ip 114.30.157.99 ip_proto tcp src_port 21468 dst_port 45209 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11364 flower src_mac 02:2b:2d:62:be:34 dst_mac 02:fd:92:1d:bd:b3 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11365 flower src_mac 02:f2:c8:67:e2:5d dst_mac 02:a1:bb:50:5c:89 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11366 flower src_mac 02:0d:d2:49:c4:50 dst_mac 02:32:bc:d4:73:e9 vlan_id 236 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11367 flower src_mac 02:dc:d2:e2:37:10 dst_mac 02:ad:ab:28:75:81 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11368 flower src_mac 02:6a:d4:27:13:df dst_mac 02:33:60:e9:fd:e8 vlan_id 2531 vlan_ethtype ipv4 src_ip 27.227.84.202 dst_ip 14.131.130.10 ip_proto udp src_port 140 dst_port 59216 action trap && tc filter add dev swp1 ingress protocol ip pref 11369 flower src_mac 02:c9:b6:82:2f:3f dst_mac 02:c7:84:79:8c:92 src_ip 27.68.22.136 dst_ip 47.165.145.57 ip_proto icmp code 139 type 16 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11370 flower src_mac 02:31:19:2c:30:d9 dst_mac 02:7a:57:83:77:aa vlan_id 2849 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11371 flower src_mac 02:0a:e2:99:b5:2b dst_mac 02:0f:15:f2:55:54 vlan_id 2410 vlan_ethtype ip src_ip 28.85.199.103 dst_ip 53.116.66.189 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11372 flower src_mac 02:7c:ca:65:5a:5b dst_mac 02:7c:90:3f:4a:86 vlan_id 4026 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11373 flower src_mac 02:a7:9d:fa:ef:35 dst_mac 02:60:ee:96:e3:6c action trap && tc filter add dev swp1 ingress protocol ip pref 11374 flower src_mac 02:76:78:ff:58:15 dst_mac 02:b3:57:ac:a2:5b src_ip 77.203.170.244 dst_ip 94.89.35.155 ip_proto udp src_port 10248 dst_port 13929 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11375 flower src_mac 02:27:25:4e:02:17 dst_mac 02:f4:31:90:2d:7e src_ip 119.31.226.34 dst_ip 92.16.55.2 ip_proto icmp code 59 type 4 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11376 flower src_mac 02:07:5e:f9:5b:f6 dst_mac 02:74:29:d9:a6:9e vlan_id 3204 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11377 flower src_mac 02:37:e8:60:e5:a1 dst_mac 02:16:3b:e0:ea:11 vlan_id 3228 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11378 flower src_mac 02:2f:3c:0b:ac:a9 dst_mac 02:12:8d:f1:d6:d6 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11379 flower src_mac 02:65:8d:e5:55:af dst_mac 02:93:ea:59:e7:f2 action trap && tc filter add dev swp1 ingress protocol ip pref 11380 flower src_mac 02:65:19:91:3e:60 dst_mac 02:9c:f0:5b:5d:cc src_ip 98.168.98.99 dst_ip 82.239.201.94 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11381 flower src_mac 02:05:3c:de:a6:b7 dst_mac 02:33:6c:ec:39:86 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11382 flower src_mac 02:ea:47:e1:6e:3d dst_mac 02:8b:b8:e6:30:82 vlan_id 2472 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11383 flower src_mac 02:cd:7f:85:53:e3 dst_mac 02:3f:21:6e:38:5d vlan_id 839 vlan_ethtype 0x0800 src_ip 117.225.166.31 dst_ip 28.199.171.101 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11384 flower src_mac 02:c2:8b:55:e9:08 dst_mac 02:3e:20:5a:0f:67 src_ip 67.251.132.200 dst_ip 40.86.146.198 ip_proto tcp src_port 58441 dst_port 62246 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11385 flower src_mac 02:e4:52:4c:45:b8 dst_mac 02:22:10:f3:4a:f7 vlan_id 2115 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11386 flower src_mac 02:19:f9:43:f8:fc dst_mac 02:28:6b:6c:48:3e action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11387 flower src_mac 02:bc:16:05:a5:2f dst_mac 02:60:14:31:da:01 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11388 flower src_mac 02:0a:7c:15:24:7f dst_mac 02:3f:83:dd:45:4e action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11389 flower src_mac 02:2b:8d:55:4f:94 dst_mac 02:34:68:45:14:46 vlan_id 2934 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11390 flower src_mac 02:e2:02:a4:6a:8a dst_mac 02:5c:36:19:0a:61 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11391 flower src_mac 02:27:51:18:58:13 dst_mac 02:37:90:32:3c:ba vlan_id 1952 vlan_ethtype ip src_ip 12.219.192.222 dst_ip 51.199.124.84 ip_proto tcp src_port 58066 dst_port 28148 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11392 flower src_mac 02:32:3e:5b:e8:fc dst_mac 02:81:19:0c:c7:c5 vlan_id 3434 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11393 flower src_mac 02:d0:93:ef:9c:b1 dst_mac 02:13:71:40:39:a1 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11394 flower src_mac 02:87:cd:d6:b3:49 dst_mac 02:ac:91:54:19:82 src_ip 78.9.142.72 dst_ip 48.157.241.12 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11395 flower src_mac 02:22:3e:e3:25:d1 dst_mac 02:fc:48:b6:2b:56 src_ip 28.107.250.224 dst_ip 110.154.229.131 ip_proto icmp code 127 type 8 action drop && tc filter add dev swp1 ingress protocol ip pref 11396 flower src_mac 02:22:5c:d3:bd:d2 dst_mac 02:76:a7:0b:b5:dc src_ip 90.23.252.58 dst_ip 64.154.191.58 ip_proto icmp code 32 type 3 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11397 flower src_mac 02:0a:cb:f0:c2:35 dst_mac 02:50:c7:8e:36:87 vlan_id 3948 vlan_ethtype 0x0800 src_ip 121.100.186.103 dst_ip 25.95.146.1 ip_proto tcp src_port 56938 dst_port 11341 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11398 flower src_mac 02:23:1c:91:99:cd dst_mac 02:b8:ea:95:1f:5f action drop && tc filter add dev swp1 ingress protocol ip pref 11399 flower src_mac 02:6e:2e:54:66:b6 dst_mac 02:24:6a:1d:35:b5 src_ip 80.95.53.134 dst_ip 126.56.121.208 ip_proto icmp code 225 type 5 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11400 flower src_mac 02:cc:c1:36:6c:63 dst_mac 02:e0:eb:db:24:ec vlan_id 3872 vlan_ethtype ipv4 src_ip 52.125.170.160 dst_ip 119.131.115.150 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11401 flower src_mac 02:5d:33:e1:80:a6 dst_mac 02:86:0c:c4:d2:b2 vlan_id 3409 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11402 flower src_mac 02:87:31:87:88:36 dst_mac 02:cd:f6:a7:b7:fa action trap && tc filter add dev swp1 ingress protocol ip pref 11403 flower src_mac 02:c7:e2:5a:bc:9f dst_mac 02:bf:26:ac:c7:ca src_ip 114.159.144.5 dst_ip 13.202.134.105 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11404 flower src_mac 02:15:f1:4e:d5:b7 dst_mac 02:18:2b:04:82:21 vlan_id 3013 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11405 flower src_mac 02:c1:2c:f6:ee:15 dst_mac 02:2e:99:dd:22:d3 vlan_id 3357 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11406 flower src_mac 02:f4:9c:79:0a:b4 dst_mac 02:a4:fd:2c:f0:ea action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11407 flower src_mac 02:8a:a8:fa:c5:27 dst_mac 02:37:05:74:e8:85 vlan_id 2595 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11408 flower src_mac 02:75:35:9a:91:82 dst_mac 02:e3:2b:1c:0d:49 src_ip 55.244.82.56 dst_ip 47.249.206.21 ip_proto tcp src_port 6144 dst_port 28117 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11409 flower src_mac 02:7e:7a:83:2f:68 dst_mac 02:74:47:40:33:2e vlan_id 642 vlan_ethtype 0x0800 src_ip 11.121.213.218 dst_ip 110.90.231.216 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11410 flower src_mac 02:08:a6:4d:1a:37 dst_mac 02:08:c1:7d:fd:14 src_ip 113.147.71.71 dst_ip 101.87.79.182 ip_proto icmp code 27 type 11 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11411 flower src_mac 02:aa:c9:09:1f:1f dst_mac 02:f8:13:e1:88:09 src_ip 37.122.67.11 dst_ip 103.36.31.80 ip_proto tcp src_port 46318 dst_port 62843 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11412 flower src_mac 02:cb:e9:02:2c:8d dst_mac 02:db:84:c3:ac:db src_ip 22.197.154.2 dst_ip 78.41.239.214 ip_proto tcp src_port 31910 dst_port 62630 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11413 flower src_mac 02:81:21:02:dc:f7 dst_mac 02:8a:8f:82:21:c1 vlan_id 800 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11414 flower src_mac 02:18:a7:85:46:9a dst_mac 02:ae:5d:09:91:c1 src_ip 88.193.190.196 dst_ip 107.201.242.41 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11415 flower src_mac 02:6f:05:49:26:fe dst_mac 02:95:4d:fd:49:7c src_ip 126.29.207.92 dst_ip 125.199.187.70 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11416 flower src_mac 02:f9:81:a9:f6:4f dst_mac 02:51:27:75:17:75 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11417 flower src_mac 02:93:89:9d:49:68 dst_mac 02:59:2b:e6:15:83 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11418 flower src_mac 02:1a:29:d3:81:a1 dst_mac 02:eb:84:07:55:29 vlan_id 418 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11419 flower src_mac 02:0e:d3:36:b3:19 dst_mac 02:61:ca:c0:b7:29 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11420 flower src_mac 02:64:9a:8d:d2:ff dst_mac 02:c3:de:49:b8:c1 vlan_id 463 vlan_ethtype ip src_ip 113.132.87.126 dst_ip 111.196.149.43 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11421 flower src_mac 02:02:6e:4d:3f:f0 dst_mac 02:f0:a2:b4:57:6d action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11422 flower src_mac 02:a5:dd:72:be:3d dst_mac 02:23:ed:3f:eb:64 vlan_id 3667 vlan_ethtype ipv4 src_ip 40.59.107.120 dst_ip 85.203.252.188 ip_proto tcp src_port 11210 dst_port 60208 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11423 flower src_mac 02:60:d3:b4:70:22 dst_mac 02:0b:73:d8:87:c3 vlan_id 3450 vlan_ethtype 0x0800 src_ip 91.175.145.227 dst_ip 109.89.181.242 ip_proto tcp src_port 48374 dst_port 33866 action pass && tc filter add dev swp1 ingress protocol ip pref 11424 flower src_mac 02:f8:2b:fb:38:74 dst_mac 02:14:72:8d:bc:97 src_ip 50.143.227.204 dst_ip 91.150.89.107 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11425 flower src_mac 02:a8:6b:6f:16:a6 dst_mac 02:0f:24:52:64:42 src_ip 44.126.144.131 dst_ip 86.156.147.150 ip_proto udp src_port 48369 dst_port 31790 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11426 flower src_mac 02:fa:ca:b8:73:b9 dst_mac 02:a9:9e:df:0f:57 vlan_id 1709 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11427 flower src_mac 02:e0:3a:73:ff:ed dst_mac 02:7d:f3:65:e4:23 vlan_id 3767 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11428 flower src_mac 02:7d:40:18:8a:a1 dst_mac 02:b0:7e:a5:59:9b vlan_id 1594 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11429 flower src_mac 02:93:5f:17:43:12 dst_mac 02:d2:03:19:58:50 src_ip 42.181.53.235 dst_ip 12.232.53.155 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11430 flower src_mac 02:34:97:cc:f5:d8 dst_mac 02:3c:6e:55:16:98 src_ip 49.39.185.138 dst_ip 109.131.7.164 ip_proto tcp src_port 3995 dst_port 3948 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11431 flower src_mac 02:5d:6c:39:1c:10 dst_mac 02:76:a0:87:88:a5 vlan_id 3673 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11432 flower src_mac 02:c3:45:7f:1d:6b dst_mac 02:7e:96:d1:e1:10 action trap && tc filter add dev swp1 ingress protocol ip pref 11433 flower src_mac 02:e0:44:0f:0c:e2 dst_mac 02:61:aa:f8:93:91 src_ip 36.252.160.95 dst_ip 109.173.206.52 ip_proto udp src_port 55541 dst_port 13896 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11434 flower src_mac 02:bc:22:46:62:69 dst_mac 02:35:29:3b:79:ca action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11435 flower src_mac 02:c7:dc:97:92:8c dst_mac 02:68:06:c5:37:06 vlan_id 2958 vlan_ethtype ipv4 src_ip 36.8.156.117 dst_ip 84.235.172.19 ip_proto udp src_port 25878 dst_port 40341 action pass && tc filter add dev swp1 ingress protocol ip pref 11436 flower src_mac 02:50:da:1a:c5:d5 dst_mac 02:b0:33:ef:02:d7 src_ip 73.203.75.66 dst_ip 89.56.162.155 ip_proto icmp code 206 type 14 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11437 flower src_mac 02:17:57:6f:e2:79 dst_mac 02:d1:f1:d7:6b:c7 action pass && tc filter add dev swp1 ingress protocol ip pref 11438 flower src_mac 02:da:2d:87:67:c9 dst_mac 02:90:ee:16:e6:56 src_ip 102.189.109.236 dst_ip 26.211.180.215 ip_proto udp src_port 5318 dst_port 58795 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11439 flower src_mac 02:7e:83:5b:da:b1 dst_mac 02:52:4e:cc:fe:cd vlan_id 780 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 11440 flower src_mac 02:fc:18:de:9b:6b dst_mac 02:ec:80:b4:f3:2c src_ip 38.135.48.115 dst_ip 82.180.12.135 ip_proto udp src_port 50237 dst_port 7574 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11441 flower src_mac 02:7c:00:c2:6f:02 dst_mac 02:ad:94:68:50:2a vlan_id 602 vlan_ethtype 0x0800 src_ip 104.75.49.5 dst_ip 33.61.37.151 ip_proto tcp src_port 6456 dst_port 14184 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11442 flower src_mac 02:c1:26:e7:ec:cc dst_mac 02:ea:7f:73:86:2e vlan_id 668 vlan_ethtype ipv4 src_ip 70.21.217.168 dst_ip 126.132.59.213 ip_proto tcp src_port 22391 dst_port 24958 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11443 flower src_mac 02:fe:4a:c8:f0:c5 dst_mac 02:80:27:96:c3:2a vlan_id 774 vlan_ethtype 0x0800 src_ip 13.151.66.28 dst_ip 88.183.170.148 ip_proto tcp src_port 29447 dst_port 60080 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11444 flower src_mac 02:28:c0:f7:a8:bf dst_mac 02:73:36:ae:1d:8a action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11445 flower src_mac 02:6f:78:0f:1c:01 dst_mac 02:6f:33:ea:90:2f vlan_id 424 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11446 flower src_mac 02:ab:2d:bd:38:4f dst_mac 02:33:ee:8c:a2:27 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11447 flower src_mac 02:03:01:58:34:62 dst_mac 02:92:56:d8:d3:25 vlan_id 395 vlan_ethtype ipv4 src_ip 34.239.240.227 dst_ip 26.123.217.117 ip_proto udp src_port 28515 dst_port 25800 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11448 flower src_mac 02:94:05:6b:20:f3 dst_mac 02:38:2f:91:2c:b6 vlan_id 77 vlan_ethtype ipv4 src_ip 32.210.190.5 dst_ip 21.159.159.132 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11449 flower src_mac 02:bf:8f:4a:d9:35 dst_mac 02:1a:3e:81:71:b3 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11450 flower src_mac 02:cd:c7:fd:88:fe dst_mac 02:14:75:6c:dd:7b vlan_id 4021 vlan_ethtype 0x0800 src_ip 17.61.193.107 dst_ip 98.23.93.132 ip_proto tcp src_port 11351 dst_port 29073 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11451 flower src_mac 02:48:2b:0e:cc:ea dst_mac 02:7f:0f:63:37:07 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11452 flower src_mac 02:8b:c8:51:db:0f dst_mac 02:35:b5:01:c1:82 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11453 flower src_mac 02:3b:0b:6f:30:62 dst_mac 02:07:7e:6d:84:ce action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11454 flower src_mac 02:dc:74:c2:36:7d dst_mac 02:e2:20:ef:32:79 vlan_id 2163 vlan_ethtype 0x0800 src_ip 72.203.105.36 dst_ip 109.67.146.161 ip_proto udp src_port 9958 dst_port 24450 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11455 flower src_mac 02:76:b9:f3:b6:29 dst_mac 02:4d:67:2d:44:85 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11456 flower src_mac 02:de:ca:e8:08:f7 dst_mac 02:4e:73:6b:37:54 src_ip 98.63.120.83 dst_ip 37.140.43.125 ip_proto icmp code 152 type 5 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11457 flower src_mac 02:5a:18:7c:48:e7 dst_mac 02:5c:d0:da:39:31 vlan_id 1138 vlan_ethtype 0x0800 src_ip 14.151.197.197 dst_ip 106.192.8.74 ip_proto udp src_port 63581 dst_port 33050 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11458 flower src_mac 02:f8:60:8c:25:df dst_mac 02:b8:dc:f9:8f:d0 src_ip 95.42.158.109 dst_ip 76.248.54.186 ip_proto tcp src_port 29172 dst_port 38093 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11459 flower src_mac 02:ba:e5:14:56:cc dst_mac 02:c6:20:8a:69:e3 vlan_id 2883 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11460 flower src_mac 02:9a:bf:a0:f5:9d dst_mac 02:6b:aa:55:5f:dd action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11461 flower src_mac 02:63:0e:df:64:da dst_mac 02:65:94:f9:f8:1a src_ip 50.130.18.172 dst_ip 118.213.118.182 ip_proto udp src_port 14061 dst_port 62640 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11462 flower src_mac 02:7e:af:1f:fc:7c dst_mac 02:d8:6c:9d:88:59 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11463 flower src_mac 02:36:6f:71:3f:3c dst_mac 02:9e:7d:9c:35:80 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11464 flower src_mac 02:e0:eb:81:9f:fd dst_mac 02:30:d9:21:56:e8 vlan_id 1034 vlan_ethtype ipv4 src_ip 93.183.79.115 dst_ip 96.170.169.165 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11465 flower src_mac 02:c9:05:c0:9e:13 dst_mac 02:75:b8:be:c5:0a vlan_id 2748 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11466 flower src_mac 02:1f:9c:09:f4:92 dst_mac 02:e9:8b:a9:84:7b vlan_id 3016 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11467 flower src_mac 02:74:36:13:1d:6a dst_mac 02:f1:07:db:e5:ed vlan_id 2541 vlan_ethtype 0x0800 src_ip 12.170.191.138 dst_ip 93.2.216.163 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11468 flower src_mac 02:8d:e1:70:6f:f7 dst_mac 02:88:be:c0:3e:10 vlan_id 1770 vlan_ethtype ip src_ip 114.230.118.108 dst_ip 117.66.130.87 ip_proto udp src_port 25601 dst_port 58131 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11469 flower src_mac 02:09:03:4d:df:66 dst_mac 02:bc:9a:c7:31:06 vlan_id 2119 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11470 flower src_mac 02:86:fe:be:a7:e8 dst_mac 02:50:e2:5e:84:08 src_ip 22.183.156.119 dst_ip 93.37.178.88 ip_proto udp src_port 12637 dst_port 20081 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11471 flower src_mac 02:d4:bc:57:ac:c0 dst_mac 02:96:97:91:8b:b0 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11472 flower src_mac 02:9d:5e:39:a0:85 dst_mac 02:e7:5f:59:2b:91 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11473 flower src_mac 02:24:e5:ea:54:c3 dst_mac 02:b3:6b:e0:21:8f vlan_id 2544 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11474 flower src_mac 02:0d:67:9f:87:b7 dst_mac 02:41:2c:10:d0:0c vlan_id 537 vlan_ethtype ipv4 src_ip 111.59.106.40 dst_ip 28.242.201.69 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11475 flower src_mac 02:56:b6:c9:ef:8f dst_mac 02:39:07:7b:cc:44 src_ip 123.193.19.39 dst_ip 36.188.51.28 action trap && tc filter add dev swp1 ingress protocol ip pref 11476 flower src_mac 02:9f:9f:93:63:10 dst_mac 02:da:6c:02:5c:27 src_ip 94.208.1.152 dst_ip 120.149.29.205 action pass && tc filter add dev swp1 ingress protocol ip pref 11477 flower src_mac 02:d8:6c:1f:8e:05 dst_mac 02:a1:bd:ed:f7:d0 src_ip 77.72.194.62 dst_ip 103.111.16.120 ip_proto udp src_port 50223 dst_port 44368 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11478 flower src_mac 02:be:81:7b:43:48 dst_mac 02:bf:7c:b4:38:82 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11479 flower src_mac 02:97:c9:a2:0a:c1 dst_mac 02:d1:f6:de:46:dd vlan_id 805 vlan_ethtype ipv4 src_ip 24.160.39.29 dst_ip 99.26.10.153 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11480 flower src_mac 02:83:31:4c:90:d6 dst_mac 02:6c:5d:3f:45:a1 src_ip 53.204.130.244 dst_ip 23.44.205.174 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11481 flower src_mac 02:df:97:e3:7b:74 dst_mac 02:c6:ed:12:16:3f vlan_id 3207 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11482 flower src_mac 02:e2:f1:9c:05:93 dst_mac 02:41:04:60:c7:fe action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11483 flower src_mac 02:53:3e:3d:ed:d0 dst_mac 02:aa:18:b8:55:ce action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11484 flower src_mac 02:22:b9:49:3d:b2 dst_mac 02:a7:7e:f0:01:cf vlan_id 842 vlan_ethtype 0x0800 src_ip 61.53.36.77 dst_ip 68.17.146.44 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11485 flower src_mac 02:0c:78:9b:ad:49 dst_mac 02:6b:8d:b3:fe:0c vlan_id 1498 vlan_ethtype ip src_ip 113.167.138.133 dst_ip 43.156.58.213 ip_proto udp src_port 35565 dst_port 47552 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11486 flower src_mac 02:71:91:fa:09:45 dst_mac 02:48:28:da:18:e8 src_ip 61.106.115.176 dst_ip 32.249.207.7 ip_proto icmp code 24 type 16 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11487 flower src_mac 02:a2:c3:16:a9:74 dst_mac 02:52:97:47:0f:b0 src_ip 107.186.147.138 dst_ip 118.232.182.124 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11488 flower src_mac 02:ea:1d:fb:4b:57 dst_mac 02:3c:b3:d5:2e:2c vlan_id 466 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11489 flower src_mac 02:03:ff:9f:e3:5d dst_mac 02:09:52:a5:9b:f0 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11490 flower src_mac 02:5d:aa:e0:39:59 dst_mac 02:a6:13:d2:79:de vlan_id 3605 vlan_ethtype 0x0800 src_ip 21.217.198.29 dst_ip 13.122.88.26 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11491 flower src_mac 02:bb:9e:ce:d4:ae dst_mac 02:53:4c:2f:4a:58 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11492 flower src_mac 02:df:5b:84:b9:49 dst_mac 02:05:fc:e1:5d:60 src_ip 37.206.70.150 dst_ip 35.180.150.78 ip_proto udp src_port 3435 dst_port 63447 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11493 flower src_mac 02:22:56:3d:f0:be dst_mac 02:1e:64:c4:44:c8 vlan_id 2656 vlan_ethtype 0x0800 src_ip 88.159.117.80 dst_ip 50.92.230.237 ip_proto udp src_port 3537 dst_port 39203 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11494 flower src_mac 02:9e:bd:93:5b:31 dst_mac 02:d4:00:7d:55:75 vlan_id 530 vlan_ethtype 0x0800 src_ip 47.153.222.221 dst_ip 88.245.247.213 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11495 flower src_mac 02:4a:e1:21:23:89 dst_mac 02:fc:32:ab:18:33 vlan_id 274 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11496 flower src_mac 02:18:e8:2f:da:05 dst_mac 02:ff:2b:c4:ff:0d vlan_id 1226 vlan_ethtype ip src_ip 59.17.228.242 dst_ip 32.45.92.242 ip_proto udp src_port 55855 dst_port 12462 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11497 flower src_mac 02:9a:b6:c0:d6:b5 dst_mac 02:b9:04:10:c7:14 vlan_id 1099 vlan_ethtype 0x0800 src_ip 97.36.213.66 dst_ip 34.151.172.150 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11498 flower src_mac 02:1a:b6:6f:35:35 dst_mac 02:6b:d8:d9:36:57 src_ip 80.238.145.203 dst_ip 60.12.103.73 ip_proto icmp code 193 type 8 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11499 flower src_mac 02:36:a4:1f:24:2d dst_mac 02:22:6e:cb:b6:83 src_ip 104.161.46.81 dst_ip 121.141.202.247 ip_proto udp src_port 5657 dst_port 64411 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11500 flower src_mac 02:86:af:10:41:ba dst_mac 02:7d:c3:7e:32:b9 src_ip 86.176.165.90 dst_ip 16.123.98.141 ip_proto udp src_port 58183 dst_port 59550 action drop && tc filter add dev swp1 ingress protocol ip pref 11501 flower src_mac 02:99:ef:ba:6b:9f dst_mac 02:74:14:af:d5:cd src_ip 43.23.68.150 dst_ip 118.242.171.5 ip_proto icmp code 30 type 16 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11502 flower src_mac 02:a3:8d:b3:a3:67 dst_mac 02:55:83:6a:0a:ae vlan_id 2045 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11503 flower src_mac 02:c0:e7:8d:15:5e dst_mac 02:77:73:b8:09:2c action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11504 flower src_mac 02:ec:09:a1:9b:80 dst_mac 02:0e:d6:11:41:3b action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11505 flower src_mac 02:c7:81:5a:86:63 dst_mac 02:04:4a:3f:c4:f8 vlan_id 2902 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11506 flower src_mac 02:d0:7b:5d:87:a8 dst_mac 02:d5:53:ed:be:ec vlan_id 1942 vlan_ethtype 0x0800 src_ip 33.44.167.13 dst_ip 43.154.27.127 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11507 flower src_mac 02:7f:67:3a:57:60 dst_mac 02:21:2b:36:05:73 vlan_id 3812 vlan_ethtype ipv4 src_ip 68.109.13.43 dst_ip 126.205.97.1 action pass && tc filter add dev swp1 ingress protocol ip pref 11508 flower src_mac 02:13:6d:24:91:18 dst_mac 02:ba:46:2f:23:37 src_ip 122.10.195.222 dst_ip 120.160.99.237 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11509 flower src_mac 02:bd:1c:c0:29:33 dst_mac 02:06:bf:d8:23:98 src_ip 69.237.138.195 dst_ip 22.156.218.41 ip_proto udp src_port 37368 dst_port 12174 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11510 flower src_mac 02:72:8e:dc:51:76 dst_mac 02:7a:a6:bb:23:f3 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11511 flower src_mac 02:14:31:da:7c:8f dst_mac 02:27:4c:05:8a:17 vlan_id 3510 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11512 flower src_mac 02:20:6b:d0:bb:c5 dst_mac 02:9e:75:18:89:92 vlan_id 4021 vlan_ethtype ipv4 src_ip 90.22.74.154 dst_ip 11.178.19.2 ip_proto udp src_port 48718 dst_port 63036 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11513 flower src_mac 02:cd:67:0f:d1:1c dst_mac 02:03:a6:69:ba:76 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11514 flower src_mac 02:99:07:cc:31:0a dst_mac 02:5b:60:41:cb:82 vlan_id 511 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11515 flower src_mac 02:04:06:3c:6e:f0 dst_mac 02:dc:23:4e:89:e1 vlan_id 71 vlan_ethtype ipv4 src_ip 93.9.92.91 dst_ip 57.158.43.181 ip_proto udp src_port 18300 dst_port 15018 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11516 flower src_mac 02:ed:da:70:9f:14 dst_mac 02:0c:02:14:b1:4e vlan_id 703 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11517 flower src_mac 02:30:de:87:1b:34 dst_mac 02:93:a3:99:b4:ca src_ip 29.233.195.87 dst_ip 17.58.7.61 ip_proto tcp src_port 29514 dst_port 28368 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11518 flower src_mac 02:85:ab:b3:7a:2a dst_mac 02:46:a0:47:e9:b7 vlan_id 3126 vlan_ethtype 0x0800 src_ip 61.187.46.19 dst_ip 36.228.238.22 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11519 flower src_mac 02:f0:dd:c6:fd:78 dst_mac 02:5b:f9:47:45:f5 vlan_id 3615 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11520 flower src_mac 02:7f:01:0f:65:16 dst_mac 02:a1:c2:aa:43:d1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11521 flower src_mac 02:a6:84:d0:eb:b4 dst_mac 02:e9:43:cc:f9:0d vlan_id 2302 vlan_ethtype ip src_ip 93.243.55.86 dst_ip 38.86.62.193 ip_proto udp src_port 56312 dst_port 3265 action drop && tc filter add dev swp1 ingress protocol ip pref 11522 flower src_mac 02:6f:8f:38:da:d7 dst_mac 02:d5:fa:70:04:bb src_ip 123.112.182.121 dst_ip 98.142.149.226 ip_proto udp src_port 19416 dst_port 16867 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11523 flower src_mac 02:bb:01:fd:81:70 dst_mac 02:69:69:41:22:75 vlan_id 716 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11524 flower src_mac 02:53:99:e8:21:cd dst_mac 02:1e:6b:4c:3b:4f vlan_id 4080 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11525 flower src_mac 02:d0:69:7d:9a:d9 dst_mac 02:2e:81:48:9b:90 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11526 flower src_mac 02:79:5e:c4:3d:f6 dst_mac 02:19:6f:7c:85:be vlan_id 1656 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11527 flower src_mac 02:e5:d7:aa:ad:80 dst_mac 02:80:c3:67:78:3e vlan_id 2545 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11528 flower src_mac 02:28:24:db:b6:d6 dst_mac 02:0d:d9:18:77:8f src_ip 118.21.109.57 dst_ip 123.122.228.47 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11529 flower src_mac 02:21:2c:2b:f9:07 dst_mac 02:7e:ee:49:57:49 vlan_id 2744 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11530 flower src_mac 02:6a:62:cb:34:9b dst_mac 02:4c:c5:72:9c:96 vlan_id 1113 vlan_ethtype ip src_ip 56.135.4.158 dst_ip 50.81.75.37 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11531 flower src_mac 02:f9:04:62:d3:23 dst_mac 02:b5:f0:6f:d8:5e vlan_id 3884 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11532 flower src_mac 02:1e:47:1e:58:90 dst_mac 02:98:3b:01:1a:f3 vlan_id 3768 vlan_ethtype ipv4 src_ip 63.112.186.56 dst_ip 94.135.9.130 ip_proto udp src_port 23437 dst_port 9714 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11533 flower src_mac 02:59:6d:80:7a:8d dst_mac 02:21:5f:54:c9:9f src_ip 92.207.240.117 dst_ip 99.149.221.247 ip_proto udp src_port 2739 dst_port 17189 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11534 flower src_mac 02:fc:25:17:2c:66 dst_mac 02:ac:09:54:ea:2b vlan_id 1535 vlan_ethtype ip src_ip 126.95.210.196 dst_ip 82.19.92.142 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11535 flower src_mac 02:65:d3:ca:c4:18 dst_mac 02:62:9c:34:09:9e vlan_id 344 vlan_ethtype 0x9300 action trap INFO asyncssh:logging.py:92 [conn=24, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=10] Command: tc filter add dev swp1 ingress protocol 802.1q pref 11200 flower src_mac 02:c8:12:95:05:4c dst_mac 02:ff:c0:d7:3a:48 vlan_id 3053 vlan_ethtype 0x0800 src_ip 16.193.160.250 dst_ip 13.171.64.217 ip_proto tcp src_port 32905 dst_port 46771 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11201 flower src_mac 02:27:4c:58:cf:c3 dst_mac 02:33:5b:5a:0f:4d vlan_id 3136 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11202 flower src_mac 02:bb:9d:59:5b:41 dst_mac 02:ba:97:8a:b5:f7 vlan_id 707 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11203 flower src_mac 02:53:0f:0d:16:6e dst_mac 02:82:c8:6d:f6:38 vlan_id 3300 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11204 flower src_mac 02:8a:c0:90:b9:63 dst_mac 02:86:0e:17:0d:1e vlan_id 755 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11205 flower src_mac 02:3b:f9:52:e5:6c dst_mac 02:d4:9b:04:71:5d vlan_id 363 vlan_ethtype 0x0800 src_ip 121.120.161.186 dst_ip 99.119.212.10 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11206 flower src_mac 02:fc:1a:06:ce:7f dst_mac 02:f9:74:e8:15:90 vlan_id 1660 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11207 flower src_mac 02:25:13:e6:ad:a3 dst_mac 02:46:c1:67:0c:da vlan_id 4012 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11208 flower src_mac 02:6c:ac:08:e6:71 dst_mac 02:5d:cf:c9:90:6c src_ip 44.181.65.219 dst_ip 98.142.7.203 ip_proto tcp src_port 42802 dst_port 33247 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11209 flower src_mac 02:98:db:8c:cd:a1 dst_mac 02:99:48:7d:3a:a1 src_ip 89.197.80.207 dst_ip 100.68.223.47 ip_proto tcp src_port 19554 dst_port 56289 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11210 flower src_mac 02:38:87:30:af:60 dst_mac 02:35:b0:bf:e7:51 src_ip 64.137.90.234 dst_ip 65.250.21.242 ip_proto udp src_port 24443 dst_port 49062 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11211 flower src_mac 02:a7:c4:44:10:12 dst_mac 02:07:94:1e:a5:a1 vlan_id 833 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11212 flower src_mac 02:39:2f:7c:6b:f5 dst_mac 02:31:0b:27:5b:4a vlan_id 2355 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11213 flower src_mac 02:bc:45:ec:bc:b4 dst_mac 02:02:3a:06:f5:1b vlan_id 3675 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11214 flower src_mac 02:30:b6:b4:b1:cd dst_mac 02:ff:92:4b:d4:7a action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11215 flower src_mac 02:f5:89:fd:26:ca dst_mac 02:a5:e5:eb:9c:ab vlan_id 3479 vlan_ethtype ip src_ip 73.27.116.42 dst_ip 12.189.174.55 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11216 flower src_mac 02:ca:93:b5:84:89 dst_mac 02:b8:a4:ca:95:82 src_ip 99.59.137.150 dst_ip 107.207.123.170 ip_proto udp src_port 15646 dst_port 49637 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11217 flower src_mac 02:68:9f:21:19:32 dst_mac 02:61:64:0b:79:bc action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11218 flower src_mac 02:f0:48:eb:70:93 dst_mac 02:b3:f5:68:74:3e src_ip 15.171.19.3 dst_ip 84.120.28.233 ip_proto udp src_port 14175 dst_port 34726 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11219 flower src_mac 02:10:0c:af:9b:ac dst_mac 02:2a:b6:a0:be:36 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11220 flower src_mac 02:c1:2b:f7:4d:45 dst_mac 02:08:85:c4:65:55 vlan_id 2238 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11221 flower src_mac 02:6b:c7:94:56:f1 dst_mac 02:fb:e3:01:3d:20 vlan_id 1264 vlan_ethtype ipv4 src_ip 61.74.238.229 dst_ip 33.97.236.158 ip_proto tcp src_port 11988 dst_port 16669 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11222 flower src_mac 02:d1:3e:ba:09:fb dst_mac 02:1e:97:9a:3f:a2 vlan_id 1079 vlan_ethtype ip src_ip 87.145.53.228 dst_ip 102.162.47.246 ip_proto tcp src_port 36053 dst_port 5701 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11223 flower src_mac 02:e4:de:c6:be:36 dst_mac 02:4e:ad:c1:79:1b src_ip 112.236.15.54 dst_ip 59.185.57.193 ip_proto udp src_port 18078 dst_port 14291 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11224 flower src_mac 02:c0:14:c8:63:a3 dst_mac 02:0a:dd:b5:c1:12 vlan_id 2986 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11225 flower src_mac 02:0b:45:9c:d9:0d dst_mac 02:71:fd:3a:4a:43 vlan_id 2751 vlan_ethtype 0x0800 src_ip 63.52.51.140 dst_ip 58.245.155.77 ip_proto tcp src_port 64406 dst_port 81 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11226 flower src_mac 02:6e:f2:f3:16:03 dst_mac 02:0d:47:d7:7a:c5 action trap && tc filter add dev swp1 ingress protocol ip pref 11227 flower src_mac 02:f9:0f:a5:1f:78 dst_mac 02:86:09:a5:65:fb src_ip 117.148.146.13 dst_ip 22.42.86.204 ip_proto udp src_port 53288 dst_port 19751 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11228 flower src_mac 02:61:c9:fe:1a:ee dst_mac 02:63:2a:48:d2:f8 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11229 flower src_mac 02:2f:ab:ae:6d:d2 dst_mac 02:2f:20:df:ca:c1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11230 flower src_mac 02:66:a3:bb:54:0e dst_mac 02:bf:5e:d9:00:33 vlan_id 1001 vlan_ethtype ipv4 src_ip 97.235.226.8 dst_ip 21.3.203.75 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11231 flower src_mac 02:de:80:0c:9a:1e dst_mac 02:d1:a3:85:90:fc vlan_id 1343 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11232 flower src_mac 02:d5:09:93:5a:6b dst_mac 02:07:f7:40:54:e9 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11233 flower src_mac 02:d2:8a:cd:1a:cf dst_mac 02:a0:9a:1b:b3:02 src_ip 93.52.44.77 dst_ip 107.174.53.111 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11234 flower src_mac 02:75:99:ba:88:16 dst_mac 02:1f:da:fb:67:e1 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11235 flower src_mac 02:2d:ab:a5:63:dd dst_mac 02:ce:19:31:c5:da action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11236 flower src_mac 02:b9:7c:89:b1:dd dst_mac 02:94:08:71:18:f7 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11237 flower src_mac 02:8a:91:34:18:56 dst_mac 02:d2:0a:40:e2:1c vlan_id 3191 vlan_ethtype ipv4 src_ip 106.119.135.169 dst_ip 82.147.250.43 ip_proto tcp src_port 8349 dst_port 41781 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11238 flower src_mac 02:63:79:e1:f9:9a dst_mac 02:57:f3:77:d1:34 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11239 flower src_mac 02:6d:cd:3d:ac:dc dst_mac 02:58:af:b5:1c:77 action drop && tc filter add dev swp1 ingress protocol ip pref 11240 flower src_mac 02:f1:eb:2f:be:8f dst_mac 02:26:02:1d:68:4d src_ip 108.110.132.50 dst_ip 100.11.183.219 ip_proto icmp code 60 type 8 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11241 flower src_mac 02:8e:53:ef:21:da dst_mac 02:f3:86:44:3e:5c vlan_id 2459 vlan_ethtype ip src_ip 11.126.86.243 dst_ip 63.56.86.117 ip_proto tcp src_port 29303 dst_port 9822 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11242 flower src_mac 02:e5:c2:db:d7:b3 dst_mac 02:81:e5:77:48:f5 vlan_id 2032 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11243 flower src_mac 02:a6:06:a5:4d:67 dst_mac 02:64:4f:d5:46:47 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11244 flower src_mac 02:59:f0:c7:bd:3d dst_mac 02:2c:18:b6:af:c0 vlan_id 2657 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11245 flower src_mac 02:8a:e5:19:34:fa dst_mac 02:02:14:9e:86:2b vlan_id 3543 vlan_ethtype 0x0800 src_ip 96.79.124.89 dst_ip 120.78.245.132 ip_proto tcp src_port 16489 dst_port 50904 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11246 flower src_mac 02:61:da:83:7f:fb dst_mac 02:42:49:d5:6d:90 vlan_id 4005 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11247 flower src_mac 02:ca:2e:c6:dd:42 dst_mac 02:f8:57:de:6f:31 src_ip 98.98.95.169 dst_ip 125.98.106.107 ip_proto udp src_port 28167 dst_port 19508 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11248 flower src_mac 02:3c:59:c3:f3:6f dst_mac 02:9d:f2:e9:6b:55 vlan_id 605 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11249 flower src_mac 02:e0:36:68:e0:8d dst_mac 02:13:a2:ea:d2:ea vlan_id 2126 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11250 flower src_mac 02:f3:05:ff:cb:a0 dst_mac 02:b5:a2:ab:e5:86 vlan_id 2818 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11251 flower src_mac 02:de:90:45:9f:5d dst_mac 02:ff:db:1f:36:28 vlan_id 24 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11252 flower src_mac 02:bb:83:9c:b4:af dst_mac 02:ad:7a:a7:08:60 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11253 flower src_mac 02:f2:1f:cc:86:c5 dst_mac 02:37:11:ed:83:61 vlan_id 3390 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11254 flower src_mac 02:c9:00:3c:16:31 dst_mac 02:0b:bf:d5:be:31 src_ip 18.36.132.27 dst_ip 45.88.162.249 ip_proto udp src_port 56467 dst_port 12210 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11255 flower src_mac 02:11:1a:9a:34:c4 dst_mac 02:c5:d9:08:a0:54 vlan_id 3650 vlan_ethtype ip src_ip 58.152.94.89 dst_ip 40.31.224.105 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11256 flower src_mac 02:01:e8:bb:62:9c dst_mac 02:b8:0b:4e:0b:07 vlan_id 679 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11257 flower src_mac 02:dd:43:23:f7:a6 dst_mac 02:0b:ec:bb:ff:be action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11258 flower src_mac 02:c0:3c:21:22:7b dst_mac 02:71:30:a7:5b:80 vlan_id 2160 vlan_ethtype ip src_ip 23.191.16.198 dst_ip 12.1.200.113 ip_proto tcp src_port 13740 dst_port 9783 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11259 flower src_mac 02:e6:df:95:be:e1 dst_mac 02:22:c2:bc:b7:99 vlan_id 2733 vlan_ethtype ipv4 src_ip 17.239.208.118 dst_ip 55.57.105.193 ip_proto tcp src_port 55056 dst_port 65354 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11260 flower src_mac 02:d0:13:99:94:91 dst_mac 02:60:0a:27:0a:2f src_ip 36.160.103.247 dst_ip 118.230.46.225 ip_proto icmp code 52 type 13 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11261 flower src_mac 02:4a:d7:87:cb:b7 dst_mac 02:77:76:56:ce:ed vlan_id 1354 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11262 flower src_mac 02:c5:37:68:83:9e dst_mac 02:80:c8:97:c9:90 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11263 flower src_mac 02:73:90:56:0d:a8 dst_mac 02:d5:55:d9:9c:2c action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11264 flower src_mac 02:65:1b:e8:80:dd dst_mac 02:4b:25:8a:18:1b vlan_id 929 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11265 flower src_mac 02:be:70:56:c6:3a dst_mac 02:45:53:be:b8:95 vlan_id 1827 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11266 flower src_mac 02:97:c0:4a:87:71 dst_mac 02:02:41:ca:af:13 vlan_id 3681 vlan_ethtype 0x0800 src_ip 123.213.50.209 dst_ip 28.203.121.228 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11267 flower src_mac 02:bc:b4:0b:4f:01 dst_mac 02:37:36:82:b2:28 vlan_id 1812 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol ip pref 11268 flower src_mac 02:cf:b6:c9:2b:1b dst_mac 02:67:92:60:2c:47 src_ip 34.33.93.160 dst_ip 118.222.47.104 ip_proto icmp code 193 type 0 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11269 flower src_mac 02:c2:85:6d:b8:82 dst_mac 02:88:50:93:5b:0f vlan_id 3795 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11270 flower src_mac 02:aa:a2:d4:b3:1b dst_mac 02:a0:70:a9:02:02 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11271 flower src_mac 02:cc:4b:b2:d6:a3 dst_mac 02:d3:f6:9e:16:c1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11272 flower src_mac 02:8c:74:8f:5a:5f dst_mac 02:25:e7:c8:36:b0 vlan_id 1665 vlan_ethtype 0x0800 src_ip 97.147.210.204 dst_ip 119.141.8.97 ip_proto tcp src_port 64396 dst_port 63537 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11273 flower src_mac 02:d8:9b:cc:f4:65 dst_mac 02:91:78:ab:be:2f vlan_id 3709 vlan_ethtype ipv4 src_ip 16.188.139.135 dst_ip 58.205.41.7 ip_proto udp src_port 35486 dst_port 52387 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11274 flower src_mac 02:26:f5:40:9d:d0 dst_mac 02:f5:32:54:8d:dd action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11275 flower src_mac 02:0b:3f:5c:32:f5 dst_mac 02:61:76:22:c8:a6 vlan_id 251 vlan_ethtype 0x0800 src_ip 50.54.225.78 dst_ip 58.116.228.27 ip_proto tcp src_port 21146 dst_port 2617 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11276 flower src_mac 02:4e:30:09:e8:39 dst_mac 02:73:64:0a:cf:68 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11277 flower src_mac 02:04:ca:09:64:b3 dst_mac 02:e0:c3:4a:d9:14 vlan_id 2163 vlan_ethtype ipv4 src_ip 76.220.174.9 dst_ip 44.167.85.42 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11278 flower src_mac 02:e3:6d:bd:82:dd dst_mac 02:c9:b4:52:82:7e vlan_id 1878 vlan_ethtype 0x0800 src_ip 116.28.191.142 dst_ip 28.237.21.47 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11279 flower src_mac 02:7b:89:07:96:99 dst_mac 02:00:46:47:31:58 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11280 flower src_mac 02:bd:cb:81:96:48 dst_mac 02:19:34:f9:cf:63 vlan_id 851 vlan_ethtype ip src_ip 115.139.81.134 dst_ip 96.100.22.249 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11281 flower src_mac 02:30:f8:ed:22:12 dst_mac 02:70:b3:c7:f2:b8 src_ip 20.111.222.194 dst_ip 38.31.191.182 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11282 flower src_mac 02:86:90:03:c7:b3 dst_mac 02:da:f9:b0:c7:dc action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11283 flower src_mac 02:75:3a:1c:4a:1a dst_mac 02:74:42:e3:61:ea src_ip 11.161.44.172 dst_ip 73.173.78.85 ip_proto icmp code 126 type 11 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11284 flower src_mac 02:f1:3f:e2:92:01 dst_mac 02:33:04:5f:ad:49 vlan_id 337 vlan_ethtype 0x0800 src_ip 111.154.9.168 dst_ip 51.229.47.63 ip_proto udp src_port 4776 dst_port 19846 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11285 flower src_mac 02:56:06:ec:9c:ce dst_mac 02:e0:e2:1a:21:c4 vlan_id 1066 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11286 flower src_mac 02:55:1a:1c:3c:fb dst_mac 02:b5:4d:c5:6e:a7 vlan_id 3549 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11287 flower src_mac 02:4e:6a:cd:a4:16 dst_mac 02:c2:0f:9f:bf:a6 vlan_id 4091 vlan_ethtype ip src_ip 67.122.60.75 dst_ip 20.148.114.68 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11288 flower src_mac 02:fe:fc:63:67:9b dst_mac 02:92:23:86:71:6a action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11289 flower src_mac 02:81:6e:86:f0:dd dst_mac 02:3f:36:ae:1e:a7 vlan_id 14 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11290 flower src_mac 02:09:fc:19:99:c7 dst_mac 02:ce:f1:ca:32:3d vlan_id 9 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11291 flower src_mac 02:8c:6f:83:d7:3b dst_mac 02:e1:a6:00:41:0c action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11292 flower src_mac 02:40:b1:72:1b:ba dst_mac 02:72:f1:ae:63:af vlan_id 3359 vlan_ethtype 0x0800 src_ip 62.229.76.206 dst_ip 126.245.209.162 action trap && tc filter add dev swp1 ingress protocol ip pref 11293 flower src_mac 02:b4:46:dd:3b:80 dst_mac 02:99:ec:6c:4a:2a src_ip 30.185.11.168 dst_ip 31.251.86.24 ip_proto icmp code 197 type 15 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11294 flower src_mac 02:bc:e0:83:ef:b6 dst_mac 02:40:dd:90:88:10 vlan_id 3513 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11295 flower src_mac 02:a1:10:5e:9b:3d dst_mac 02:ce:03:1e:95:99 vlan_id 3653 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11296 flower src_mac 02:35:bb:aa:e3:39 dst_mac 02:16:b6:4f:87:ae vlan_id 2814 vlan_ethtype ipv4 src_ip 41.90.50.202 dst_ip 89.227.29.178 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11297 flower src_mac 02:3a:e5:a9:72:2b dst_mac 02:f8:5e:a4:bb:a7 vlan_id 701 vlan_ethtype ip src_ip 99.170.240.177 dst_ip 58.87.142.186 ip_proto udp src_port 46444 dst_port 27539 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11298 flower src_mac 02:ce:80:0b:74:7d dst_mac 02:8b:d5:84:b8:6e action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11299 flower src_mac 02:88:ac:90:b8:ce dst_mac 02:df:7f:d7:b9:68 vlan_id 2560 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11300 flower src_mac 02:b8:d6:ff:1d:74 dst_mac 02:ca:14:9a:01:06 vlan_id 1346 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11301 flower src_mac 02:56:ca:dd:58:c8 dst_mac 02:6f:dc:0d:c8:18 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11302 flower src_mac 02:b4:0c:1f:e2:ce dst_mac 02:93:d8:bf:c8:fd action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11303 flower src_mac 02:ea:24:6f:2b:b3 dst_mac 02:3e:3a:10:d1:91 src_ip 77.177.243.14 dst_ip 12.33.124.189 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11304 flower src_mac 02:a5:0a:39:4b:8d dst_mac 02:63:97:75:70:32 vlan_id 1702 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11305 flower src_mac 02:89:5c:13:2c:bd dst_mac 02:22:c9:44:78:78 src_ip 57.72.84.134 dst_ip 48.137.211.28 ip_proto tcp src_port 27293 dst_port 61349 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11306 flower src_mac 02:9f:b0:13:8a:14 dst_mac 02:d8:c5:dc:77:e5 vlan_id 471 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11307 flower src_mac 02:4c:20:e9:0c:f3 dst_mac 02:67:3a:93:8b:73 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11308 flower src_mac 02:ed:f0:1d:ed:f2 dst_mac 02:6f:51:04:c4:8f vlan_id 2295 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11309 flower src_mac 02:62:bc:de:27:68 dst_mac 02:15:0c:45:45:cd vlan_id 1878 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11310 flower src_mac 02:71:c3:18:7f:e3 dst_mac 02:54:2d:c8:19:9b action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11311 flower src_mac 02:1c:ca:d6:26:23 dst_mac 02:d4:a5:6e:0c:75 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11312 flower src_mac 02:10:47:e2:83:13 dst_mac 02:74:dd:06:50:54 vlan_id 707 vlan_ethtype 0x0800 src_ip 43.130.27.94 dst_ip 99.219.126.152 ip_proto tcp src_port 48724 dst_port 28500 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11313 flower src_mac 02:e1:7d:f9:6a:21 dst_mac 02:7b:e9:06:01:d1 vlan_id 3570 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11314 flower src_mac 02:68:d9:47:ec:ba dst_mac 02:5b:e6:00:08:0a action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11315 flower src_mac 02:97:d4:5b:04:9a dst_mac 02:ab:80:38:b9:f5 src_ip 122.27.151.65 dst_ip 49.185.189.25 ip_proto tcp src_port 54201 dst_port 39351 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11316 flower src_mac 02:06:33:81:98:d5 dst_mac 02:86:62:45:af:eb vlan_id 668 vlan_ethtype 0x0800 src_ip 26.193.134.229 dst_ip 82.13.117.108 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11317 flower src_mac 02:1e:58:93:f5:82 dst_mac 02:dc:82:48:99:55 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11318 flower src_mac 02:43:85:3a:e9:c8 dst_mac 02:0e:f7:87:b9:b1 src_ip 90.214.56.131 dst_ip 31.95.168.248 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11319 flower src_mac 02:8f:da:66:0f:8a dst_mac 02:ae:9b:e0:ae:a8 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11320 flower src_mac 02:ee:36:7e:84:b0 dst_mac 02:bf:0d:9c:70:c7 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11321 flower src_mac 02:cc:c5:ba:ec:e9 dst_mac 02:91:f8:20:46:8f vlan_id 891 vlan_ethtype 0x0800 src_ip 89.155.184.221 dst_ip 66.17.117.209 ip_proto udp src_port 14113 dst_port 47490 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11322 flower src_mac 02:1f:ec:44:ca:5e dst_mac 02:4a:15:6b:b6:c0 vlan_id 2241 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11323 flower src_mac 02:07:0b:d8:f5:ef dst_mac 02:26:d6:da:9e:34 vlan_id 3194 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11324 flower src_mac 02:cb:69:ee:30:35 dst_mac 02:88:60:23:40:86 vlan_id 1813 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11325 flower src_mac 02:20:28:8f:d9:68 dst_mac 02:e5:d6:cd:2a:be vlan_id 472 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11326 flower src_mac 02:a6:91:d4:75:fc dst_mac 02:39:c5:dd:5c:91 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11327 flower src_mac 02:d8:1f:7e:51:b5 dst_mac 02:29:d3:71:48:9d vlan_id 2549 vlan_ethtype ipv4 src_ip 34.236.125.147 dst_ip 116.122.147.4 ip_proto udp src_port 20581 dst_port 25072 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11328 flower src_mac 02:15:e8:b6:11:f8 dst_mac 02:4c:21:b6:53:1e action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11329 flower src_mac 02:da:fd:98:e0:db dst_mac 02:4c:11:b8:fc:e2 vlan_id 534 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11330 flower src_mac 02:b6:bb:d8:a8:a5 dst_mac 02:07:7a:51:51:4a vlan_id 2176 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11331 flower src_mac 02:e7:ed:8d:9a:9b dst_mac 02:b5:a0:a7:c8:76 vlan_id 953 vlan_ethtype ip src_ip 30.60.184.117 dst_ip 41.141.45.183 ip_proto tcp src_port 51967 dst_port 44858 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11332 flower src_mac 02:8b:5b:05:21:52 dst_mac 02:a3:4d:43:f2:3e src_ip 95.11.26.234 dst_ip 48.116.228.131 ip_proto icmp code 174 type 12 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11333 flower src_mac 02:1c:7f:c8:be:31 dst_mac 02:fe:37:a7:de:d5 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11334 flower src_mac 02:ef:7b:a4:14:5d dst_mac 02:05:f9:f0:6d:aa vlan_id 3170 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11335 flower src_mac 02:59:ae:3f:d8:aa dst_mac 02:af:a5:05:a8:65 vlan_id 3743 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11336 flower src_mac 02:51:10:07:00:a7 dst_mac 02:84:c9:24:8a:76 vlan_id 2184 vlan_ethtype ipv4 src_ip 55.250.66.165 dst_ip 79.124.238.132 action pass && tc filter add dev swp1 ingress protocol ip pref 11337 flower src_mac 02:12:4e:a8:20:cd dst_mac 02:f2:b3:ce:ed:11 src_ip 92.194.6.158 dst_ip 119.13.17.100 ip_proto udp src_port 7903 dst_port 53670 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11338 flower src_mac 02:13:e3:a5:27:59 dst_mac 02:70:db:38:d7:e0 src_ip 18.223.54.245 dst_ip 62.37.248.199 ip_proto tcp src_port 18868 dst_port 59660 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11339 flower src_mac 02:7b:a3:4f:45:04 dst_mac 02:20:e8:51:15:ad src_ip 112.193.175.41 dst_ip 25.43.130.213 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11340 flower src_mac 02:f6:cd:26:c2:c8 dst_mac 02:fc:ef:46:bd:90 vlan_id 3237 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol ip pref 11341 flower src_mac 02:54:0a:71:fd:38 dst_mac 02:fb:fc:3f:29:64 src_ip 90.55.240.79 dst_ip 39.69.98.63 ip_proto tcp src_port 40565 dst_port 50948 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11342 flower src_mac 02:7f:7c:07:74:6b dst_mac 02:5d:0c:32:b1:6f vlan_id 2337 vlan_ethtype 0x0800 src_ip 79.15.84.156 dst_ip 43.207.31.24 ip_proto udp src_port 39085 dst_port 20720 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11343 flower src_mac 02:ab:b1:92:fd:01 dst_mac 02:90:63:e2:e4:99 vlan_id 487 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11344 flower src_mac 02:ac:1f:e7:95:1c dst_mac 02:f0:bf:24:68:12 vlan_id 2085 vlan_ethtype ipv4 src_ip 21.223.100.155 dst_ip 36.221.23.89 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11345 flower src_mac 02:c3:28:f9:09:db dst_mac 02:1b:e9:4c:09:85 vlan_id 116 vlan_ethtype ipv4 src_ip 80.231.218.19 dst_ip 47.14.221.139 ip_proto udp src_port 33369 dst_port 10110 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11346 flower src_mac 02:b1:f7:87:e5:4f dst_mac 02:8b:70:cc:8f:73 vlan_id 2853 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11347 flower src_mac 02:fd:a8:e2:73:4f dst_mac 02:a0:62:04:a2:de action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11348 flower src_mac 02:68:2c:bf:33:f9 dst_mac 02:b1:60:21:f0:ac src_ip 55.149.161.97 dst_ip 44.169.129.201 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11349 flower src_mac 02:85:9c:95:8a:b5 dst_mac 02:03:75:37:64:bd vlan_id 3056 vlan_ethtype ip src_ip 83.121.247.155 dst_ip 99.222.182.183 action pass && tc filter add dev swp1 ingress protocol ip pref 11350 flower src_mac 02:14:73:e2:01:dd dst_mac 02:2b:55:48:52:15 src_ip 103.212.88.10 dst_ip 13.98.186.194 ip_proto udp src_port 56971 dst_port 59905 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11351 flower src_mac 02:36:c3:ca:cc:6c dst_mac 02:83:ca:e9:d0:30 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11352 flower src_mac 02:2c:2a:bb:b9:1e dst_mac 02:12:58:32:c9:49 src_ip 87.93.10.66 dst_ip 116.194.117.38 ip_proto udp src_port 62121 dst_port 16281 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11353 flower src_mac 02:dc:21:c3:bf:d5 dst_mac 02:02:9e:4e:3f:c3 vlan_id 604 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11354 flower src_mac 02:04:0b:7b:a8:3c dst_mac 02:7b:fb:42:a9:e7 vlan_id 270 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11355 flower src_mac 02:47:0e:51:66:0c dst_mac 02:73:61:47:ee:ee vlan_id 3869 vlan_ethtype ipv4 src_ip 81.174.149.107 dst_ip 13.25.9.18 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11356 flower src_mac 02:80:e1:41:96:1e dst_mac 02:08:c1:fd:e3:73 src_ip 85.24.66.91 dst_ip 93.56.77.237 ip_proto udp src_port 57136 dst_port 64217 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11357 flower src_mac 02:8f:c7:97:28:87 dst_mac 02:c0:dd:5f:47:d9 vlan_id 266 vlan_ethtype ipv4 src_ip 88.220.155.86 dst_ip 58.238.21.223 ip_proto udp src_port 52990 dst_port 52718 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11358 flower src_mac 02:35:99:0e:f3:68 dst_mac 02:f0:c5:92:92:27 vlan_id 135 vlan_ethtype 0x0800 src_ip 51.128.207.236 dst_ip 81.147.194.150 ip_proto tcp src_port 17295 dst_port 43201 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11359 flower src_mac 02:e8:9b:9d:3e:39 dst_mac 02:c8:9c:44:c9:0b vlan_id 2671 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ip pref 11360 flower src_mac 02:82:c1:2f:a3:a1 dst_mac 02:18:f0:37:03:ed src_ip 66.143.166.52 dst_ip 37.47.52.127 ip_proto udp src_port 23521 dst_port 50000 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11361 flower src_mac 02:db:37:d4:ba:53 dst_mac 02:3c:d2:5f:be:1f action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11362 flower src_mac 02:77:4b:89:fa:80 dst_mac 02:a7:3d:4d:bb:4b vlan_id 315 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11363 flower src_mac 02:68:2c:9e:d2:25 dst_mac 02:df:96:08:0c:06 vlan_id 1580 vlan_ethtype ip src_ip 117.4.216.116 dst_ip 114.30.157.99 ip_proto tcp src_port 21468 dst_port 45209 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11364 flower src_mac 02:2b:2d:62:be:34 dst_mac 02:fd:92:1d:bd:b3 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11365 flower src_mac 02:f2:c8:67:e2:5d dst_mac 02:a1:bb:50:5c:89 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11366 flower src_mac 02:0d:d2:49:c4:50 dst_mac 02:32:bc:d4:73:e9 vlan_id 236 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11367 flower src_mac 02:dc:d2:e2:37:10 dst_mac 02:ad:ab:28:75:81 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11368 flower src_mac 02:6a:d4:27:13:df dst_mac 02:33:60:e9:fd:e8 vlan_id 2531 vlan_ethtype ipv4 src_ip 27.227.84.202 dst_ip 14.131.130.10 ip_proto udp src_port 140 dst_port 59216 action trap && tc filter add dev swp1 ingress protocol ip pref 11369 flower src_mac 02:c9:b6:82:2f:3f dst_mac 02:c7:84:79:8c:92 src_ip 27.68.22.136 dst_ip 47.165.145.57 ip_proto icmp code 139 type 16 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11370 flower src_mac 02:31:19:2c:30:d9 dst_mac 02:7a:57:83:77:aa vlan_id 2849 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11371 flower src_mac 02:0a:e2:99:b5:2b dst_mac 02:0f:15:f2:55:54 vlan_id 2410 vlan_ethtype ip src_ip 28.85.199.103 dst_ip 53.116.66.189 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11372 flower src_mac 02:7c:ca:65:5a:5b dst_mac 02:7c:90:3f:4a:86 vlan_id 4026 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11373 flower src_mac 02:a7:9d:fa:ef:35 dst_mac 02:60:ee:96:e3:6c action trap && tc filter add dev swp1 ingress protocol ip pref 11374 flower src_mac 02:76:78:ff:58:15 dst_mac 02:b3:57:ac:a2:5b src_ip 77.203.170.244 dst_ip 94.89.35.155 ip_proto udp src_port 10248 dst_port 13929 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11375 flower src_mac 02:27:25:4e:02:17 dst_mac 02:f4:31:90:2d:7e src_ip 119.31.226.34 dst_ip 92.16.55.2 ip_proto icmp code 59 type 4 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11376 flower src_mac 02:07:5e:f9:5b:f6 dst_mac 02:74:29:d9:a6:9e vlan_id 3204 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11377 flower src_mac 02:37:e8:60:e5:a1 dst_mac 02:16:3b:e0:ea:11 vlan_id 3228 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11378 flower src_mac 02:2f:3c:0b:ac:a9 dst_mac 02:12:8d:f1:d6:d6 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11379 flower src_mac 02:65:8d:e5:55:af dst_mac 02:93:ea:59:e7:f2 action trap && tc filter add dev swp1 ingress protocol ip pref 11380 flower src_mac 02:65:19:91:3e:60 dst_mac 02:9c:f0:5b:5d:cc src_ip 98.168.98.99 dst_ip 82.239.201.94 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11381 flower src_mac 02:05:3c:de:a6:b7 dst_mac 02:33:6c:ec:39:86 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11382 flower src_mac 02:ea:47:e1:6e:3d dst_mac 02:8b:b8:e6:30:82 vlan_id 2472 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11383 flower src_mac 02:cd:7f:85:53:e3 dst_mac 02:3f:21:6e:38:5d vlan_id 839 vlan_ethtype 0x0800 src_ip 117.225.166.31 dst_ip 28.199.171.101 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11384 flower src_mac 02:c2:8b:55:e9:08 dst_mac 02:3e:20:5a:0f:67 src_ip 67.251.132.200 dst_ip 40.86.146.198 ip_proto tcp src_port 58441 dst_port 62246 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11385 flower src_mac 02:e4:52:4c:45:b8 dst_mac 02:22:10:f3:4a:f7 vlan_id 2115 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11386 flower src_mac 02:19:f9:43:f8:fc dst_mac 02:28:6b:6c:48:3e action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11387 flower src_mac 02:bc:16:05:a5:2f dst_mac 02:60:14:31:da:01 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11388 flower src_mac 02:0a:7c:15:24:7f dst_mac 02:3f:83:dd:45:4e action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11389 flower src_mac 02:2b:8d:55:4f:94 dst_mac 02:34:68:45:14:46 vlan_id 2934 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11390 flower src_mac 02:e2:02:a4:6a:8a dst_mac 02:5c:36:19:0a:61 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11391 flower src_mac 02:27:51:18:58:13 dst_mac 02:37:90:32:3c:ba vlan_id 1952 vlan_ethtype ip src_ip 12.219.192.222 dst_ip 51.199.124.84 ip_proto tcp src_port 58066 dst_port 28148 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11392 flower src_mac 02:32:3e:5b:e8:fc dst_mac 02:81:19:0c:c7:c5 vlan_id 3434 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11393 flower src_mac 02:d0:93:ef:9c:b1 dst_mac 02:13:71:40:39:a1 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11394 flower src_mac 02:87:cd:d6:b3:49 dst_mac 02:ac:91:54:19:82 src_ip 78.9.142.72 dst_ip 48.157.241.12 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11395 flower src_mac 02:22:3e:e3:25:d1 dst_mac 02:fc:48:b6:2b:56 src_ip 28.107.250.224 dst_ip 110.154.229.131 ip_proto icmp code 127 type 8 action drop && tc filter add dev swp1 ingress protocol ip pref 11396 flower src_mac 02:22:5c:d3:bd:d2 dst_mac 02:76:a7:0b:b5:dc src_ip 90.23.252.58 dst_ip 64.154.191.58 ip_proto icmp code 32 type 3 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11397 flower src_mac 02:0a:cb:f0:c2:35 dst_mac 02:50:c7:8e:36:87 vlan_id 3948 vlan_ethtype 0x0800 src_ip 121.100.186.103 dst_ip 25.95.146.1 ip_proto tcp src_port 56938 dst_port 11341 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11398 flower src_mac 02:23:1c:91:99:cd dst_mac 02:b8:ea:95:1f:5f action drop && tc filter add dev swp1 ingress protocol ip pref 11399 flower src_mac 02:6e:2e:54:66:b6 dst_mac 02:24:6a:1d:35:b5 src_ip 80.95.53.134 dst_ip 126.56.121.208 ip_proto icmp code 225 type 5 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11400 flower src_mac 02:cc:c1:36:6c:63 dst_mac 02:e0:eb:db:24:ec vlan_id 3872 vlan_ethtype ipv4 src_ip 52.125.170.160 dst_ip 119.131.115.150 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11401 flower src_mac 02:5d:33:e1:80:a6 dst_mac 02:86:0c:c4:d2:b2 vlan_id 3409 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11402 flower src_mac 02:87:31:87:88:36 dst_mac 02:cd:f6:a7:b7:fa action trap && tc filter add dev swp1 ingress protocol ip pref 11403 flower src_mac 02:c7:e2:5a:bc:9f dst_mac 02:bf:26:ac:c7:ca src_ip 114.159.144.5 dst_ip 13.202.134.105 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11404 flower src_mac 02:15:f1:4e:d5:b7 dst_mac 02:18:2b:04:82:21 vlan_id 3013 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11405 flower src_mac 02:c1:2c:f6:ee:15 dst_mac 02:2e:99:dd:22:d3 vlan_id 3357 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11406 flower src_mac 02:f4:9c:79:0a:b4 dst_mac 02:a4:fd:2c:f0:ea action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11407 flower src_mac 02:8a:a8:fa:c5:27 dst_mac 02:37:05:74:e8:85 vlan_id 2595 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11408 flower src_mac 02:75:35:9a:91:82 dst_mac 02:e3:2b:1c:0d:49 src_ip 55.244.82.56 dst_ip 47.249.206.21 ip_proto tcp src_port 6144 dst_port 28117 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11409 flower src_mac 02:7e:7a:83:2f:68 dst_mac 02:74:47:40:33:2e vlan_id 642 vlan_ethtype 0x0800 src_ip 11.121.213.218 dst_ip 110.90.231.216 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11410 flower src_mac 02:08:a6:4d:1a:37 dst_mac 02:08:c1:7d:fd:14 src_ip 113.147.71.71 dst_ip 101.87.79.182 ip_proto icmp code 27 type 11 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11411 flower src_mac 02:aa:c9:09:1f:1f dst_mac 02:f8:13:e1:88:09 src_ip 37.122.67.11 dst_ip 103.36.31.80 ip_proto tcp src_port 46318 dst_port 62843 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11412 flower src_mac 02:cb:e9:02:2c:8d dst_mac 02:db:84:c3:ac:db src_ip 22.197.154.2 dst_ip 78.41.239.214 ip_proto tcp src_port 31910 dst_port 62630 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11413 flower src_mac 02:81:21:02:dc:f7 dst_mac 02:8a:8f:82:21:c1 vlan_id 800 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11414 flower src_mac 02:18:a7:85:46:9a dst_mac 02:ae:5d:09:91:c1 src_ip 88.193.190.196 dst_ip 107.201.242.41 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11415 flower src_mac 02:6f:05:49:26:fe dst_mac 02:95:4d:fd:49:7c src_ip 126.29.207.92 dst_ip 125.199.187.70 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11416 flower src_mac 02:f9:81:a9:f6:4f dst_mac 02:51:27:75:17:75 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11417 flower src_mac 02:93:89:9d:49:68 dst_mac 02:59:2b:e6:15:83 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11418 flower src_mac 02:1a:29:d3:81:a1 dst_mac 02:eb:84:07:55:29 vlan_id 418 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11419 flower src_mac 02:0e:d3:36:b3:19 dst_mac 02:61:ca:c0:b7:29 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11420 flower src_mac 02:64:9a:8d:d2:ff dst_mac 02:c3:de:49:b8:c1 vlan_id 463 vlan_ethtype ip src_ip 113.132.87.126 dst_ip 111.196.149.43 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11421 flower src_mac 02:02:6e:4d:3f:f0 dst_mac 02:f0:a2:b4:57:6d action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11422 flower src_mac 02:a5:dd:72:be:3d dst_mac 02:23:ed:3f:eb:64 vlan_id 3667 vlan_ethtype ipv4 src_ip 40.59.107.120 dst_ip 85.203.252.188 ip_proto tcp src_port 11210 dst_port 60208 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11423 flower src_mac 02:60:d3:b4:70:22 dst_mac 02:0b:73:d8:87:c3 vlan_id 3450 vlan_ethtype 0x0800 src_ip 91.175.145.227 dst_ip 109.89.181.242 ip_proto tcp src_port 48374 dst_port 33866 action pass && tc filter add dev swp1 ingress protocol ip pref 11424 flower src_mac 02:f8:2b:fb:38:74 dst_mac 02:14:72:8d:bc:97 src_ip 50.143.227.204 dst_ip 91.150.89.107 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11425 flower src_mac 02:a8:6b:6f:16:a6 dst_mac 02:0f:24:52:64:42 src_ip 44.126.144.131 dst_ip 86.156.147.150 ip_proto udp src_port 48369 dst_port 31790 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11426 flower src_mac 02:fa:ca:b8:73:b9 dst_mac 02:a9:9e:df:0f:57 vlan_id 1709 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11427 flower src_mac 02:e0:3a:73:ff:ed dst_mac 02:7d:f3:65:e4:23 vlan_id 3767 vlan_ethtype 0x9100 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11428 flower src_mac 02:7d:40:18:8a:a1 dst_mac 02:b0:7e:a5:59:9b vlan_id 1594 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11429 flower src_mac 02:93:5f:17:43:12 dst_mac 02:d2:03:19:58:50 src_ip 42.181.53.235 dst_ip 12.232.53.155 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11430 flower src_mac 02:34:97:cc:f5:d8 dst_mac 02:3c:6e:55:16:98 src_ip 49.39.185.138 dst_ip 109.131.7.164 ip_proto tcp src_port 3995 dst_port 3948 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11431 flower src_mac 02:5d:6c:39:1c:10 dst_mac 02:76:a0:87:88:a5 vlan_id 3673 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11432 flower src_mac 02:c3:45:7f:1d:6b dst_mac 02:7e:96:d1:e1:10 action trap && tc filter add dev swp1 ingress protocol ip pref 11433 flower src_mac 02:e0:44:0f:0c:e2 dst_mac 02:61:aa:f8:93:91 src_ip 36.252.160.95 dst_ip 109.173.206.52 ip_proto udp src_port 55541 dst_port 13896 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11434 flower src_mac 02:bc:22:46:62:69 dst_mac 02:35:29:3b:79:ca action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11435 flower src_mac 02:c7:dc:97:92:8c dst_mac 02:68:06:c5:37:06 vlan_id 2958 vlan_ethtype ipv4 src_ip 36.8.156.117 dst_ip 84.235.172.19 ip_proto udp src_port 25878 dst_port 40341 action pass && tc filter add dev swp1 ingress protocol ip pref 11436 flower src_mac 02:50:da:1a:c5:d5 dst_mac 02:b0:33:ef:02:d7 src_ip 73.203.75.66 dst_ip 89.56.162.155 ip_proto icmp code 206 type 14 action trap && tc filter add dev swp1 ingress protocol 0x9200 pref 11437 flower src_mac 02:17:57:6f:e2:79 dst_mac 02:d1:f1:d7:6b:c7 action pass && tc filter add dev swp1 ingress protocol ip pref 11438 flower src_mac 02:da:2d:87:67:c9 dst_mac 02:90:ee:16:e6:56 src_ip 102.189.109.236 dst_ip 26.211.180.215 ip_proto udp src_port 5318 dst_port 58795 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11439 flower src_mac 02:7e:83:5b:da:b1 dst_mac 02:52:4e:cc:fe:cd vlan_id 780 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol ip pref 11440 flower src_mac 02:fc:18:de:9b:6b dst_mac 02:ec:80:b4:f3:2c src_ip 38.135.48.115 dst_ip 82.180.12.135 ip_proto udp src_port 50237 dst_port 7574 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11441 flower src_mac 02:7c:00:c2:6f:02 dst_mac 02:ad:94:68:50:2a vlan_id 602 vlan_ethtype 0x0800 src_ip 104.75.49.5 dst_ip 33.61.37.151 ip_proto tcp src_port 6456 dst_port 14184 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11442 flower src_mac 02:c1:26:e7:ec:cc dst_mac 02:ea:7f:73:86:2e vlan_id 668 vlan_ethtype ipv4 src_ip 70.21.217.168 dst_ip 126.132.59.213 ip_proto tcp src_port 22391 dst_port 24958 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11443 flower src_mac 02:fe:4a:c8:f0:c5 dst_mac 02:80:27:96:c3:2a vlan_id 774 vlan_ethtype 0x0800 src_ip 13.151.66.28 dst_ip 88.183.170.148 ip_proto tcp src_port 29447 dst_port 60080 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11444 flower src_mac 02:28:c0:f7:a8:bf dst_mac 02:73:36:ae:1d:8a action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11445 flower src_mac 02:6f:78:0f:1c:01 dst_mac 02:6f:33:ea:90:2f vlan_id 424 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11446 flower src_mac 02:ab:2d:bd:38:4f dst_mac 02:33:ee:8c:a2:27 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11447 flower src_mac 02:03:01:58:34:62 dst_mac 02:92:56:d8:d3:25 vlan_id 395 vlan_ethtype ipv4 src_ip 34.239.240.227 dst_ip 26.123.217.117 ip_proto udp src_port 28515 dst_port 25800 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11448 flower src_mac 02:94:05:6b:20:f3 dst_mac 02:38:2f:91:2c:b6 vlan_id 77 vlan_ethtype ipv4 src_ip 32.210.190.5 dst_ip 21.159.159.132 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11449 flower src_mac 02:bf:8f:4a:d9:35 dst_mac 02:1a:3e:81:71:b3 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11450 flower src_mac 02:cd:c7:fd:88:fe dst_mac 02:14:75:6c:dd:7b vlan_id 4021 vlan_ethtype 0x0800 src_ip 17.61.193.107 dst_ip 98.23.93.132 ip_proto tcp src_port 11351 dst_port 29073 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11451 flower src_mac 02:48:2b:0e:cc:ea dst_mac 02:7f:0f:63:37:07 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11452 flower src_mac 02:8b:c8:51:db:0f dst_mac 02:35:b5:01:c1:82 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11453 flower src_mac 02:3b:0b:6f:30:62 dst_mac 02:07:7e:6d:84:ce action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11454 flower src_mac 02:dc:74:c2:36:7d dst_mac 02:e2:20:ef:32:79 vlan_id 2163 vlan_ethtype 0x0800 src_ip 72.203.105.36 dst_ip 109.67.146.161 ip_proto udp src_port 9958 dst_port 24450 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11455 flower src_mac 02:76:b9:f3:b6:29 dst_mac 02:4d:67:2d:44:85 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11456 flower src_mac 02:de:ca:e8:08:f7 dst_mac 02:4e:73:6b:37:54 src_ip 98.63.120.83 dst_ip 37.140.43.125 ip_proto icmp code 152 type 5 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11457 flower src_mac 02:5a:18:7c:48:e7 dst_mac 02:5c:d0:da:39:31 vlan_id 1138 vlan_ethtype 0x0800 src_ip 14.151.197.197 dst_ip 106.192.8.74 ip_proto udp src_port 63581 dst_port 33050 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11458 flower src_mac 02:f8:60:8c:25:df dst_mac 02:b8:dc:f9:8f:d0 src_ip 95.42.158.109 dst_ip 76.248.54.186 ip_proto tcp src_port 29172 dst_port 38093 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11459 flower src_mac 02:ba:e5:14:56:cc dst_mac 02:c6:20:8a:69:e3 vlan_id 2883 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11460 flower src_mac 02:9a:bf:a0:f5:9d dst_mac 02:6b:aa:55:5f:dd action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11461 flower src_mac 02:63:0e:df:64:da dst_mac 02:65:94:f9:f8:1a src_ip 50.130.18.172 dst_ip 118.213.118.182 ip_proto udp src_port 14061 dst_port 62640 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11462 flower src_mac 02:7e:af:1f:fc:7c dst_mac 02:d8:6c:9d:88:59 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11463 flower src_mac 02:36:6f:71:3f:3c dst_mac 02:9e:7d:9c:35:80 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11464 flower src_mac 02:e0:eb:81:9f:fd dst_mac 02:30:d9:21:56:e8 vlan_id 1034 vlan_ethtype ipv4 src_ip 93.183.79.115 dst_ip 96.170.169.165 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11465 flower src_mac 02:c9:05:c0:9e:13 dst_mac 02:75:b8:be:c5:0a vlan_id 2748 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11466 flower src_mac 02:1f:9c:09:f4:92 dst_mac 02:e9:8b:a9:84:7b vlan_id 3016 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11467 flower src_mac 02:74:36:13:1d:6a dst_mac 02:f1:07:db:e5:ed vlan_id 2541 vlan_ethtype 0x0800 src_ip 12.170.191.138 dst_ip 93.2.216.163 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11468 flower src_mac 02:8d:e1:70:6f:f7 dst_mac 02:88:be:c0:3e:10 vlan_id 1770 vlan_ethtype ip src_ip 114.230.118.108 dst_ip 117.66.130.87 ip_proto udp src_port 25601 dst_port 58131 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11469 flower src_mac 02:09:03:4d:df:66 dst_mac 02:bc:9a:c7:31:06 vlan_id 2119 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x0800 pref 11470 flower src_mac 02:86:fe:be:a7:e8 dst_mac 02:50:e2:5e:84:08 src_ip 22.183.156.119 dst_ip 93.37.178.88 ip_proto udp src_port 12637 dst_port 20081 action drop && tc filter add dev swp1 ingress protocol 0x9300 pref 11471 flower src_mac 02:d4:bc:57:ac:c0 dst_mac 02:96:97:91:8b:b0 action pass && tc filter add dev swp1 ingress protocol 0x9100 pref 11472 flower src_mac 02:9d:5e:39:a0:85 dst_mac 02:e7:5f:59:2b:91 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11473 flower src_mac 02:24:e5:ea:54:c3 dst_mac 02:b3:6b:e0:21:8f vlan_id 2544 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11474 flower src_mac 02:0d:67:9f:87:b7 dst_mac 02:41:2c:10:d0:0c vlan_id 537 vlan_ethtype ipv4 src_ip 111.59.106.40 dst_ip 28.242.201.69 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11475 flower src_mac 02:56:b6:c9:ef:8f dst_mac 02:39:07:7b:cc:44 src_ip 123.193.19.39 dst_ip 36.188.51.28 action trap && tc filter add dev swp1 ingress protocol ip pref 11476 flower src_mac 02:9f:9f:93:63:10 dst_mac 02:da:6c:02:5c:27 src_ip 94.208.1.152 dst_ip 120.149.29.205 action pass && tc filter add dev swp1 ingress protocol ip pref 11477 flower src_mac 02:d8:6c:1f:8e:05 dst_mac 02:a1:bd:ed:f7:d0 src_ip 77.72.194.62 dst_ip 103.111.16.120 ip_proto udp src_port 50223 dst_port 44368 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11478 flower src_mac 02:be:81:7b:43:48 dst_mac 02:bf:7c:b4:38:82 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11479 flower src_mac 02:97:c9:a2:0a:c1 dst_mac 02:d1:f6:de:46:dd vlan_id 805 vlan_ethtype ipv4 src_ip 24.160.39.29 dst_ip 99.26.10.153 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11480 flower src_mac 02:83:31:4c:90:d6 dst_mac 02:6c:5d:3f:45:a1 src_ip 53.204.130.244 dst_ip 23.44.205.174 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11481 flower src_mac 02:df:97:e3:7b:74 dst_mac 02:c6:ed:12:16:3f vlan_id 3207 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11482 flower src_mac 02:e2:f1:9c:05:93 dst_mac 02:41:04:60:c7:fe action drop && tc filter add dev swp1 ingress protocol 0x9100 pref 11483 flower src_mac 02:53:3e:3d:ed:d0 dst_mac 02:aa:18:b8:55:ce action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11484 flower src_mac 02:22:b9:49:3d:b2 dst_mac 02:a7:7e:f0:01:cf vlan_id 842 vlan_ethtype 0x0800 src_ip 61.53.36.77 dst_ip 68.17.146.44 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11485 flower src_mac 02:0c:78:9b:ad:49 dst_mac 02:6b:8d:b3:fe:0c vlan_id 1498 vlan_ethtype ip src_ip 113.167.138.133 dst_ip 43.156.58.213 ip_proto udp src_port 35565 dst_port 47552 action pass && tc filter add dev swp1 ingress protocol ipv4 pref 11486 flower src_mac 02:71:91:fa:09:45 dst_mac 02:48:28:da:18:e8 src_ip 61.106.115.176 dst_ip 32.249.207.7 ip_proto icmp code 24 type 16 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11487 flower src_mac 02:a2:c3:16:a9:74 dst_mac 02:52:97:47:0f:b0 src_ip 107.186.147.138 dst_ip 118.232.182.124 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11488 flower src_mac 02:ea:1d:fb:4b:57 dst_mac 02:3c:b3:d5:2e:2c vlan_id 466 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11489 flower src_mac 02:03:ff:9f:e3:5d dst_mac 02:09:52:a5:9b:f0 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11490 flower src_mac 02:5d:aa:e0:39:59 dst_mac 02:a6:13:d2:79:de vlan_id 3605 vlan_ethtype 0x0800 src_ip 21.217.198.29 dst_ip 13.122.88.26 action trap && tc filter add dev swp1 ingress protocol 0x9100 pref 11491 flower src_mac 02:bb:9e:ce:d4:ae dst_mac 02:53:4c:2f:4a:58 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11492 flower src_mac 02:df:5b:84:b9:49 dst_mac 02:05:fc:e1:5d:60 src_ip 37.206.70.150 dst_ip 35.180.150.78 ip_proto udp src_port 3435 dst_port 63447 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11493 flower src_mac 02:22:56:3d:f0:be dst_mac 02:1e:64:c4:44:c8 vlan_id 2656 vlan_ethtype 0x0800 src_ip 88.159.117.80 dst_ip 50.92.230.237 ip_proto udp src_port 3537 dst_port 39203 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11494 flower src_mac 02:9e:bd:93:5b:31 dst_mac 02:d4:00:7d:55:75 vlan_id 530 vlan_ethtype 0x0800 src_ip 47.153.222.221 dst_ip 88.245.247.213 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11495 flower src_mac 02:4a:e1:21:23:89 dst_mac 02:fc:32:ab:18:33 vlan_id 274 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11496 flower src_mac 02:18:e8:2f:da:05 dst_mac 02:ff:2b:c4:ff:0d vlan_id 1226 vlan_ethtype ip src_ip 59.17.228.242 dst_ip 32.45.92.242 ip_proto udp src_port 55855 dst_port 12462 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11497 flower src_mac 02:9a:b6:c0:d6:b5 dst_mac 02:b9:04:10:c7:14 vlan_id 1099 vlan_ethtype 0x0800 src_ip 97.36.213.66 dst_ip 34.151.172.150 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11498 flower src_mac 02:1a:b6:6f:35:35 dst_mac 02:6b:d8:d9:36:57 src_ip 80.238.145.203 dst_ip 60.12.103.73 ip_proto icmp code 193 type 8 action drop && tc filter add dev swp1 ingress protocol ipv4 pref 11499 flower src_mac 02:36:a4:1f:24:2d dst_mac 02:22:6e:cb:b6:83 src_ip 104.161.46.81 dst_ip 121.141.202.247 ip_proto udp src_port 5657 dst_port 64411 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11500 flower src_mac 02:86:af:10:41:ba dst_mac 02:7d:c3:7e:32:b9 src_ip 86.176.165.90 dst_ip 16.123.98.141 ip_proto udp src_port 58183 dst_port 59550 action drop && tc filter add dev swp1 ingress protocol ip pref 11501 flower src_mac 02:99:ef:ba:6b:9f dst_mac 02:74:14:af:d5:cd src_ip 43.23.68.150 dst_ip 118.242.171.5 ip_proto icmp code 30 type 16 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11502 flower src_mac 02:a3:8d:b3:a3:67 dst_mac 02:55:83:6a:0a:ae vlan_id 2045 vlan_ethtype 0x9300 action drop && tc filter add dev swp1 ingress protocol 0x9200 pref 11503 flower src_mac 02:c0:e7:8d:15:5e dst_mac 02:77:73:b8:09:2c action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11504 flower src_mac 02:ec:09:a1:9b:80 dst_mac 02:0e:d6:11:41:3b action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11505 flower src_mac 02:c7:81:5a:86:63 dst_mac 02:04:4a:3f:c4:f8 vlan_id 2902 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11506 flower src_mac 02:d0:7b:5d:87:a8 dst_mac 02:d5:53:ed:be:ec vlan_id 1942 vlan_ethtype 0x0800 src_ip 33.44.167.13 dst_ip 43.154.27.127 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11507 flower src_mac 02:7f:67:3a:57:60 dst_mac 02:21:2b:36:05:73 vlan_id 3812 vlan_ethtype ipv4 src_ip 68.109.13.43 dst_ip 126.205.97.1 action pass && tc filter add dev swp1 ingress protocol ip pref 11508 flower src_mac 02:13:6d:24:91:18 dst_mac 02:ba:46:2f:23:37 src_ip 122.10.195.222 dst_ip 120.160.99.237 action trap && tc filter add dev swp1 ingress protocol ipv4 pref 11509 flower src_mac 02:bd:1c:c0:29:33 dst_mac 02:06:bf:d8:23:98 src_ip 69.237.138.195 dst_ip 22.156.218.41 ip_proto udp src_port 37368 dst_port 12174 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11510 flower src_mac 02:72:8e:dc:51:76 dst_mac 02:7a:a6:bb:23:f3 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11511 flower src_mac 02:14:31:da:7c:8f dst_mac 02:27:4c:05:8a:17 vlan_id 3510 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11512 flower src_mac 02:20:6b:d0:bb:c5 dst_mac 02:9e:75:18:89:92 vlan_id 4021 vlan_ethtype ipv4 src_ip 90.22.74.154 dst_ip 11.178.19.2 ip_proto udp src_port 48718 dst_port 63036 action pass && tc filter add dev swp1 ingress protocol 0x9300 pref 11513 flower src_mac 02:cd:67:0f:d1:1c dst_mac 02:03:a6:69:ba:76 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11514 flower src_mac 02:99:07:cc:31:0a dst_mac 02:5b:60:41:cb:82 vlan_id 511 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11515 flower src_mac 02:04:06:3c:6e:f0 dst_mac 02:dc:23:4e:89:e1 vlan_id 71 vlan_ethtype ipv4 src_ip 93.9.92.91 dst_ip 57.158.43.181 ip_proto udp src_port 18300 dst_port 15018 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11516 flower src_mac 02:ed:da:70:9f:14 dst_mac 02:0c:02:14:b1:4e vlan_id 703 vlan_ethtype 0x9100 action trap && tc filter add dev swp1 ingress protocol 0x0800 pref 11517 flower src_mac 02:30:de:87:1b:34 dst_mac 02:93:a3:99:b4:ca src_ip 29.233.195.87 dst_ip 17.58.7.61 ip_proto tcp src_port 29514 dst_port 28368 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11518 flower src_mac 02:85:ab:b3:7a:2a dst_mac 02:46:a0:47:e9:b7 vlan_id 3126 vlan_ethtype 0x0800 src_ip 61.187.46.19 dst_ip 36.228.238.22 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11519 flower src_mac 02:f0:dd:c6:fd:78 dst_mac 02:5b:f9:47:45:f5 vlan_id 3615 vlan_ethtype 0x9300 action pass && tc filter add dev swp1 ingress protocol 0x9200 pref 11520 flower src_mac 02:7f:01:0f:65:16 dst_mac 02:a1:c2:aa:43:d1 action pass && tc filter add dev swp1 ingress protocol 0x8100 pref 11521 flower src_mac 02:a6:84:d0:eb:b4 dst_mac 02:e9:43:cc:f9:0d vlan_id 2302 vlan_ethtype ip src_ip 93.243.55.86 dst_ip 38.86.62.193 ip_proto udp src_port 56312 dst_port 3265 action drop && tc filter add dev swp1 ingress protocol ip pref 11522 flower src_mac 02:6f:8f:38:da:d7 dst_mac 02:d5:fa:70:04:bb src_ip 123.112.182.121 dst_ip 98.142.149.226 ip_proto udp src_port 19416 dst_port 16867 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11523 flower src_mac 02:bb:01:fd:81:70 dst_mac 02:69:69:41:22:75 vlan_id 716 vlan_ethtype 0x9200 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11524 flower src_mac 02:53:99:e8:21:cd dst_mac 02:1e:6b:4c:3b:4f vlan_id 4080 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 0x9300 pref 11525 flower src_mac 02:d0:69:7d:9a:d9 dst_mac 02:2e:81:48:9b:90 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11526 flower src_mac 02:79:5e:c4:3d:f6 dst_mac 02:19:6f:7c:85:be vlan_id 1656 vlan_ethtype 0x9200 action drop && tc filter add dev swp1 ingress protocol 802.1q pref 11527 flower src_mac 02:e5:d7:aa:ad:80 dst_mac 02:80:c3:67:78:3e vlan_id 2545 vlan_ethtype 0x9100 action drop && tc filter add dev swp1 ingress protocol ip pref 11528 flower src_mac 02:28:24:db:b6:d6 dst_mac 02:0d:d9:18:77:8f src_ip 118.21.109.57 dst_ip 123.122.228.47 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11529 flower src_mac 02:21:2c:2b:f9:07 dst_mac 02:7e:ee:49:57:49 vlan_id 2744 vlan_ethtype 0x9300 action trap && tc filter add dev swp1 ingress protocol 802.1q pref 11530 flower src_mac 02:6a:62:cb:34:9b dst_mac 02:4c:c5:72:9c:96 vlan_id 1113 vlan_ethtype ip src_ip 56.135.4.158 dst_ip 50.81.75.37 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11531 flower src_mac 02:f9:04:62:d3:23 dst_mac 02:b5:f0:6f:d8:5e vlan_id 3884 vlan_ethtype 0x9200 action pass && tc filter add dev swp1 ingress protocol 802.1q pref 11532 flower src_mac 02:1e:47:1e:58:90 dst_mac 02:98:3b:01:1a:f3 vlan_id 3768 vlan_ethtype ipv4 src_ip 63.112.186.56 dst_ip 94.135.9.130 ip_proto udp src_port 23437 dst_port 9714 action pass && tc filter add dev swp1 ingress protocol 0x0800 pref 11533 flower src_mac 02:59:6d:80:7a:8d dst_mac 02:21:5f:54:c9:9f src_ip 92.207.240.117 dst_ip 99.149.221.247 ip_proto udp src_port 2739 dst_port 17189 action trap && tc filter add dev swp1 ingress protocol 0x8100 pref 11534 flower src_mac 02:fc:25:17:2c:66 dst_mac 02:ac:09:54:ea:2b vlan_id 1535 vlan_ethtype ip src_ip 126.95.210.196 dst_ip 82.19.92.142 action drop && tc filter add dev swp1 ingress protocol 0x8100 pref 11535 flower src_mac 02:65:d3:ca:c4:18 dst_mac 02:62:9c:34:09:9e vlan_id 344 vlan_ethtype 0x9300 action trap INFO asyncssh:logging.py:92 [conn=24, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter show dev swp1 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=12] Command: tc filter show dev swp1 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=12] Channel closed DEBUG agg1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=24, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter show dev swp1 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=14] Command: tc filter show dev swp1 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=14] Channel closed DEBUG agg1:Logger.py:156 1536 INFO DENT:Logger.py:84 [DENT aggregation 1] Total number of rules: 1536, offloaded: 1536 INFO asyncssh:logging.py:92 [conn=24, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 10000 && tc filter delete dev swp1 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=16] Command: tc filter delete dev swp1 ingress pref 10000 && tc filter delete dev swp1 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter show dev swp1 ingress pref 10000 && tc filter show dev swp1 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=18] Command: tc filter show dev swp1 ingress pref 10000 && tc filter show dev swp1 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=18] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=24, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:53:44 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=24, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=22] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:53:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=24, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:53:44 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=24, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=24, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=50] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=52] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_addition_deletion_under_traffic | 173.05 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_addition_deletion_under_traffic">Starting testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1122' coro=<test_acl_addition_deletion_under_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:272> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=25] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=25] Local address: 172.17.0.4, port 51930 INFO asyncssh:logging.py:92 [conn=25] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=25] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=25] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:53:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=25, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=25, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_ip 24.142.122.206 dst_ip 84.152.232.50 ip_proto udp src_port 18988 dst_port 32370 action pass && tc filter add dev swp1 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=8] Command: tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_ip 24.142.122.206 dst_ip 84.152.232.50 ip_proto udp src_port 18988 dst_port 32370 action pass && tc filter add dev swp1 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=10] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"84.152.232.50","src_ip":"24.142.122.206","dst_port":32370,"src_port":18988},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_eth_type_ipv4_ip_proto_udp_dst_ip_84.152.232.50_src_ip_24.142.122.206_dst_port_32370_src_port_18988 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a289a0e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_eth_type_ipv4_ip_proto_udp_dst_ip_84.152.232.50_src_ip_24.142.122.206_dst_port_32370_src_port_18988 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 59896 Rx 59896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_eth_type_ipv4_ip_proto_udp_dst_ip_84.152.232.50_src_ip_24.142.122.206_dst_port_32370_src_port_18988 Tx Frames: 79896, Rx Frames: 79896, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=12] Command: tc filter delete dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2899030>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_eth_type_ipv4_ip_proto_udp_dst_ip_84.152.232.50_src_ip_24.142.122.206_dst_port_32370_src_port_18988 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 85993 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_eth_type_ipv4_ip_proto_udp_dst_ip_84.152.232.50_src_ip_24.142.122.206_dst_port_32370_src_port_18988 Tx Frames: 105993, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_ip 24.142.122.206 dst_ip 84.152.232.50 ip_proto udp src_port 18988 dst_port 32370 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=14] Command: tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_ip 24.142.122.206 dst_ip 84.152.232.50 ip_proto udp src_port 18988 dst_port 32370 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a289a710>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_eth_type_ipv4_ip_proto_udp_dst_ip_84.152.232.50_src_ip_24.142.122.206_dst_port_32370_src_port_18988 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 86737 Rx 86737 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_eth_type_ipv4_ip_proto_udp_dst_ip_84.152.232.50_src_ip_24.142.122.206_dst_port_32370_src_port_18988 Tx Frames: 86737, Rx Frames: 86737, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=25, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:56:41 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=25, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":58,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=25, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:56:41 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=25, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:56:41 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=25, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=25, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-pass] | 195.29 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1191' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=26] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=26] Local address: 172.17.0.4, port 51442 INFO asyncssh:logging.py:92 [conn=26] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=26] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=26] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:56:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=26, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=5] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 1089 && bridge vlan add dev swp2 vid 1089 INFO asyncssh:logging.py:92 [conn=26, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=6] Command: bridge vlan add dev swp1 vid 1089 && bridge vlan add dev swp2 vid 1089 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=8] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:4a:89:27:22:6f dst_mac 02:d0:29:fd:0d:12 vlan_id 1089 vlan_ethtype ip src_ip 110.59.110.49 dst_ip 69.158.94.158 ip_proto udp src_port 10324 dst_port 43350 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:4a:89:27:22:6f dst_mac 02:d0:29:fd:0d:12 vlan_id 1089 vlan_ethtype ip src_ip 110.59.110.49 dst_ip 69.158.94.158 ip_proto udp src_port 10324 dst_port 43350 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1089,"vlan_ethtype":"ip","dst_mac":"02:d0:29:fd:0d:12","src_mac":"02:4a:89:27:22:6f","eth_type":"ipv4","ip_proto":"udp","dst_ip":"69.158.94.158","src_ip":"110.59.110.49","dst_port":43350,"src_port":10324},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1089, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1089, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a270a590>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324 SIP-DIP N/A Tx 44634 Rx 44634 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_srcMac SIP-DIP N/A Tx 44634 Rx 44634 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_dstMac SIP-DIP N/A Tx 44634 Rx 44634 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_vlanID SIP-DIP N/A Tx 44634 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_srcIp SIP-DIP N/A Tx 44634 Rx 44634 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_dstIp SIP-DIP N/A Tx 44634 Rx 44634 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_srcPort SIP-DIP N/A Tx 44634 Rx 44634 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_dstPort SIP-DIP N/A Tx 44634 Rx 44634 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324 Tx Frames: 44634, Rx Frames: 44634, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_srcMac Tx Frames: 44634, Rx Frames: 44634, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_dstMac Tx Frames: 44634, Rx Frames: 44634, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_vlanID Tx Frames: 44634, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_srcIp Tx Frames: 44634, Rx Frames: 44634, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_dstIp Tx Frames: 44634, Rx Frames: 44634, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_srcPort Tx Frames: 44634, Rx Frames: 44634, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1089_vlan_ethtype_ip_dst_mac_02:d0:29:fd:0d:12_src_mac_02:4a:89:27:22:6f_eth_type_ipv4_ip_proto_udp_dst_ip_69.158.94.158_src_ip_110.59.110.49_dst_port_43350_src_port_10324_unmatch_dstPort Tx Frames: 44634, Rx Frames: 44634, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=26, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1089,"vlan_ethtype":"ip","dst_mac":"02:d0:29:fd:0d:12","src_mac":"02:4a:89:27:22:6f","eth_type":"ipv4","ip_proto":"udp","dst_ip":"69.158.94.158","src_ip":"110.59.110.49","dst_port":43350,"src_port":10324},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":193,"stats":{"bytes":11426304,"packets":44634,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11426304,"hw_packets":44634,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 44634, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 44634, packets = 44634, expected = 44634, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 44634, hw_packets = 44634, expected = 44634, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=26, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:59:56 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=26, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=26, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:59:56 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=26, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:59:56 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=26, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=26, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-drop] | 193.88 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1260' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=27] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=27] Local address: 172.17.0.4, port 51002 INFO asyncssh:logging.py:92 [conn=27] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=27] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=27] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 15:59:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=27, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=5] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 34 && bridge vlan add dev swp2 vid 34 INFO asyncssh:logging.py:92 [conn=27, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=6] Command: bridge vlan add dev swp1 vid 34 && bridge vlan add dev swp2 vid 34 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=8] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:52:1e:49:a7:77 dst_mac 02:ef:de:9d:a4:d2 vlan_id 34 vlan_ethtype ip src_ip 83.236.65.177 dst_ip 49.84.208.76 ip_proto udp src_port 32132 dst_port 451 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:52:1e:49:a7:77 dst_mac 02:ef:de:9d:a4:d2 vlan_id 34 vlan_ethtype ip src_ip 83.236.65.177 dst_ip 49.84.208.76 ip_proto udp src_port 32132 dst_port 451 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":34,"vlan_ethtype":"ip","dst_mac":"02:ef:de:9d:a4:d2","src_mac":"02:52:1e:49:a7:77","eth_type":"ipv4","ip_proto":"udp","dst_ip":"49.84.208.76","src_ip":"83.236.65.177","dst_port":451,"src_port":32132},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 34, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 34, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a270b970>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132 SIP-DIP N/A Tx 44567 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_srcMac SIP-DIP N/A Tx 44567 Rx 44567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_dstMac SIP-DIP N/A Tx 44567 Rx 44567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_vlanID SIP-DIP N/A Tx 44567 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_srcIp SIP-DIP N/A Tx 44567 Rx 44567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_dstIp SIP-DIP N/A Tx 44567 Rx 44567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_srcPort SIP-DIP N/A Tx 44567 Rx 44567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_dstPort SIP-DIP N/A Tx 44567 Rx 44567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132 Tx Frames: 44567, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_srcMac Tx Frames: 44567, Rx Frames: 44567, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_dstMac Tx Frames: 44567, Rx Frames: 44567, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_vlanID Tx Frames: 44567, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_srcIp Tx Frames: 44567, Rx Frames: 44567, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_dstIp Tx Frames: 44567, Rx Frames: 44567, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_srcPort Tx Frames: 44567, Rx Frames: 44567, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_34_vlan_ethtype_ip_dst_mac_02:ef:de:9d:a4:d2_src_mac_02:52:1e:49:a7:77_eth_type_ipv4_ip_proto_udp_dst_ip_49.84.208.76_src_ip_83.236.65.177_dst_port_451_src_port_32132_unmatch_dstPort Tx Frames: 44567, Rx Frames: 44567, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=27, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":34,"vlan_ethtype":"ip","dst_mac":"02:ef:de:9d:a4:d2","src_mac":"02:52:1e:49:a7:77","eth_type":"ipv4","ip_proto":"udp","dst_ip":"49.84.208.76","src_ip":"83.236.65.177","dst_port":451,"src_port":32132},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":192,"stats":{"bytes":11409152,"packets":44567,"drops":44567,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11409152,"hw_packets":44567,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 44567, drops = 44567, expected = 44567, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 44567, packets = 44567, expected = 44567, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 44567, hw_packets = 44567, expected = 44567, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=27, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:03:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=27, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":60,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=27, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:03:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=27, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:03:10 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=27, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=27, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-trap] | 193.43 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1329' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=28] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=28] Local address: 172.17.0.4, port 59968 INFO asyncssh:logging.py:92 [conn=28] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=28] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=28] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:03:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=28, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=5] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 100 && bridge vlan add dev swp2 vid 100 INFO asyncssh:logging.py:92 [conn=28, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=6] Command: bridge vlan add dev swp1 vid 100 && bridge vlan add dev swp2 vid 100 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=8] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:9b:02:69:d8:bb dst_mac 02:85:92:83:61:36 vlan_id 100 vlan_ethtype ip src_ip 32.33.133.84 dst_ip 25.177.58.121 ip_proto udp src_port 22213 dst_port 27424 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:9b:02:69:d8:bb dst_mac 02:85:92:83:61:36 vlan_id 100 vlan_ethtype ip src_ip 32.33.133.84 dst_ip 25.177.58.121 ip_proto udp src_port 22213 dst_port 27424 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":100,"vlan_ethtype":"ip","dst_mac":"02:85:92:83:61:36","src_mac":"02:9b:02:69:d8:bb","eth_type":"ipv4","ip_proto":"udp","dst_ip":"25.177.58.121","src_ip":"32.33.133.84","dst_port":27424,"src_port":22213},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 100, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 100, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a287e6b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213 SIP-DIP N/A Tx 44438 Rx 17783 Loss 59.982 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_srcMac SIP-DIP N/A Tx 44438 Rx 44438 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_dstMac SIP-DIP N/A Tx 44438 Rx 44438 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_vlanID SIP-DIP N/A Tx 44438 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_srcIp SIP-DIP N/A Tx 44438 Rx 44438 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_dstIp SIP-DIP N/A Tx 44438 Rx 44438 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_srcPort SIP-DIP N/A Tx 44438 Rx 44438 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_dstPort SIP-DIP N/A Tx 44438 Rx 44438 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213 Tx Frames: 44438, Rx Frames: 17783, loss = 59.982, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_srcMac Tx Frames: 44438, Rx Frames: 44438, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_dstMac Tx Frames: 44438, Rx Frames: 44438, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_vlanID Tx Frames: 44438, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_srcIp Tx Frames: 44438, Rx Frames: 44438, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_dstIp Tx Frames: 44438, Rx Frames: 44438, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_srcPort Tx Frames: 44438, Rx Frames: 44438, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_100_vlan_ethtype_ip_dst_mac_02:85:92:83:61:36_src_mac_02:9b:02:69:d8:bb_eth_type_ipv4_ip_proto_udp_dst_ip_25.177.58.121_src_ip_32.33.133.84_dst_port_27424_src_port_22213_unmatch_dstPort Tx Frames: 44438, Rx Frames: 44438, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=28, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":100,"vlan_ethtype":"ip","dst_mac":"02:85:92:83:61:36","src_mac":"02:9b:02:69:d8:bb","eth_type":"ipv4","ip_proto":"udp","dst_ip":"25.177.58.121","src_ip":"32.33.133.84","dst_port":27424,"src_port":22213},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":191,"stats":{"bytes":11376128,"packets":44438,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11376128,"hw_packets":44438,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44438, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44438, packets = 44438, expected = 44438, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44438, hw_packets = 44438, expected = 44438, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=28, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:06:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=28, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":61,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=28, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:06:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=28, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:06:24 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=28, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=28, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-pass] | 179.68 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1398' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=29] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=29] Local address: 172.17.0.4, port 51340 INFO asyncssh:logging.py:92 [conn=29] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=29] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=29] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:06:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=29, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=6] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:1f:02:50:41:c9 dst_mac 02:e3:21:4f:f8:b0 src_ip 35.73.93.228 dst_ip 61.140.166.15 ip_proto udp src_port 60465 dst_port 13610 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:1f:02:50:41:c9 dst_mac 02:e3:21:4f:f8:b0 src_ip 35.73.93.228 dst_ip 61.140.166.15 ip_proto udp src_port 60465 dst_port 13610 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:e3:21:4f:f8:b0","src_mac":"02:1f:02:50:41:c9","eth_type":"ipv4","ip_proto":"udp","dst_ip":"61.140.166.15","src_ip":"35.73.93.228","dst_port":13610,"src_port":60465},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a27084f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465 SIP-DIP N/A Tx 44550 Rx 44550 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_srcMac SIP-DIP N/A Tx 44550 Rx 44550 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_dstMac SIP-DIP N/A Tx 44550 Rx 44550 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_srcIp SIP-DIP N/A Tx 44550 Rx 44550 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_dstIp SIP-DIP N/A Tx 44550 Rx 44550 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_srcPort SIP-DIP N/A Tx 44550 Rx 44550 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_dstPort SIP-DIP N/A Tx 44550 Rx 44550 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465 Tx Frames: 44550, Rx Frames: 44550, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_srcMac Tx Frames: 44550, Rx Frames: 44550, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_dstMac Tx Frames: 44550, Rx Frames: 44550, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_srcIp Tx Frames: 44550, Rx Frames: 44550, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_dstIp Tx Frames: 44550, Rx Frames: 44550, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_srcPort Tx Frames: 44550, Rx Frames: 44550, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:e3:21:4f:f8:b0_src_mac_02:1f:02:50:41:c9_eth_type_ipv4_ip_proto_udp_dst_ip_61.140.166.15_src_ip_35.73.93.228_dst_port_13610_src_port_60465_unmatch_dstPort Tx Frames: 44550, Rx Frames: 44550, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=29, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:e3:21:4f:f8:b0","src_mac":"02:1f:02:50:41:c9","eth_type":"ipv4","ip_proto":"udp","dst_ip":"61.140.166.15","src_ip":"35.73.93.228","dst_port":13610,"src_port":60465},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":178,"stats":{"bytes":11404800,"packets":44550,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11404800,"hw_packets":44550,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 44550, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 44550, packets = 44550, expected = 44550, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 44550, hw_packets = 44550, expected = 44550, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=29, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:09:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=29, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":62,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=29, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:09:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=29, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:09:24 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=29, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=29, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-drop] | 178.44 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1465' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=30] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=30] Local address: 172.17.0.4, port 45376 INFO asyncssh:logging.py:92 [conn=30] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=30] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=30] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:09:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=30, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=6] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:31:d8:9b:5d:46 dst_mac 02:2c:77:af:30:2d src_ip 105.214.135.37 dst_ip 92.254.242.187 ip_proto udp src_port 18247 dst_port 33830 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:31:d8:9b:5d:46 dst_mac 02:2c:77:af:30:2d src_ip 105.214.135.37 dst_ip 92.254.242.187 ip_proto udp src_port 18247 dst_port 33830 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:2c:77:af:30:2d","src_mac":"02:31:d8:9b:5d:46","eth_type":"ipv4","ip_proto":"udp","dst_ip":"92.254.242.187","src_ip":"105.214.135.37","dst_port":33830,"src_port":18247},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2709780>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247 SIP-DIP N/A Tx 44441 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_srcMac SIP-DIP N/A Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_dstMac SIP-DIP N/A Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_srcIp SIP-DIP N/A Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_dstIp SIP-DIP N/A Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_srcPort SIP-DIP N/A Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_dstPort SIP-DIP N/A Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247 Tx Frames: 44441, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_srcMac Tx Frames: 44441, Rx Frames: 44441, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_dstMac Tx Frames: 44441, Rx Frames: 44441, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_srcIp Tx Frames: 44441, Rx Frames: 44441, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_dstIp Tx Frames: 44441, Rx Frames: 44441, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_srcPort Tx Frames: 44441, Rx Frames: 44441, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:2c:77:af:30:2d_src_mac_02:31:d8:9b:5d:46_eth_type_ipv4_ip_proto_udp_dst_ip_92.254.242.187_src_ip_105.214.135.37_dst_port_33830_src_port_18247_unmatch_dstPort Tx Frames: 44441, Rx Frames: 44441, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=30, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:2c:77:af:30:2d","src_mac":"02:31:d8:9b:5d:46","eth_type":"ipv4","ip_proto":"udp","dst_ip":"92.254.242.187","src_ip":"105.214.135.37","dst_port":33830,"src_port":18247},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":176,"stats":{"bytes":11376896,"packets":44441,"drops":44441,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11376896,"hw_packets":44441,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 44441, drops = 44441, expected = 44441, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 44441, packets = 44441, expected = 44441, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 44441, hw_packets = 44441, expected = 44441, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=30, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:12:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=30, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":63,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=30, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:12:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=30, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:12:22 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=30, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=30, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-trap] | 182.04 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1532' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=31] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=31] Local address: 172.17.0.4, port 55462 INFO asyncssh:logging.py:92 [conn=31] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=31] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=31] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:12:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=31, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=6] Command: tc qdisc add dev swp1 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:d4:6d:e0:85:9a dst_mac 02:ed:8b:f6:5e:97 src_ip 115.202.172.87 dst_ip 80.83.163.66 ip_proto udp src_port 29051 dst_port 2366 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:d4:6d:e0:85:9a dst_mac 02:ed:8b:f6:5e:97 src_ip 115.202.172.87 dst_ip 80.83.163.66 ip_proto udp src_port 29051 dst_port 2366 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ed:8b:f6:5e:97","src_mac":"02:d4:6d:e0:85:9a","eth_type":"ipv4","ip_proto":"udp","dst_ip":"80.83.163.66","src_ip":"115.202.172.87","dst_port":2366,"src_port":29051},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a287eef0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051 SIP-DIP N/A Tx 44805 Rx 17946 Loss 59.946 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_srcMac SIP-DIP N/A Tx 44805 Rx 44805 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_dstMac SIP-DIP N/A Tx 44805 Rx 44805 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_srcIp SIP-DIP N/A Tx 44805 Rx 44805 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_dstIp SIP-DIP N/A Tx 44805 Rx 44805 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_srcPort SIP-DIP N/A Tx 44805 Rx 44805 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_dstPort SIP-DIP N/A Tx 44805 Rx 44805 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051 Tx Frames: 44805, Rx Frames: 17946, loss = 59.946, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_srcMac Tx Frames: 44805, Rx Frames: 44805, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_dstMac Tx Frames: 44805, Rx Frames: 44805, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_srcIp Tx Frames: 44805, Rx Frames: 44805, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_dstIp Tx Frames: 44805, Rx Frames: 44805, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_srcPort Tx Frames: 44805, Rx Frames: 44805, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ed:8b:f6:5e:97_src_mac_02:d4:6d:e0:85:9a_eth_type_ipv4_ip_proto_udp_dst_ip_80.83.163.66_src_ip_115.202.172.87_dst_port_2366_src_port_29051_unmatch_dstPort Tx Frames: 44805, Rx Frames: 44805, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=31, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ed:8b:f6:5e:97","src_mac":"02:d4:6d:e0:85:9a","eth_type":"ipv4","ip_proto":"udp","dst_ip":"80.83.163.66","src_ip":"115.202.172.87","dst_port":2366,"src_port":29051},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":180,"stats":{"bytes":11470080,"packets":44805,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11470080,"hw_packets":44805,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44805, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44805, packets = 44805, expected = 44805, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44805, hw_packets = 44805, expected = 44805, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=31, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:15:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=31, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":64,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=31, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:15:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=31, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:15:24 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=31, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=31, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-pass] | 197.11 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-pass]">Starting testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1599' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=32] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=32] Local address: 172.17.0.4, port 46162 INFO asyncssh:logging.py:92 [conn=32] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=32] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=32] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:15:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=32, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=5] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 1953 && bridge vlan add dev swp2 vid 1953 INFO asyncssh:logging.py:92 [conn=32, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=6] Command: bridge vlan add dev swp1 vid 1953 && bridge vlan add dev swp2 vid 1953 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:95:ef:0a:68:a3 dst_mac 02:dd:d1:b3:27:f6 vlan_id 1953 vlan_ethtype ip src_ip 21.224.174.107 dst_ip 113.91.139.148 ip_proto udp src_port 50775 dst_port 47646 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=10] Command: tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:95:ef:0a:68:a3 dst_mac 02:dd:d1:b3:27:f6 vlan_id 1953 vlan_ethtype ip src_ip 21.224.174.107 dst_ip 113.91.139.148 ip_proto udp src_port 50775 dst_port 47646 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=12] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1953,"vlan_ethtype":"ip","dst_mac":"02:dd:d1:b3:27:f6","src_mac":"02:95:ef:0a:68:a3","eth_type":"ipv4","ip_proto":"udp","dst_ip":"113.91.139.148","src_ip":"21.224.174.107","dst_port":47646,"src_port":50775},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1953, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1953, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2708730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775 SIP-DIP N/A Tx 44525 Rx 44525 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_srcMac SIP-DIP N/A Tx 44525 Rx 44525 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_dstMac SIP-DIP N/A Tx 44525 Rx 44525 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_vlanID SIP-DIP N/A Tx 44525 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_srcIp SIP-DIP N/A Tx 44525 Rx 44525 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_dstIp SIP-DIP N/A Tx 44525 Rx 44525 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_srcPort SIP-DIP N/A Tx 44525 Rx 44525 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_dstPort SIP-DIP N/A Tx 44525 Rx 44525 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775 Tx Frames: 44525, Rx Frames: 44525, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_srcMac Tx Frames: 44525, Rx Frames: 44525, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_dstMac Tx Frames: 44525, Rx Frames: 44525, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_vlanID Tx Frames: 44525, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_srcIp Tx Frames: 44525, Rx Frames: 44525, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_dstIp Tx Frames: 44525, Rx Frames: 44525, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_srcPort Tx Frames: 44525, Rx Frames: 44525, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1953_vlan_ethtype_ip_dst_mac_02:dd:d1:b3:27:f6_src_mac_02:95:ef:0a:68:a3_eth_type_ipv4_ip_proto_udp_dst_ip_113.91.139.148_src_ip_21.224.174.107_dst_port_47646_src_port_50775_unmatch_dstPort Tx Frames: 44525, Rx Frames: 44525, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=32, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=14] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1953,"vlan_ethtype":"ip","dst_mac":"02:dd:d1:b3:27:f6","src_mac":"02:95:ef:0a:68:a3","eth_type":"ipv4","ip_proto":"udp","dst_ip":"113.91.139.148","src_ip":"21.224.174.107","dst_port":47646,"src_port":50775},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":195,"stats":{"bytes":11398400,"packets":44525,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11398400,"hw_packets":44525,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 44525, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 44525, packets = 44525, expected = 44525, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 44525, hw_packets = 44525, expected = 44525, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=32, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:18:41 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=32, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":65,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=32, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:18:41 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=32, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:18:41 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=32, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=32, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-drop] | 193.75 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-drop]">Starting testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1668' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=33] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=33] Local address: 172.17.0.4, port 53398 INFO asyncssh:logging.py:92 [conn=33] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=33] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=33] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:18:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=33, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=5] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 1831 && bridge vlan add dev swp2 vid 1831 INFO asyncssh:logging.py:92 [conn=33, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=6] Command: bridge vlan add dev swp1 vid 1831 && bridge vlan add dev swp2 vid 1831 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:0e:c1:ec:f7:50 dst_mac 02:8b:1f:f5:01:1e vlan_id 1831 vlan_ethtype ip src_ip 31.167.177.79 dst_ip 17.1.148.76 ip_proto udp src_port 27765 dst_port 49979 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=10] Command: tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:0e:c1:ec:f7:50 dst_mac 02:8b:1f:f5:01:1e vlan_id 1831 vlan_ethtype ip src_ip 31.167.177.79 dst_ip 17.1.148.76 ip_proto udp src_port 27765 dst_port 49979 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=12] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1831,"vlan_ethtype":"ip","dst_mac":"02:8b:1f:f5:01:1e","src_mac":"02:0e:c1:ec:f7:50","eth_type":"ipv4","ip_proto":"udp","dst_ip":"17.1.148.76","src_ip":"31.167.177.79","dst_port":49979,"src_port":27765},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1831, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1831, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a26f9d20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765 SIP-DIP N/A Tx 44257 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_srcMac SIP-DIP N/A Tx 44257 Rx 44257 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_dstMac SIP-DIP N/A Tx 44257 Rx 44257 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_vlanID SIP-DIP N/A Tx 44257 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_srcIp SIP-DIP N/A Tx 44257 Rx 44257 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_dstIp SIP-DIP N/A Tx 44257 Rx 44257 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_srcPort SIP-DIP N/A Tx 44257 Rx 44257 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_dstPort SIP-DIP N/A Tx 44257 Rx 44257 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765 Tx Frames: 44257, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_srcMac Tx Frames: 44257, Rx Frames: 44257, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_dstMac Tx Frames: 44257, Rx Frames: 44257, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_vlanID Tx Frames: 44257, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_srcIp Tx Frames: 44257, Rx Frames: 44257, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_dstIp Tx Frames: 44257, Rx Frames: 44257, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_srcPort Tx Frames: 44257, Rx Frames: 44257, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_1831_vlan_ethtype_ip_dst_mac_02:8b:1f:f5:01:1e_src_mac_02:0e:c1:ec:f7:50_eth_type_ipv4_ip_proto_udp_dst_ip_17.1.148.76_src_ip_31.167.177.79_dst_port_49979_src_port_27765_unmatch_dstPort Tx Frames: 44257, Rx Frames: 44257, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=33, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=14] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1831,"vlan_ethtype":"ip","dst_mac":"02:8b:1f:f5:01:1e","src_mac":"02:0e:c1:ec:f7:50","eth_type":"ipv4","ip_proto":"udp","dst_ip":"17.1.148.76","src_ip":"31.167.177.79","dst_port":49979,"src_port":27765},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":192,"stats":{"bytes":11329792,"packets":44257,"drops":44257,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11329792,"hw_packets":44257,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 44257, drops = 44257, expected = 44257, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 44257, packets = 44257, expected = 44257, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 44257, hw_packets = 44257, expected = 44257, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=33, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:21:54 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=33, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":66,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=33, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:21:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=33, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:21:55 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=33, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=33, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-trap] | 193.80 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-trap]">Starting testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1737' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=34] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=34] Local address: 172.17.0.4, port 47248 INFO asyncssh:logging.py:92 [conn=34] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=34] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=34] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:21:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=34, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=5] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 3819 && bridge vlan add dev swp2 vid 3819 INFO asyncssh:logging.py:92 [conn=34, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=6] Command: bridge vlan add dev swp1 vid 3819 && bridge vlan add dev swp2 vid 3819 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:76:42:27:88:57 dst_mac 02:c0:7f:a2:08:29 vlan_id 3819 vlan_ethtype ip src_ip 38.251.76.234 dst_ip 101.2.8.179 ip_proto udp src_port 57324 dst_port 25724 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=10] Command: tc filter add dev swp1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:76:42:27:88:57 dst_mac 02:c0:7f:a2:08:29 vlan_id 3819 vlan_ethtype ip src_ip 38.251.76.234 dst_ip 101.2.8.179 ip_proto udp src_port 57324 dst_port 25724 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=12] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3819,"vlan_ethtype":"ip","dst_mac":"02:c0:7f:a2:08:29","src_mac":"02:76:42:27:88:57","eth_type":"ipv4","ip_proto":"udp","dst_ip":"101.2.8.179","src_ip":"38.251.76.234","dst_port":25724,"src_port":57324},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3819, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3819, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a287f850>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324 SIP-DIP N/A Tx 44573 Rx 17843 Loss 59.969 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_srcMac SIP-DIP N/A Tx 44573 Rx 44573 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_dstMac SIP-DIP N/A Tx 44573 Rx 44573 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_vlanID SIP-DIP N/A Tx 44573 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_srcIp SIP-DIP N/A Tx 44573 Rx 44573 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_dstIp SIP-DIP N/A Tx 44573 Rx 44573 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_srcPort SIP-DIP N/A Tx 44573 Rx 44573 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_dstPort SIP-DIP N/A Tx 44573 Rx 44573 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324 Tx Frames: 44573, Rx Frames: 17843, loss = 59.969, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_srcMac Tx Frames: 44573, Rx Frames: 44573, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_dstMac Tx Frames: 44573, Rx Frames: 44573, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_vlanID Tx Frames: 44573, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_srcIp Tx Frames: 44573, Rx Frames: 44573, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_dstIp Tx Frames: 44573, Rx Frames: 44573, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_srcPort Tx Frames: 44573, Rx Frames: 44573, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_vlan_id_3819_vlan_ethtype_ip_dst_mac_02:c0:7f:a2:08:29_src_mac_02:76:42:27:88:57_eth_type_ipv4_ip_proto_udp_dst_ip_101.2.8.179_src_ip_38.251.76.234_dst_port_25724_src_port_57324_unmatch_dstPort Tx Frames: 44573, Rx Frames: 44573, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=34, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=14] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3819,"vlan_ethtype":"ip","dst_mac":"02:c0:7f:a2:08:29","src_mac":"02:76:42:27:88:57","eth_type":"ipv4","ip_proto":"udp","dst_ip":"101.2.8.179","src_ip":"38.251.76.234","dst_port":25724,"src_port":57324},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":192,"stats":{"bytes":11410688,"packets":44573,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11410688,"hw_packets":44573,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44573, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44573, packets = 44573, expected = 44573, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44573, hw_packets = 44573, expected = 44573, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=34, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:25:08 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=34, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":67,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=34, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:25:08 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=34, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:25:09 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=34, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=34, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-pass] | 177.97 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-pass]">Starting testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1806' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=35] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=35] Local address: 172.17.0.4, port 59410 INFO asyncssh:logging.py:92 [conn=35] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=35] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=35] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:25:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=35, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:79:4b:b0:23:1b dst_mac 02:ef:1c:ac:c3:3e src_ip 96.234.79.149 dst_ip 57.149.212.209 ip_proto udp src_port 63798 dst_port 40398 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=8] Command: tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:79:4b:b0:23:1b dst_mac 02:ef:1c:ac:c3:3e src_ip 96.234.79.149 dst_ip 57.149.212.209 ip_proto udp src_port 63798 dst_port 40398 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=10] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ef:1c:ac:c3:3e","src_mac":"02:79:4b:b0:23:1b","eth_type":"ipv4","ip_proto":"udp","dst_ip":"57.149.212.209","src_ip":"96.234.79.149","dst_port":40398,"src_port":63798},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a26fa440>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798 SIP-DIP N/A Tx 44463 Rx 44463 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_srcMac SIP-DIP N/A Tx 44463 Rx 44463 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_dstMac SIP-DIP N/A Tx 44463 Rx 44463 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_srcIp SIP-DIP N/A Tx 44463 Rx 44463 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_dstIp SIP-DIP N/A Tx 44463 Rx 44463 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_srcPort SIP-DIP N/A Tx 44463 Rx 44463 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_dstPort SIP-DIP N/A Tx 44463 Rx 44463 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798 Tx Frames: 44463, Rx Frames: 44463, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_srcMac Tx Frames: 44463, Rx Frames: 44463, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_dstMac Tx Frames: 44463, Rx Frames: 44463, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_srcIp Tx Frames: 44463, Rx Frames: 44463, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_dstIp Tx Frames: 44463, Rx Frames: 44463, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_srcPort Tx Frames: 44463, Rx Frames: 44463, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:ef:1c:ac:c3:3e_src_mac_02:79:4b:b0:23:1b_eth_type_ipv4_ip_proto_udp_dst_ip_57.149.212.209_src_ip_96.234.79.149_dst_port_40398_src_port_63798_unmatch_dstPort Tx Frames: 44463, Rx Frames: 44463, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=35, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=12] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ef:1c:ac:c3:3e","src_mac":"02:79:4b:b0:23:1b","eth_type":"ipv4","ip_proto":"udp","dst_ip":"57.149.212.209","src_ip":"96.234.79.149","dst_port":40398,"src_port":63798},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":176,"stats":{"bytes":11382528,"packets":44463,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11382528,"hw_packets":44463,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 44463, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 44463, packets = 44463, expected = 44463, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'pass', Tx Frames = 44463, hw_packets = 44463, expected = 44463, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=35, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:28:06 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=35, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":68,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=35, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:28:06 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=35, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:28:07 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=35, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=35, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-drop] | 183.44 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-drop]">Starting testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1873' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=36] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=36] Local address: 172.17.0.4, port 58554 INFO asyncssh:logging.py:92 [conn=36] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=36] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=36] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:28:07 UTC 2023 INFO asyncssh:logging.py:92 [conn=36, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:c2:07:1e:e9:b9 dst_mac 02:40:55:1f:ae:52 src_ip 44.247.238.152 dst_ip 89.32.195.237 ip_proto udp src_port 24218 dst_port 2922 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=8] Command: tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:c2:07:1e:e9:b9 dst_mac 02:40:55:1f:ae:52 src_ip 44.247.238.152 dst_ip 89.32.195.237 ip_proto udp src_port 24218 dst_port 2922 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=10] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:40:55:1f:ae:52","src_mac":"02:c2:07:1e:e9:b9","eth_type":"ipv4","ip_proto":"udp","dst_ip":"89.32.195.237","src_ip":"44.247.238.152","dst_port":2922,"src_port":24218},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a26f8040>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218 SIP-DIP N/A Tx 45847 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_srcMac SIP-DIP N/A Tx 45847 Rx 45847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_dstMac SIP-DIP N/A Tx 45847 Rx 45847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_srcIp SIP-DIP N/A Tx 45847 Rx 45847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_dstIp SIP-DIP N/A Tx 45847 Rx 45847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_srcPort SIP-DIP N/A Tx 45847 Rx 45847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_dstPort SIP-DIP N/A Tx 45847 Rx 45847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218 Tx Frames: 45847, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_srcMac Tx Frames: 45847, Rx Frames: 45847, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_dstMac Tx Frames: 45847, Rx Frames: 45847, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_srcIp Tx Frames: 45847, Rx Frames: 45847, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_dstIp Tx Frames: 45847, Rx Frames: 45847, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_srcPort Tx Frames: 45847, Rx Frames: 45847, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:40:55:1f:ae:52_src_mac_02:c2:07:1e:e9:b9_eth_type_ipv4_ip_proto_udp_dst_ip_89.32.195.237_src_ip_44.247.238.152_dst_port_2922_src_port_24218_unmatch_dstPort Tx Frames: 45847, Rx Frames: 45847, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=36, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=12] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:40:55:1f:ae:52","src_mac":"02:c2:07:1e:e9:b9","eth_type":"ipv4","ip_proto":"udp","dst_ip":"89.32.195.237","src_ip":"44.247.238.152","dst_port":2922,"src_port":24218},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":181,"stats":{"bytes":11736832,"packets":45847,"drops":45847,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11736832,"hw_packets":45847,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 45847, drops = 45847, expected = 45847, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 45847, packets = 45847, expected = 45847, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'drop', Tx Frames = 45847, hw_packets = 45847, expected = 45847, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=36, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:31:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=36, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":69,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=36, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:31:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=36, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:31:10 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=36, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=36, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-trap] | 182.84 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-trap]">Starting testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1940' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=37] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=37] Local address: 172.17.0.4, port 36338 INFO asyncssh:logging.py:92 [conn=37] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=37] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=37] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:31:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=37, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=4] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=6] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:b6:82:c7:38:92 dst_mac 02:49:c3:e3:2f:bc src_ip 58.240.90.181 dst_ip 86.89.248.123 ip_proto udp src_port 18969 dst_port 44615 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=8] Command: tc filter add dev swp1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:b6:82:c7:38:92 dst_mac 02:49:c3:e3:2f:bc src_ip 58.240.90.181 dst_ip 86.89.248.123 ip_proto udp src_port 18969 dst_port 44615 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=10] Command: tc -j filter show dev swp1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:49:c3:e3:2f:bc","src_mac":"02:b6:82:c7:38:92","eth_type":"ipv4","ip_proto":"udp","dst_ip":"86.89.248.123","src_ip":"58.240.90.181","dst_port":44615,"src_port":18969},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a26f95a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969 SIP-DIP N/A Tx 44939 Rx 17993 Loss 59.961 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_srcMac SIP-DIP N/A Tx 44939 Rx 44939 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_dstMac SIP-DIP N/A Tx 44939 Rx 44939 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_srcIp SIP-DIP N/A Tx 44939 Rx 44939 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_dstIp SIP-DIP N/A Tx 44939 Rx 44939 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_srcPort SIP-DIP N/A Tx 44939 Rx 44939 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_dstPort SIP-DIP N/A Tx 44939 Rx 44939 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969 Tx Frames: 44939, Rx Frames: 17993, loss = 59.961, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_srcMac Tx Frames: 44939, Rx Frames: 44939, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_dstMac Tx Frames: 44939, Rx Frames: 44939, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_srcIp Tx Frames: 44939, Rx Frames: 44939, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_dstIp Tx Frames: 44939, Rx Frames: 44939, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_srcPort Tx Frames: 44939, Rx Frames: 44939, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp1_dst_mac_02:49:c3:e3:2f:bc_src_mac_02:b6:82:c7:38:92_eth_type_ipv4_ip_proto_udp_dst_ip_86.89.248.123_src_ip_58.240.90.181_dst_port_44615_src_port_18969_unmatch_dstPort Tx Frames: 44939, Rx Frames: 44939, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=37, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=12] Command: tc -j -s filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:49:c3:e3:2f:bc","src_mac":"02:b6:82:c7:38:92","eth_type":"ipv4","ip_proto":"udp","dst_ip":"86.89.248.123","src_ip":"58.240.90.181","dst_port":44615,"src_port":18969},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":181,"stats":{"bytes":11504384,"packets":44939,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":11504384,"hw_packets":44939,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44939, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44939, packets = 44939, expected = 44939, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT aggregation 1] Rule action = 'trap', Tx Frames = 44939, hw_packets = 44939, expected = 44939, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=37, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:34:12 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=37, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":70,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=37, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:34:13 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=37, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:34:13 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=37, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=37, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_negative.py::test_acl_rule_without_qdisc | 0.77 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_without_qdisc">Starting testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2005' coro=<test_acl_rule_without_qdisc() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py:31> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=38] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=38] Local address: 172.17.0.4, port 47322 INFO asyncssh:logging.py:92 [conn=38] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=38] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=38] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:34:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=38, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=1] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=2] Command: tc qdisc add dev swp1 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=3] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=4] Command: tc filter add dev swp1 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=6] Command: tc qdisc delete dev swp1 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=8] Command: tc filter add dev swp1 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=8] Channel closed DEBUG agg1:Logger.py:156 Error: Parent Qdisc doesn't exists. We have an error talking to the kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py INFO asyncssh:logging.py:92 [conn=38, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=10] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:34:14 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=38, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=12] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=38, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=14] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=14] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=16] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=16] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=18] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=18] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=20] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=20] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=22] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=22] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=24] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=24] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=34] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=36] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=38] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=40] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/bridging/test_bridging_admin_state_down_up.py::test_bridging_admin_state_down_up | 212.28 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_admin_state_down_up">Starting testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2054' coro=<test_bridging_admin_state_down_up() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py:60> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=38, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=39] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=39] Local address: 172.17.0.4, port 47324 INFO asyncssh:logging.py:92 [conn=39] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=39] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=39] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:34:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=39, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=10] Command: ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a26fa6e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI bridge_2 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI bridge_3 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI bridge_4 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=39, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=39, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a287e140>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 244 Rx 0 Frames Delta 244 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 244 Rx 0 Frames Delta 244 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 244 Rx 0 Frames Delta 244 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 244 Rx 0 Frames Delta 244 Loss 100.000 INFO asyncssh:logging.py:92 [conn=39, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:37:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:37:46 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=39, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":71,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=39, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=24] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_ageing.py::test_bridging_ageing_refresh | 310.33 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_refresh">Starting testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2088' coro=<test_bridging_ageing_refresh() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=40] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=40] Local address: 172.17.0.4, port 49738 INFO asyncssh:logging.py:92 [conn=40] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=40] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=40] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:37:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=40, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=6] Command: ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on && bridge link set dev swp2 learning on && bridge link set dev swp3 learning on && bridge link set dev swp4 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=10] Command: bridge link set dev swp1 learning on && bridge link set dev swp2 learning on && bridge link set dev swp3 learning on && bridge link set dev swp4 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a270a200>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI bridge SIP-DIP N/A Tx 247 Rx 247 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:58:ba:06","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a289bfd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI bridge SIP-DIP N/A Tx 247 Rx 247 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:58:ba:06","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2708f70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI bridge SIP-DIP N/A Tx 3631 Rx 3631 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:58:ba:06","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:42:56 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=40, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:42:56 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=40, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":72,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=40, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=24] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_ageing.py::test_bridging_ageing_under_continue | 209.77 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_under_continue">Starting testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2122' coro=<test_bridging_ageing_under_continue() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:191> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=41] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=41] Local address: 172.17.0.4, port 56830 INFO asyncssh:logging.py:92 [conn=41] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=41] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=41] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:42:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=41, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=6] Command: ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=10] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a26face0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 1998 Rx 1997 Frames Delta 1 Loss 0.050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 1998 Rx 1997 Frames Delta 1 Loss 0.050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 1998 Rx 1997 Frames Delta 1 Loss 0.050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 1998 Rx 1997 Frames Delta 1 Loss 0.050 INFO asyncssh:logging.py:92 [conn=41, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:78:cc:eb","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:46:26 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=41, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:46:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=41, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":73,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=41, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=20] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_with_rif | 268.14 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_with_rif">Starting testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2153' coro=<test_bridging_bum_traffic_bridge_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=42] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=42] Local address: 172.17.0.4, port 39854 INFO asyncssh:logging.py:92 [conn=42] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=42] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=42] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:46:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=42, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=8] Command: ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=42, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=10] Command: ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 15 tcpdump -i swp1 -n on agg1... INFO asyncssh:logging.py:92 [conn=42, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=11] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO asyncssh:logging.py:92 [conn=42, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=12] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2708dc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 445 Rx 445 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI BridgedLLDP SIP-DIP N/A Tx 445 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI LACPDU SIP-DIP N/A Tx 445 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4ToMe SIP-DIP N/A Tx 445 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Request_BC SIP-DIP N/A Tx 445 Rx 445 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Reply SIP-DIP N/A Tx 445 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Broadcast SIP-DIP N/A Tx 445 Rx 445 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_SSH SIP-DIP N/A Tx 445 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_Telnet SIP-DIP N/A Tx 445 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 445 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 445 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 445 Rx 445 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 445 Rx 445 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 445 Rx 445 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 445 Rx 445 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 445 Rx 445 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 445 Rx 445 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 445 Rx 445 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 445 Rx 445 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_VRRP SIP-DIP N/A Tx 445 Rx 445 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_IGMP SIP-DIP N/A Tx 445 Rx 445 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_BGP SIP-DIP N/A Tx 445 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=12] Channel closed DEBUG agg1:Logger.py:156 16:50:39.405183 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.405288 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.405299 LLDP, length 82 [|LLDP] 16:50:39.405301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.405314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.405324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 033c a076 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.405327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.405331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.405335 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.405341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.405347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.405394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.405399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.405401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.405409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.415166 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.415214 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.415223 LLDP, length 82 [|LLDP] 16:50:39.415225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.415237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.415246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0344 4196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.415248 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.415254 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.415259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.415283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.415287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.415290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.415294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.415298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.415304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.425145 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.425195 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.425205 LLDP, length 82 [|LLDP] 16:50:39.425206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.425218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.425225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 034b e2b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.425227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.425230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.425234 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.425240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.425245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.425266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.425270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.425272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.425278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.435146 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.435188 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.435196 LLDP, length 82 [|LLDP] 16:50:39.435198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.435210 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.435216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.435221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.435242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.435246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.435248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.435253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0353 83d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.435255 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.435259 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.435263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.435268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.445143 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.445184 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.445192 LLDP, length 82 [|LLDP] 16:50:39.445194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.445205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.445211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 035b 24f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.445214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.445217 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.445222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.445227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.445247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.445251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.445253 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.445258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.445263 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.455150 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.455193 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.455201 LLDP, length 82 [|LLDP] 16:50:39.455202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.455214 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.455221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0362 c616 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.455223 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.455227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.455230 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.455235 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.455240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.455260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.455264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.455266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.455272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.465147 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.465182 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.465190 LLDP, length 82 [|LLDP] 16:50:39.465192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.465203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.465210 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.465215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.465220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.465231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.465234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.465236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 036a 6736 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.465239 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.465242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.465246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.465251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.475140 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.475177 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.475184 LLDP, length 82 [|LLDP] 16:50:39.475186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.475197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.475203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0372 0856 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.475205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.475209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.475212 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.475217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.475222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.475232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.475235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.475238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.475243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.485139 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.485176 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.485184 LLDP, length 82 [|LLDP] 16:50:39.485185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.485197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.485202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0379 a976 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.485204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.485208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.485211 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.485216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.485221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.485232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.485235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.485237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.485243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.495142 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.495181 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.495189 LLDP, length 82 [|LLDP] 16:50:39.495191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.495202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.495208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0381 4a96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.495210 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.495216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.495221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.495232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.495235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.495237 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.495241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.495245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.495251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.505139 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.505178 LLDP, length 82 [|LLDP] 16:50:39.505180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.505192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.505199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0388 ebb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.505201 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.505204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.505208 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.505213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.505218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.505229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.505232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.505234 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.505241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.505246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.515142 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.515181 LLDP, length 82 [|LLDP] 16:50:39.515183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.515195 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.515201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.515206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.515216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.515219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.515221 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.515227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.515232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0390 8cd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.515234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.515238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.515241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.515246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.525143 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.525176 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.525184 LLDP, length 82 [|LLDP] 16:50:39.525186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.525197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.525203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0398 2df6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.525214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.525218 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.525223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.525228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.525239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.525242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.525244 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.525248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.525254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.535139 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.535178 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.535185 LLDP, length 82 [|LLDP] 16:50:39.535187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.535198 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.535204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 039f cf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.535206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.535210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.535213 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.535218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.535223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.535233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.535236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.535238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.535243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.545141 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.545179 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.545187 LLDP, length 82 [|LLDP] 16:50:39.545188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.545200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.545206 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.545211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.545216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.545226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.545229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.545231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a7 7036 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.545233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.545237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.545240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.545246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.555140 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.555176 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.555183 LLDP, length 82 [|LLDP] 16:50:39.555184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.555195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.555202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03af 1156 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.555204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.555207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.555211 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.555216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.555221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.555231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.555234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.555237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.555242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.565137 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.565167 LLDP, length 82 [|LLDP] 16:50:39.565169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.565181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.565187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b6 b276 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.565189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.565193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.565196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.565201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.565206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.565215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.565218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.565220 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.565227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.565232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.575136 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.575171 LLDP, length 82 [|LLDP] 16:50:39.575172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.575185 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.575191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03be 5396 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.575193 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.575198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.575202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.575213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.575216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.575218 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.575225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.575229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.575232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.575237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.585138 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.585190 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.585198 LLDP, length 82 [|LLDP] 16:50:39.585200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.585211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.585218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03c5 f4b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.585220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.585223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.585227 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.585232 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.585236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.585247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.585250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.585252 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.585258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.595142 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.595180 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.595189 LLDP, length 82 [|LLDP] 16:50:39.595190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.595202 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.595208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.595213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.595223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.595226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.595228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.595234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03cd 95d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.595236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.595239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.595243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.595248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.605140 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.605179 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.605187 LLDP, length 82 [|LLDP] 16:50:39.605189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.605200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.605206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03d5 36f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.605208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.605211 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.605217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.605222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.605233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.605236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.605238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.605242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.605247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.615138 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.615179 LLDP, length 82 [|LLDP] 16:50:39.615180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.615192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.615198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03dc d816 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.615201 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.615204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.615208 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.615213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.615217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.615227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.615230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.615232 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.615240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.615245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.625138 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.625178 LLDP, length 82 [|LLDP] 16:50:39.625180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.625193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.625199 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.625204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.625209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.625219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.625222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.625224 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.625232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03e4 7936 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.625234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.625238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.625241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.625246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.635139 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.635180 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.635188 LLDP, length 82 [|LLDP] 16:50:39.635190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.635202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.635209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ec 1a56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.635210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.635214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.635218 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.635223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.635227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.635238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.635241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.635243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.635249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.645136 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.645173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.645181 LLDP, length 82 [|LLDP] 16:50:39.645183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.645194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.645200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03f3 bb76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.645202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.645205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.645208 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.645213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.645218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.645228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.645231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.645233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.645239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.655136 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.655173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.655180 LLDP, length 82 [|LLDP] 16:50:39.655182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.655193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.655199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03fb 5c96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.655201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.655206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.655211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.655220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.655223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.655225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.655229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.655232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.655239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.665133 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.665169 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.665176 LLDP, length 82 [|LLDP] 16:50:39.665178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.665189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.665194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0402 fdb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.665196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.665200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.665203 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.665208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.665213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.665223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.665226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.665228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.665233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.675141 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.675192 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.675200 LLDP, length 82 [|LLDP] 16:50:39.675202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.675214 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.675220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.675227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.675240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.675243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.675245 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.675251 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 040a 9ed6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.675254 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.675257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.675261 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.675267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.685151 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.685214 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.685224 LLDP, length 82 [|LLDP] 16:50:39.685225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.685237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.685245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0412 3ff6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.685248 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.685252 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.685257 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.685263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.685275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.685279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.685281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.685285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.685292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.695143 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.695184 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.695192 LLDP, length 82 [|LLDP] 16:50:39.695194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.695206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.695213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0419 e116 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.695215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.695219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.695222 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.695228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.695233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.695245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.695248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.695250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.695256 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.705137 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.705184 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.705192 LLDP, length 82 [|LLDP] 16:50:39.705194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.705206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.705212 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.705226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.705232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.705244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.705247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.705250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0421 8236 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.705252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.705256 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.705260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.705266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.715140 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.715179 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.715187 LLDP, length 82 [|LLDP] 16:50:39.715189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.715201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.715208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0429 2356 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.715210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.715214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.715217 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.715222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.715227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.715237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.715241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.715243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.715249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.725138 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.725184 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.725192 LLDP, length 82 [|LLDP] 16:50:39.725193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.725204 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.725211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0430 c476 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.725214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.725217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.725221 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.725227 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.725232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.725243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.725246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.725248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.725254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.735137 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.735179 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.735188 LLDP, length 82 [|LLDP] 16:50:39.735189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.735201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.735208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0438 6596 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.735210 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.735215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.735220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.735231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.735234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.735236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.735240 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.735243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.735249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.745138 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.745180 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.745188 LLDP, length 82 [|LLDP] 16:50:39.745190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.745202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.745208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0440 06b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.745210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.745214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.745218 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.745223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.745228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.745238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.745242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.745244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.745250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.755145 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.755184 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.755192 LLDP, length 82 [|LLDP] 16:50:39.755194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.755206 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.755212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.755217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.755228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.755231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.755233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.755239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0447 a7d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.755241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.755245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.755249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.755254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.765135 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.765176 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.765184 LLDP, length 82 [|LLDP] 16:50:39.765185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.765197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.765203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 044f 48f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.765206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.765209 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.765214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.765219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.765229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.765232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.765235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.765239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.765244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.775134 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.775173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.775181 LLDP, length 82 [|LLDP] 16:50:39.775182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.775193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.775199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0456 ea16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.775202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.775205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.775209 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.775214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.775218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.775229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.775232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.775234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.775240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.785133 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.785172 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.785180 LLDP, length 82 [|LLDP] 16:50:39.785181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.785192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.785198 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.785203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.785208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.785218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.785221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.785224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 045e 8b36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.785226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.785230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.785233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.785239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.795133 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.795173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.795181 LLDP, length 82 [|LLDP] 16:50:39.795183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.795194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.795200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0466 2c56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.795202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.795206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.795209 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.795214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.795219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.795229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.795233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.795235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.795241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.805138 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.805183 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.805192 LLDP, length 82 [|LLDP] 16:50:39.805194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.805205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.805213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 046d cd76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.805215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.805219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.805222 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.805227 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.805232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.805243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.805247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.805249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.805255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.815138 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.815182 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.815190 LLDP, length 82 [|LLDP] 16:50:39.815192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.815203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.815210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0475 6e96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.815212 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.815218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.815222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.815233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.815236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.815238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.815242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.815246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.815252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.825133 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.825175 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.825183 LLDP, length 82 [|LLDP] 16:50:39.825185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.825196 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.825202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 047d 0fb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.825205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.825208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.825212 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.825217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.825222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.825232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.825235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.825237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.825244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.835139 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.835183 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.835192 LLDP, length 82 [|LLDP] 16:50:39.835194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.835213 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.835219 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.835225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.835236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.835240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.835242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.835248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0484 b0d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.835250 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.835254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.835258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.835264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.836179 IP6 fe80::491:59ff:fe88:e060 > ff02::2: ICMP6, router solicitation, length 16 16:50:39.845145 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.845197 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.845205 LLDP, length 82 [|LLDP] 16:50:39.845207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.845219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.845228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 048c 51f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.845231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.845234 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.845240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.845246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.845260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.845264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.845266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.845270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.845277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.855142 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.855192 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.855201 LLDP, length 82 [|LLDP] 16:50:39.855202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.855214 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.855221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0493 f316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.855224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.855228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.855231 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.855236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.855241 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.855252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.855256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.855258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.855264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.865135 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.865176 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.865184 LLDP, length 82 [|LLDP] 16:50:39.865185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.865197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.865204 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.865209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.865214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.865225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.865228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.865230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 049b 9436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.865232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.865236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.865240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.865246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.875134 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.875173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.875181 LLDP, length 82 [|LLDP] 16:50:39.875183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.875194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.875202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04a3 3556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.875203 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.875207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.875210 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.875216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.875220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.875231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.875234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.875236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.875241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.885133 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.885173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.885180 LLDP, length 82 [|LLDP] 16:50:39.885182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.885194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.885200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04aa d676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.885202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.885206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.885210 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.885215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.885220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.885230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.885233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.885235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.885241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.895131 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.895171 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.895179 LLDP, length 82 [|LLDP] 16:50:39.895180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.895192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.895199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04b2 7796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.895201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.895206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.895211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.895221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.895225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.895227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.895231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.895234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.895240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.905134 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.905178 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.905186 LLDP, length 82 [|LLDP] 16:50:39.905188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.905199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.905206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ba 18b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.905208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.905212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.905215 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.905221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.905225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.905237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.905240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.905242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.905248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.915132 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.915175 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.915184 LLDP, length 82 [|LLDP] 16:50:39.915185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.915197 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.915203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.915208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.915219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.915223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.915225 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.915230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c1 b9d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.915232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.915236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.915239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.915245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.925133 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.925171 LLDP, length 82 [|LLDP] 16:50:39.925173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.925186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.925193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c9 5af6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.925195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.925198 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.925204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.925209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.925229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.925233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.925235 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.925243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.925248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.925253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.935132 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.935190 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.935199 LLDP, length 82 [|LLDP] 16:50:39.935200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.935212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.935219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d0 fc16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.935221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.935225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.935229 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.935234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.935239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.935250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.935253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.935255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.935261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.945134 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.945179 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.945188 LLDP, length 82 [|LLDP] 16:50:39.945190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.945210 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.945218 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.945223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.945228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.945239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.945242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.945245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d8 9d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.945247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.945251 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.945254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.945260 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.955132 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.955177 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.955185 LLDP, length 82 [|LLDP] 16:50:39.955187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.955198 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.955204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e0 3e56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.955206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.955210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.955213 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.955219 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.955224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.955235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.955238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.955240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.955246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.965130 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.965171 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.965179 LLDP, length 82 [|LLDP] 16:50:39.965181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.965192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.965198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e7 df76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.965200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.965204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.965208 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.965213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.965217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.965228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.965231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.965233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.965239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.975129 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.975172 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.975180 LLDP, length 82 [|LLDP] 16:50:39.975181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.975193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.975199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ef 8096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.975201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.975206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.975211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.975222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.975225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.975228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.975231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.975235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.975240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.985127 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.985166 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.985174 LLDP, length 82 [|LLDP] 16:50:39.985176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.985188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.985195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f7 21b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.985197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.985200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.985204 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.985209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.985214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.985225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.985228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.985230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.985236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.995134 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.995179 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.995187 LLDP, length 82 [|LLDP] 16:50:39.995189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.995201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.995206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.995212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.995223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.995226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.995228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.995234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04fe c2d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.995236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.995239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.995242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.995248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.005125 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.005162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.005170 LLDP, length 82 [|LLDP] 16:50:40.005171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.005183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.005189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0506 63f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.005191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.005194 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.005200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.005204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.005214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.005217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.005219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.005223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.005229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.015132 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.015175 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.015183 LLDP, length 82 [|LLDP] 16:50:40.015185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.015197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.015203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 050e 0516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.015205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.015209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.015212 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.015217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.015222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.015232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.015235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.015237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.015243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.025131 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.025178 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.025186 LLDP, length 82 [|LLDP] 16:50:40.025188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.025199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.025206 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.025211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.025216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.025227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.025230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.025232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0515 a636 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.025234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.025238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.025241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.025247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.035128 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.035171 LLDP, length 82 [|LLDP] 16:50:40.035172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.035185 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.035192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 051d 4756 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.035194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.035198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.035201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.035206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.035211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.035221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.035224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.035226 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.035234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.035240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.045127 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.045168 LLDP, length 82 [|LLDP] 16:50:40.045170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.045182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.045189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0524 e876 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.045191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.045195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.045198 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.045203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.045216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.045228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.045231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.045233 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.045240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.045246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.055127 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.055166 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.055174 LLDP, length 82 [|LLDP] 16:50:40.055176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.055187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.055193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 052c 8996 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.055195 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.055200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.055205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.055216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.055219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.055221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.055225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.055229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.055234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.065129 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.065170 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.065179 LLDP, length 82 [|LLDP] 16:50:40.065180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.065191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.065197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0534 2ab6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.065200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.065203 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.065207 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.065212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.065217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.065228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.065231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.065233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.065239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.075134 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.075180 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.075188 LLDP, length 82 [|LLDP] 16:50:40.075190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.075201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.075207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.075213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.075223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.075227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.075229 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.075234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 053b cbd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.075236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.075241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.075244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.075250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.085128 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.085167 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.085176 LLDP, length 82 [|LLDP] 16:50:40.085178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.085189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.085195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0543 6cf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.085198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.085201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.085207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.085211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.085222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.085225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.085227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.085230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.085237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.095123 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.095155 LLDP, length 82 [|LLDP] 16:50:40.095157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.095169 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.095175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 054b 0e16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.095178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.095181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.095185 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.095190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.095194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.095204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.095207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.095209 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.095215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.095221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.105121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.105155 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.105161 LLDP, length 82 [|LLDP] 16:50:40.105163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.105174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.105180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.105185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.105190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.105199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.105202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.105205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0552 af36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.105207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.105210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.105214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.105219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.115120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.115154 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.115162 LLDP, length 82 [|LLDP] 16:50:40.115164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.115175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.115181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 055a 5056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.115183 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.115187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.115190 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.115195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.115199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.115209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.115212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.115214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.115220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.125121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.125150 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.125158 LLDP, length 82 [|LLDP] 16:50:40.125160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.125171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.125177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0561 f176 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.125179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.125183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.125186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.125191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.125196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.125206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.125209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.125211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.125216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.135135 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.135181 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.135190 LLDP, length 82 [|LLDP] 16:50:40.135192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.135203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.135210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0569 9296 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.135212 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.135217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.135222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.135232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.135236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.135238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.135242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.135246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.135251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.145129 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.145173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.145181 LLDP, length 82 [|LLDP] 16:50:40.145183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.145194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.145208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0571 33b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.145211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.145215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.145219 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.145224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.145229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.145240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.145243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.145246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.145251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.155131 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.155169 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.155177 LLDP, length 82 [|LLDP] 16:50:40.155178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.155190 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.155196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.155201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.155212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.155215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.155217 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.155222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0578 d4d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.155224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.155228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.155232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.155238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.165128 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.165173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.165182 LLDP, length 82 [|LLDP] 16:50:40.165183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.165195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.165201 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0580 75f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.165204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.165207 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.165213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.165217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.165228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.165232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.165234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.165238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.165244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.175125 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.175164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.175172 LLDP, length 82 [|LLDP] 16:50:40.175173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.175184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.175191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0588 1716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.175193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.175196 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.175200 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.175205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.175210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.175220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.175223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.175225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.175231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.185124 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.185164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.185172 LLDP, length 82 [|LLDP] 16:50:40.185174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.185185 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.185192 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.185197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.185202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.185212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.185215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.185218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 058f b836 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.185220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.185223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.185227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.185233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.195125 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.195164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.195172 LLDP, length 82 [|LLDP] 16:50:40.195173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.195184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.195191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0597 5956 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.195193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.195197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.195200 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.195206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.195211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.195221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.195224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.195227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.195233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.205123 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.205162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.205169 LLDP, length 82 [|LLDP] 16:50:40.205171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.205182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.205189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 059e fa76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.205191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.205194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.205198 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.205203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.205208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.205218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.205221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.205223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.205229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.215125 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.215159 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.215167 LLDP, length 82 [|LLDP] 16:50:40.215168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.215180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.215186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a6 9b96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.215188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.215193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.215198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.215209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.215212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.215214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.215218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.215221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.215227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.225125 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.225164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.225173 LLDP, length 82 [|LLDP] 16:50:40.225174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.225186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.225192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ae 3cb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.225194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.225198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.225201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.225207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.225211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.225222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.225226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.225228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.225233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.235130 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.235180 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.235188 LLDP, length 82 [|LLDP] 16:50:40.235190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.235201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.235207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.235212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.235224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.235227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.235229 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.235235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05b5 ddd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.235237 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.235241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.235244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.235250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.245124 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.245164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.245173 LLDP, length 82 [|LLDP] 16:50:40.245174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.245186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.245192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05bd 7ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.245194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.245198 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.245203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.245208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.245227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.245231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.245233 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.245237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.245243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.255123 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.255165 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.255173 LLDP, length 82 [|LLDP] 16:50:40.255174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.255186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.255193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05c5 2016 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.255195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.255199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.255202 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.255207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.255212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.255223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.255226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.255229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.255235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.265125 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.265168 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.265176 LLDP, length 82 [|LLDP] 16:50:40.265178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.265190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.265196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.265201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.265206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.265218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.265221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.265223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05cc c136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.265225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.265228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.265232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.265238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.275124 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.275167 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.275175 LLDP, length 82 [|LLDP] 16:50:40.275177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.275188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.275195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05d4 6256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.275197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.275201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.275204 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.275210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.275215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.275225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.275228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.275230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.275236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.285122 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.285156 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.285164 LLDP, length 82 [|LLDP] 16:50:40.285165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.285177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.285184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05dc 0376 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.285186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.285190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.285193 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.285199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.285204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.285214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.285217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.285219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.285225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.295121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.295159 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.295167 LLDP, length 82 [|LLDP] 16:50:40.295169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.295180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.295186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05e3 a496 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.295188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.295193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.295198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.295208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.295211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.295214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.295217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.295221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.295227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.305121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.305160 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.305168 LLDP, length 82 [|LLDP] 16:50:40.305169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.305180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.305187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05eb 45b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.305189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.305193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.305197 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.305202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.305206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.305216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.305219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.305221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.305227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.315120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.315160 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.315167 LLDP, length 82 [|LLDP] 16:50:40.315169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.315180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.315186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.315192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.315202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.315205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.315207 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.315213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05f2 e6d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.315214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.315218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.315222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.315227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.325121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.325163 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.325171 LLDP, length 82 [|LLDP] 16:50:40.325173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.325184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.325190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05fa 87f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.325193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.325196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.325202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.325206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.325218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.325221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.325223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.325227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.325233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.335124 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.335161 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.335169 LLDP, length 82 [|LLDP] 16:50:40.335171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.335182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.335189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0602 2916 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.335192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.335195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.335199 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.335204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.335209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.335220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.335223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.335225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.335231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.345121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.345162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.345170 LLDP, length 82 [|LLDP] 16:50:40.345172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.345183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.345189 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.345195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.345200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.345210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.345213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.345215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0609 ca36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.345217 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.345221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.345224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.345230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.355124 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.355171 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.355180 LLDP, length 82 [|LLDP] 16:50:40.355181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.355193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.355200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0611 6b56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.355202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.355206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.355210 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.355215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.355220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.355232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.355235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.355237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.355243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.365121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.365167 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.365175 LLDP, length 82 [|LLDP] 16:50:40.365177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.365188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.365195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0619 0c76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.365197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.365201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.365204 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.365218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.365223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.365236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.365239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.365241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.365247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.375120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.375165 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.375173 LLDP, length 82 [|LLDP] 16:50:40.375174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.375186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.375193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0620 ad96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.375195 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.375200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.375205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.375216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.375219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.375221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.375225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.375229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.375234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.385122 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.385156 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.385165 LLDP, length 82 [|LLDP] 16:50:40.385166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.385177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.385184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0628 4eb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.385186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.385190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.385193 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.385198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.385203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.385213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.385216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.385218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.385224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.395122 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.395161 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.395169 LLDP, length 82 [|LLDP] 16:50:40.395170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.395182 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.395188 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.395193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.395203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.395206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.395208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.395213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 062f efd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.395215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.395219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.395222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.395228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.405121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.405159 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.405167 LLDP, length 82 [|LLDP] 16:50:40.405168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.405179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.405186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0637 90f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.405188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.405191 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.405196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.405201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.405224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.405228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.405230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.405234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.405240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.415120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.415160 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.415168 LLDP, length 82 [|LLDP] 16:50:40.415169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.415180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.415187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 063f 3216 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.415189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.415192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.415196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.415201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.415206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.415216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.415219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.415221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.415227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.425120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.425161 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.425170 LLDP, length 82 [|LLDP] 16:50:40.425171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.425183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.425188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.425193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.425198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.425209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.425212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.425214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0646 d336 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.425216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.425220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.425224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.425229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.435120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.435162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.435171 LLDP, length 82 [|LLDP] 16:50:40.435173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.435184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.435191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 064e 7456 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.435193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.435197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.435200 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.435205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.435210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.435221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.435224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.435226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.435232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.445122 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.445157 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.445165 LLDP, length 82 [|LLDP] 16:50:40.445167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.445178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.445185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0656 1576 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.445187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.445191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.445194 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.445199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.445204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.445215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.445218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.445220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.445226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.455118 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.455162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.455170 LLDP, length 82 [|LLDP] 16:50:40.455172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.455183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.455190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 065d b696 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.455192 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.455197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.455202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.455213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.455216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.455218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.455222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.455225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.455231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.465118 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.465158 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.465166 LLDP, length 82 [|LLDP] 16:50:40.465167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.465178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.465185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0665 57b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.465187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.465191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.465194 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.465200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.465204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.465225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.465228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.465231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.465237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.475121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.475165 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.475173 LLDP, length 82 [|LLDP] 16:50:40.475175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.475186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.475192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.475198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.475208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.475212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.475214 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.475219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 066c f8d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.475221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.475225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.475228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.475233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.485120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.485163 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.485171 LLDP, length 82 [|LLDP] 16:50:40.485172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.485184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.485190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0674 99f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.485192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.485196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.485201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.485207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.485218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.485221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.485223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.485227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.485233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.495122 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.495159 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.495167 LLDP, length 82 [|LLDP] 16:50:40.495168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.495179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.495186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 067c 3b16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.495188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.495191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.495195 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.495200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.495205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.495215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.495218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.495220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.495226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.505117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.505157 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.505165 LLDP, length 82 [|LLDP] 16:50:40.505167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.505180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.505186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.505191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.505196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.505207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.505210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.505212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0683 dc36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.505214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.505218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.505222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.505228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.515117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.515151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.515158 LLDP, length 82 [|LLDP] 16:50:40.515160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.515171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.515177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 068b 7d56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.515179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.515183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.515186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.515191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.515195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.515206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.515209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.515212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.515217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.525118 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.525159 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.525167 LLDP, length 82 [|LLDP] 16:50:40.525168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.525179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.525186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0693 1e76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.525188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.525191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.525195 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.525201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.525205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.525215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.525218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.525221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.525226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.535117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.535160 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.535168 LLDP, length 82 [|LLDP] 16:50:40.535169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.535181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.535187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 069a bf96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.535189 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.535194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.535199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.535210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.535213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.535215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.535219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.535223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.535229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.545116 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.545157 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.545165 LLDP, length 82 [|LLDP] 16:50:40.545167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.545178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.545185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a2 60b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.545187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.545191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.545194 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.545199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.545204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.545215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.545218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.545220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.545226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.555121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.555162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.555170 LLDP, length 82 [|LLDP] 16:50:40.555171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.555183 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.555189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.555194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.555205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.555208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.555210 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.555215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06aa 01d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.555218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.555222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.555225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.555231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.565118 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.565158 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.565165 LLDP, length 82 [|LLDP] 16:50:40.565167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.565179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.565185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b1 a2f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.565187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.565191 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.565196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.565201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.565211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.565214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.565216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.565220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.565226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.575121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.575162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.575170 LLDP, length 82 [|LLDP] 16:50:40.575172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.575183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.575190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b9 4416 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.575192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.575196 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.575199 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.575204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.575209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.575220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.575223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.575225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.575231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.585120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.585173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.585182 LLDP, length 82 [|LLDP] 16:50:40.585183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.585196 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.585203 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.585208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.585212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.585224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.585227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.585229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c0 e536 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.585231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.585235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.585238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.585244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.595117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.595158 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.595167 LLDP, length 82 [|LLDP] 16:50:40.595168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.595180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.595187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c8 8656 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.595189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.595193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.595196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.595201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.595206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.595216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.595219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.595221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.595227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.605115 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.605156 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.605164 LLDP, length 82 [|LLDP] 16:50:40.605166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.605177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.605183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d0 2776 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.605185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.605189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.605192 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.605198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.605202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.605213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.605216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.605218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.605224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.615117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.615149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.615157 LLDP, length 82 [|LLDP] 16:50:40.615158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.615170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.615176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d7 c896 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.615179 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.615184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.615189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.615200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.615203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.615205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.615209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.615213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.615218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.625114 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.625153 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.625160 LLDP, length 82 [|LLDP] 16:50:40.625162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.625173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.625179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06df 69b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.625182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.625185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.625188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.625194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.625198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.625209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.625212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.625214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.625219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.635114 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.635156 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.635164 LLDP, length 82 [|LLDP] 16:50:40.635165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.635177 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.635183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.635189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.635200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.635203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.635205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.635210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e7 0ad6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.635212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.635216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.635219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.635225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.645116 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.645157 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.645165 LLDP, length 82 [|LLDP] 16:50:40.645166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.645178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.645184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ee abf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.645186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.645190 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.645195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.645200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.645211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.645214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.645216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.645220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.645226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.655113 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.655153 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.655162 LLDP, length 82 [|LLDP] 16:50:40.655163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.655176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.655183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f6 4d16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.655185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.655188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.655192 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.655197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.655201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.655212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.655215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.655217 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.655223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.665113 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.665154 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.665163 LLDP, length 82 [|LLDP] 16:50:40.665165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.665176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.665182 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.665187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.665192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.665202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.665206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.665208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06fd ee36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.665210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.665213 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.665217 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.665223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.675119 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.675153 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.675161 LLDP, length 82 [|LLDP] 16:50:40.675162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.675174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.675181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0705 8f56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.675183 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.675186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.675190 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.675195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.675199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.675210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.675213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.675215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.675221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.685121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.685174 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.685182 LLDP, length 82 [|LLDP] 16:50:40.685184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.685195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.685203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 070d 3076 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.685205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.685209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.685213 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.685218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.685231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.685244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.685247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.685249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.685255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.695117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.695164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.695173 LLDP, length 82 [|LLDP] 16:50:40.695174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.695186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.695193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0714 d196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.695196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.695201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.695206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.695218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.695222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.695224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.695228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.695231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.695237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.705113 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.705156 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.705179 LLDP, length 82 [|LLDP] 16:50:40.705181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.705195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.705202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 071c 72b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.705205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.705208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.705212 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.705217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.705222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.705233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.705237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.705239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.705245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.715123 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.715170 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.715179 LLDP, length 82 [|LLDP] 16:50:40.715180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.715192 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.715199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.715206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.715219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.715223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.715225 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.715232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0724 13d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.715234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.715238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.715242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.715248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.725117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.725163 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.725171 LLDP, length 82 [|LLDP] 16:50:40.725173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.725184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.725192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 072b b4f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.725195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.725198 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.725204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.725209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.725221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.725225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.725227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.725231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.725237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.735117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.735155 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.735163 LLDP, length 82 [|LLDP] 16:50:40.735165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.735176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.735184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0733 5616 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.735186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.735189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.735193 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.735198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.735203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.735214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.735217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.735219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.735225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.745112 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.745157 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.745164 LLDP, length 82 [|LLDP] 16:50:40.745166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.745177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.745184 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.745189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.745194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.745206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.745209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.745211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 073a f736 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.745213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.745217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.745220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.745226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.755122 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.755169 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.755177 LLDP, length 82 [|LLDP] 16:50:40.755179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.755190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.755198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0742 9856 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.755200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.755204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.755207 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.755212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.755217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.755229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.755232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.755235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.755241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.765116 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.765164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.765172 LLDP, length 82 [|LLDP] 16:50:40.765174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.765186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.765192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 074a 3976 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.765195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.765199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.765202 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.765207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.765212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.765223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.765226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.765228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.765234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.775121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.775172 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.775181 LLDP, length 82 [|LLDP] 16:50:40.775183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.775194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.775202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0751 da96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.775205 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.775210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.775215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.775226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.775229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.775231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.775235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.775239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.775245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.785114 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.785165 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.785173 LLDP, length 82 [|LLDP] 16:50:40.785175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.785187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.785195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0759 7bb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.785197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.785201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.785205 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.785210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.785215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.785227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.785230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.785232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.785238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.795116 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.795162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.795170 LLDP, length 82 [|LLDP] 16:50:40.795171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.795183 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.795189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.795194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.795206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.795210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.795212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.795218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0761 1cd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.795220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.795224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.795228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.795234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.805120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.805168 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.805176 LLDP, length 82 [|LLDP] 16:50:40.805177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.805189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.805197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0768 bdf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.805199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.805203 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.805209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.805214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.805226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.805229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.805231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.805235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.805242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.815113 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.815159 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.815168 LLDP, length 82 [|LLDP] 16:50:40.815169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.815181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.815188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0770 5f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.815190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.815194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.815198 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.815203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.815208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.815218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.815222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.815224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.815230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.825110 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.825153 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.825162 LLDP, length 82 [|LLDP] 16:50:40.825164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.825176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.825183 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.825188 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.825192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.825203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.825206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.825209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0778 0036 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.825211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.825215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.825219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.825225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.835109 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.835151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.835158 LLDP, length 82 [|LLDP] 16:50:40.835160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.835171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.835178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 077f a156 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.835180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.835184 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.835187 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.835192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.835197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.835208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.835211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.835213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.835219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.845111 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.845150 LLDP, length 82 [|LLDP] 16:50:40.845152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.845164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.845171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0787 4276 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.845173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.845177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.845180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.845185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.845191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.845202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.845205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.845207 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.845215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.845220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.855111 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.855156 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.855164 LLDP, length 82 [|LLDP] 16:50:40.855165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.855177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.855184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 078e e396 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.855186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.855191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.855196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.855208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.855211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.855213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.855217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.855220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.855226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.865109 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.865155 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.865164 LLDP, length 82 [|LLDP] 16:50:40.865165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.865177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.865185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0796 84b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.865187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.865191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.865194 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.865200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.865205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.865225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.865229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.865231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.865237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.875114 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.875158 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.875166 LLDP, length 82 [|LLDP] 16:50:40.875168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.875179 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.875185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.875190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.875201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.875204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.875206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.875211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 079e 25d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.875213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.875217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.875221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.875226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.885109 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.885151 LLDP, length 82 [|LLDP] 16:50:40.885153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.885165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.885172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07a5 c6f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.885175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.885178 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.885184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.885189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.885200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.885203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.885213 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.885221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.885225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.885231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.895114 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.895157 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.895165 LLDP, length 82 [|LLDP] 16:50:40.895167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.895178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.895186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ad 6816 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.895188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.895192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.895196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.895202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.895207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.895218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.895221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.895224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.895230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.905108 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.905152 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.905160 LLDP, length 82 [|LLDP] 16:50:40.905161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.905173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.905180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.905186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.905190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.905202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.905214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.905217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07b5 0936 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.905219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.905224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.905227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.905233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.915107 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.915149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.915157 LLDP, length 82 [|LLDP] 16:50:40.915158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.915170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.915176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07bc aa56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.915178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.915182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.915186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.915191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.915196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.915207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.915210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.915212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.915218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.925106 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.925151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.925159 LLDP, length 82 [|LLDP] 16:50:40.925161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.925172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.925179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07c4 4b76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.925182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.925185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.925189 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.925194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.925199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.925210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.925213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.925215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.925221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.935108 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.935149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.935157 LLDP, length 82 [|LLDP] 16:50:40.935158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.935170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.935177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07cb ec96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.935179 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.935184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.935189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.935200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.935204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.935206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.935210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.935213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.935219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.945108 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.945153 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.945160 LLDP, length 82 [|LLDP] 16:50:40.945162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.945174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.945181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07d3 8db6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.945183 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.945187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.945190 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.945196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.945200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.945211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.945214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.945216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.945222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.955108 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.955153 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.955161 LLDP, length 82 [|LLDP] 16:50:40.955162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.955174 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.955180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.955186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.955198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.955201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.955203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.955208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07db 2ed6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.955211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.955214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.955218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.955224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.965109 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.965155 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.965163 LLDP, length 82 [|LLDP] 16:50:40.965164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.965175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.965182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07e2 cff6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.965185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.965188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.965194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.965199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.965210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.965214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.965216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.965220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.965225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.975106 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.975150 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.975158 LLDP, length 82 [|LLDP] 16:50:40.975160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.975172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.975179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ea 7116 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.975181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.975184 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.975188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.975193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.975198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.975209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.975213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.975215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.975221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.985106 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.985149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.985157 LLDP, length 82 [|LLDP] 16:50:40.985159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.985170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.985177 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.985182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.985187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.985198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.985201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.985203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f2 1236 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.985205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.985209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.985213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.985219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.995112 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.995156 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.995164 LLDP, length 82 [|LLDP] 16:50:40.995165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.995177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.995184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f9 b356 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.995186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.995190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.995193 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.995198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.995203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.995215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.995218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.995220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.995226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.005106 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.005151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.005159 LLDP, length 82 [|LLDP] 16:50:41.005160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.005172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.005179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0801 5476 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.005181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.005185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.005188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.005194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.005198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.005219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.005222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.005224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.005230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.015106 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.015149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.015157 LLDP, length 82 [|LLDP] 16:50:41.015158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.015170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.015177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0808 f596 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.015180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.015185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.015190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.015201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.015204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.015206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.015211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.015214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.015220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.025111 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.025159 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.025168 LLDP, length 82 [|LLDP] 16:50:41.025170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.025181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.025189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0810 96b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.025191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.025195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.025199 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.025204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.025209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.025221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.025224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.025226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.025232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.035107 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.035151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.035160 LLDP, length 82 [|LLDP] 16:50:41.035161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.035173 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.035179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.035185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.035195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.035199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.035201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.035207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0818 37d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.035209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.035213 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.035216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.035222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.045104 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.045147 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.045155 LLDP, length 82 [|LLDP] 16:50:41.045157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.045169 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.045175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 081f d8f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.045177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.045181 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.045186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.045191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.045201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.045205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.045207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.045210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.045216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.055109 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.055154 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.055162 LLDP, length 82 [|LLDP] 16:50:41.055163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.055175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.055182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0827 7a16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.055184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.055188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.055191 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.055197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.055202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.055214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.055217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.055219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.055225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.065107 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.065151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.065158 LLDP, length 82 [|LLDP] 16:50:41.065160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.065171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.065178 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.065184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.065189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.065200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.065203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.065205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 082f 1b36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.065207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.065211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.065214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.065220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.075108 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.075150 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.075158 LLDP, length 82 [|LLDP] 16:50:41.075160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.075171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.075178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0836 bc56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.075180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.075184 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.075187 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.075192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.075197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.075208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.075211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.075213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.075219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.085112 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.085165 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.085174 LLDP, length 82 [|LLDP] 16:50:41.085176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.085188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.085195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 083e 5d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.085198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.085202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.085205 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.085211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.085216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.085229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.085232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.085234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.085240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.095107 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.095155 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.095163 LLDP, length 82 [|LLDP] 16:50:41.095165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.095177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.095184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0845 fe96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.095186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.095191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.095196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.095207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.095210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.095213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.095217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.095220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.095226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.105106 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.105152 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.105160 LLDP, length 82 [|LLDP] 16:50:41.105162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.105173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.105181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 084d 9fb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.105183 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.105187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.105190 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.105196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.105201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.105222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.105226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.105228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.105234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.115110 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.115157 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.115165 LLDP, length 82 [|LLDP] 16:50:41.115166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.115178 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.115184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.115190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.115202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.115206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.115208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.115214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0855 40d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.115216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.115220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.115223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.115229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.125105 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.125149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.125158 LLDP, length 82 [|LLDP] 16:50:41.125159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.125171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.125177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 085c e1f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.125180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.125183 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.125188 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.125193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.125204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.125207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.125209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.125213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.125219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.135105 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.135144 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.135151 LLDP, length 82 [|LLDP] 16:50:41.135153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.135165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.135171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0864 8316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.135173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.135177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.135180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.135185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.135190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.135201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.135204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.135206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.135212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.145101 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.145142 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.145150 LLDP, length 82 [|LLDP] 16:50:41.145152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.145163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.145169 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.145175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.145180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.145191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.145194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.145197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 086c 2436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.145199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.145203 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.145206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.145212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.155101 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.155143 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.155150 LLDP, length 82 [|LLDP] 16:50:41.155152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.155163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.155170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0873 c556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.155172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.155176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.155179 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.155184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.155189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.155200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.155203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.155205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.155211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.165101 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.165148 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.165156 LLDP, length 82 [|LLDP] 16:50:41.165158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.165169 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.165176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 087b 6676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.165179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.165182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.165186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.165191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.165197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.165208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.165211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.165213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.165220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.175102 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.175145 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.175153 LLDP, length 82 [|LLDP] 16:50:41.175155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.175166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.175173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0883 0796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.175174 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.175180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.175185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.175196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.175199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.175201 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.175205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.175209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.175214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.185103 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.185146 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.185154 LLDP, length 82 [|LLDP] 16:50:41.185155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.185167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.185173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 088a a8b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.185176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.185179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.185183 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.185188 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.185193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.185204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.185207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.185209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.185215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.195106 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.195149 LLDP, length 82 [|LLDP] 16:50:41.195151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.195163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.195169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.195174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.195184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.195187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.195190 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.195196 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.195202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0892 49d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.195204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.195207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.195211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.195217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.205103 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.205146 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.205154 LLDP, length 82 [|LLDP] 16:50:41.205156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.205168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.205174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0899 eaf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.205177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.205181 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.205186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.205191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.205201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.205204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.205206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.205210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.205225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.215104 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.215147 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.215156 LLDP, length 82 [|LLDP] 16:50:41.215157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.215169 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.215176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a1 8c16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.215178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.215182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.215185 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.215190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.215194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.215205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.215208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.215210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.215216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.225100 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.225147 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.225155 LLDP, length 82 [|LLDP] 16:50:41.225156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.225168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.225175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.225180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.225185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.225196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.225199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.225202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a9 2d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.225204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.225217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.225221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.225227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.235098 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.235138 LLDP, length 82 [|LLDP] 16:50:41.235140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.235152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.235158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b0 ce56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.235160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.235164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.235167 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.235172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.235177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.235188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.235191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.235193 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.235200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.235205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.245098 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.245138 LLDP, length 82 [|LLDP] 16:50:41.245140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.245153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.245159 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b8 6f76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.245161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.245165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.245168 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.245173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.245178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.245189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.245192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.245194 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.245201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.245207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.255097 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.255136 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.255144 LLDP, length 82 [|LLDP] 16:50:41.255145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.255157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.255163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c0 1096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.255165 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.255171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.255176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.255186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.255189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.255191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.255195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.255198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.255204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.265099 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.265141 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.265148 LLDP, length 82 [|LLDP] 16:50:41.265150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.265162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.265168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c7 b1b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.265171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.265174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.265178 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.265183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.265188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.265198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.265201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.265204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.265210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.275098 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.275139 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.275147 LLDP, length 82 [|LLDP] 16:50:41.275149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.275160 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.275166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.275171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.275181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.275185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.275187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.275192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08cf 52d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.275194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.275198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.275201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.275208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.285100 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.285144 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.285153 LLDP, length 82 [|LLDP] 16:50:41.285155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.285166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.285174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d6 f3f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.285176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.285179 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.285185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.285190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.285201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.285204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.285206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.285210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.285216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.295099 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.295142 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.295150 LLDP, length 82 [|LLDP] 16:50:41.295152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.295164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.295171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08de 9516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.295173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.295177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.295180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.295186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.295191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.295202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.295205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.295207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.295214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.305100 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.305138 LLDP, length 82 [|LLDP] 16:50:41.305139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.305152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.305158 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.305163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.305168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.305179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.305182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.305184 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.305191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e6 3636 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.305193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.305197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.305201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.305206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.315098 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.315141 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.315149 LLDP, length 82 [|LLDP] 16:50:41.315150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.315162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.315169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08ed d756 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.315171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.315175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.315178 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.315183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.315189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.315200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.315203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.315206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.315212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.325100 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.325151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.325160 LLDP, length 82 [|LLDP] 16:50:41.325162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.325173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.325180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08f5 7876 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.325183 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.325186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.325190 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.325195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.325200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.325212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.325215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.325218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.325224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.335111 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.335149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.335157 LLDP, length 82 [|LLDP] 16:50:41.335158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.335170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.335177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08fd 1996 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.335179 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.335184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.335189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.335200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.335203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.335205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.335209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.335213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.335219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.345098 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.345139 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.345147 LLDP, length 82 [|LLDP] 16:50:41.345148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.345160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.345166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0904 bab6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.345168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.345172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.345175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.345181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.345186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.345197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.345199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.345202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.345207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.355097 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.355138 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.355146 LLDP, length 82 [|LLDP] 16:50:41.355147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.355159 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.355164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.355170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.355180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.355183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.355186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.355191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 090c 5bd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.355194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.355197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.355201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.355207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.365098 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.365133 LLDP, length 82 [|LLDP] 16:50:41.365135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.365147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.365153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0913 fcf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.365156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.365159 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.365164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.365169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.365180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.365183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.365185 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.365192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.365196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.365202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.375100 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.375151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.375159 LLDP, length 82 [|LLDP] 16:50:41.375160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.375172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.375179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 091b 9e16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.375181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.375185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.375188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.375193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.375199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.375211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.375214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.375217 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.375222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.385099 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.385141 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.385149 LLDP, length 82 [|LLDP] 16:50:41.385151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.385162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.385168 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.385174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.385179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.385189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.385192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.385195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0923 3f36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.385197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.385201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.385204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.385210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.395101 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.395142 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.395150 LLDP, length 82 [|LLDP] 16:50:41.395152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.395163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.395170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 092a e056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.395172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.395175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.395179 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.395184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.395189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.395200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.395203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.395205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.395211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.405096 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.405138 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.405146 LLDP, length 82 [|LLDP] 16:50:41.405147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.405159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.405166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0932 8176 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.405168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.405172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.405176 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.405182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.405186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.405209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.405212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.405214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.405221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.415101 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.415144 LLDP, length 82 [|LLDP] 16:50:41.415146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.415159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.415165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 093a 2296 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.415167 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.415173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.415178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.415189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.415192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.415194 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.415202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.415206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.415210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.415215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.425097 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.425136 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.425144 LLDP, length 82 [|LLDP] 16:50:41.425146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.425158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.425174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0941 c3b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.425176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.425180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.425184 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.425189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.425194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.425205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.425208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.425210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.425216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.435102 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.435146 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.435155 LLDP, length 82 [|LLDP] 16:50:41.435157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.435168 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.435174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.435179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.435189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.435192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.435194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.435200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0949 64d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.435202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.435206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.435209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.435215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.445095 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.445137 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.445145 LLDP, length 82 [|LLDP] 16:50:41.445146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.445158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.445164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0951 05f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.445167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.445170 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.445176 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.445180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.445191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.445194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.445196 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.445200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.445206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.455096 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.455139 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.455147 LLDP, length 82 [|LLDP] 16:50:41.455148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.455159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.455166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0958 a716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.455168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.455172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.455176 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.455181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.455186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.455197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.455200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.455202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.455208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.465094 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.465135 LLDP, length 82 [|LLDP] 16:50:41.465137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.465150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.465156 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.465161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.465166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.465176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.465180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.465182 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.465189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0960 4836 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.465191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.465195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.465198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.465204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.475095 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.475137 LLDP, length 82 [|LLDP] 16:50:41.475139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.475152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.475159 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0967 e956 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.475161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.475164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.475168 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.475173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.475178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.475190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.475193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.475195 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.475202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.475207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.485096 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.485138 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.485146 LLDP, length 82 [|LLDP] 16:50:41.485148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.485159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.485166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 096f 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.485168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.485172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.485175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.485181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.485186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.485197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.485200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.485203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.485208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.495094 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.495133 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.495141 LLDP, length 82 [|LLDP] 16:50:41.495143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.495154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.495161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0977 2b96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.495163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.495168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.495173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.495183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.495186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.495189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.495192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.495196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.495202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.505094 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.505136 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.505144 LLDP, length 82 [|LLDP] 16:50:41.505145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.505156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.505163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 097e ccb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.505165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.505169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.505173 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.505178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.505183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.505193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.505196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.505199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.505204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.515099 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.515142 LLDP, length 82 [|LLDP] 16:50:41.515143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.515156 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.515162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.515168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.515179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.515183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.515185 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.515192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.515198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0986 6dd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.515200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.515204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.515207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.515213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.525093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.525135 LLDP, length 82 [|LLDP] 16:50:41.525137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.525149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.525156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 098e 0ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.525159 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.525162 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.525167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.525172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.525183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.525186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.525189 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.525195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.525208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.525214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.535099 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.535143 LLDP, length 82 [|LLDP] 16:50:41.535145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.535158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.535164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0995 b016 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.535167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.535170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.535174 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.535179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.535184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.535195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.535198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.535200 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.535207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.535212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.545093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.545135 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.545143 LLDP, length 82 [|LLDP] 16:50:41.545144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.545156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.545170 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.545176 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.545181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.545192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.545195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.545197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 099d 5136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.545199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.545203 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.545207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.545212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.555093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.555135 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.555142 LLDP, length 82 [|LLDP] 16:50:41.555144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.555155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.555162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09a4 f256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.555164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.555168 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.555171 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.555176 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.555181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.555191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.555194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.555196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.555202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.565092 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.565131 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.565138 LLDP, length 82 [|LLDP] 16:50:41.565140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.565151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.565170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ac 9376 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.565173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.565178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.565181 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.565187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.565192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.565202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.565205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.565207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.565213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.575105 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.575155 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.575163 LLDP, length 82 [|LLDP] 16:50:41.575165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.575177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.575185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09b4 3496 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.575188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.575195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.575200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.575214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.575218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.575220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.575224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.575228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.575235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.585100 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.585154 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.585163 LLDP, length 82 [|LLDP] 16:50:41.585165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.585176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.585184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09bb d5b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.585186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.585190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.585193 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.585199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.585204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.585218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.585221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.585223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.585230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.595096 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.595137 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.595145 LLDP, length 82 [|LLDP] 16:50:41.595147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.595158 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.595164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.595170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.595181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.595185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.595187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.595193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09c3 76d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.595195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.595199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.595202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.595208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.605096 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.605140 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.605148 LLDP, length 82 [|LLDP] 16:50:41.605149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.605160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.605167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09cb 17f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.605169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.605173 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.605178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.605184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.605195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.605198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.605200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.605204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.605210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.615093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.615137 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.615145 LLDP, length 82 [|LLDP] 16:50:41.615147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.615159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.615166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09d2 b916 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.615168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.615172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.615175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.615180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.615185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.615196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.615199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.615201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.615207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.625095 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.625137 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.625145 LLDP, length 82 [|LLDP] 16:50:41.625147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.625158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.625164 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.625170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.625176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.625187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.625191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.625193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09da 5a36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.625195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.625199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.625203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.625219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.635093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.635139 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.635147 LLDP, length 82 [|LLDP] 16:50:41.635149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.635160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.635167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e1 fb56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.635170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.635173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.635177 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.635182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.635188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.635199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.635202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.635204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.635210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.645093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.645138 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.645147 LLDP, length 82 [|LLDP] 16:50:41.645148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.645161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.645168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e9 9c76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.645170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.645174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.645177 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.645183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.645188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.645199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.645211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.645213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.645220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.655096 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.655141 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.655149 LLDP, length 82 [|LLDP] 16:50:41.655151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.655162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.655170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f1 3d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.655172 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.655177 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.655183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.655193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.655196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.655198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.655202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.655206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.655212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.665093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.665137 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.665145 LLDP, length 82 [|LLDP] 16:50:41.665147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.665159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.665166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f8 deb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.665168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.665171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.665175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.665180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.665185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.665196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.665199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.665202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.665207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.675090 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.675132 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.675140 LLDP, length 82 [|LLDP] 16:50:41.675141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.675153 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.675158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.675164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.675174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.675177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.675179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.675185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a00 7fd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.675187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.675191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.675194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.675200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.685090 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.685134 LLDP, length 82 [|LLDP] 16:50:41.685136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.685148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.685154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a08 20f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.685157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.685160 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.685166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.685171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.685182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.685185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.685187 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.685194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.685198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.685204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.695090 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.695135 LLDP, length 82 [|LLDP] 16:50:41.695136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.695149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.695156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a0f c216 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.695158 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.695162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.695165 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.695170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.695175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.695185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.695189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.695191 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.695198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.695204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.705091 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.705131 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.705139 LLDP, length 82 [|LLDP] 16:50:41.705141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.705152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.705159 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.705164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.705169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.705180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.705183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.705186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a17 6336 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.705188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.705192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.705195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.705201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.715089 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.715132 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.715139 LLDP, length 82 [|LLDP] 16:50:41.715141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.715153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.715160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a1f 0456 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.715162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.715166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.715169 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.715174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.715179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.715190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.715193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.715195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.715201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.725092 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.725138 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.725147 LLDP, length 82 [|LLDP] 16:50:41.725148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.725160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.725167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a26 a576 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.725169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.725173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.725176 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.725182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.725187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.725198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.725201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.725203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.725209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.735097 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.735140 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.735148 LLDP, length 82 [|LLDP] 16:50:41.735149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.735161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.735167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a2e 4696 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.735170 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.735175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.735180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.735190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.735193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.735196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.735200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.735203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.735209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.745092 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.745141 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.745149 LLDP, length 82 [|LLDP] 16:50:41.745151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.745163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.745171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a35 e7b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.745173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.745177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.745180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.745185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.745190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.745202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.745206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.745208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.745214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.755097 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.755145 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.755153 LLDP, length 82 [|LLDP] 16:50:41.755155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.755167 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.755173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.755180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.755192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.755195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.755197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.755203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a3d 88d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.755206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.755209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.755213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.755219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.765092 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.765140 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.765148 LLDP, length 82 [|LLDP] 16:50:41.765150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.765161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.765168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a45 29f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.765171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.765174 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.765180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.765185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.765197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.765200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.765202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.765206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.765211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.775088 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.775132 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.775140 LLDP, length 82 [|LLDP] 16:50:41.775141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.775153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.775160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a4c cb16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.775162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.775166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.775169 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.775175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.775180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.775190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.775193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.775196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.775201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.785089 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.785134 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.785142 LLDP, length 82 [|LLDP] 16:50:41.785143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.785155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.785162 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.785167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.785172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.785183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.785186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.785189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a54 6c36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.785191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.785195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.785198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.785204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.795088 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.795132 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.795140 LLDP, length 82 [|LLDP] 16:50:41.795141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.795154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.795160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a5c 0d56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.795163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.795166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.795170 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.795175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.795180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.795192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.795195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.795197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.795203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.805093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.805139 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.805148 LLDP, length 82 [|LLDP] 16:50:41.805149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.805161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.805168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a63 ae76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.805170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.805174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.805177 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.805182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.805187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.805198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.805201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.805203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.805209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.815099 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.815136 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.815145 LLDP, length 82 [|LLDP] 16:50:41.815146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.815158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.815165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a6b 4f96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.815167 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.815173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.815178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.815188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.815192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.815194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.815198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.815201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.815207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.825091 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.825130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.825139 LLDP, length 82 [|LLDP] 16:50:41.825141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.825152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.825159 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a72 f0b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.825161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.825165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.825168 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.825174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.825179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.825191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.825194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.825196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.825202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.835088 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.835130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.835138 LLDP, length 82 [|LLDP] 16:50:41.835140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.835152 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.835158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.835164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.835175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.835178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.835180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.835186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a7a 91d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.835188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.835191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.835195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.835201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.845088 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.845128 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.845136 LLDP, length 82 [|LLDP] 16:50:41.845137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.845149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.845155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a82 32f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.845158 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.845161 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.845166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.845171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.845183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.845186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.845188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.845192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.845198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.855090 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.855130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.855139 LLDP, length 82 [|LLDP] 16:50:41.855140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.855152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.855159 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a89 d416 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.855162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.855174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.855178 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.855183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.855188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.855199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.855203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.855205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.855211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.865100 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.865155 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.865164 LLDP, length 82 [|LLDP] 16:50:41.865166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.865178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.865186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.865192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.865197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.865210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.865213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.865216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a91 7536 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.865218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.865222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.865225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.865231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.875090 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.875136 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.875145 LLDP, length 82 [|LLDP] 16:50:41.875147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.875158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.875165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a99 1656 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.875167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.875171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.875174 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.875179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.875184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.875195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.875198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.875200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.875206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.885086 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.885127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.885136 LLDP, length 82 [|LLDP] 16:50:41.885137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.885149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.885156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa0 b776 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.885158 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.885162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.885165 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.885171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.885175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.885186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.885189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.885192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.885197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.895095 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.895131 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.895139 LLDP, length 82 [|LLDP] 16:50:41.895141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.895153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.895160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa8 5896 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.895162 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.895168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.895173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.895183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.895187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.895189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.895193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.895196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.895202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.905091 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.905132 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.905140 LLDP, length 82 [|LLDP] 16:50:41.905142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.905153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.905160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aaf f9b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.905162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.905166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.905169 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.905174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.905179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.905190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.905193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.905195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.905201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.915088 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.915130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.915138 LLDP, length 82 [|LLDP] 16:50:41.915140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.915152 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.915158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.915163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.915174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.915177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.915179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.915185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab7 9ad6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.915187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.915191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.915194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.915200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.925085 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.925127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.925135 LLDP, length 82 [|LLDP] 16:50:41.925137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.925148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.925154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0abf 3bf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.925156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.925160 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.925165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.925171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.925181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.925184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.925187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.925191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.925196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.935084 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.935127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.935135 LLDP, length 82 [|LLDP] 16:50:41.935137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.935148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.935154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac6 dd16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.935157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.935160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.935164 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.935170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.935175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.935185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.935189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.935191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.935197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.945084 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.945126 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.945134 LLDP, length 82 [|LLDP] 16:50:41.945135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.945147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.945154 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.945159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.945164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.945175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.945178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.945180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ace 7e36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.945182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.945187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.945190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.945196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.955094 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.955151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.955160 LLDP, length 82 [|LLDP] 16:50:41.955162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.955174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.955183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad6 1f56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.955185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.955189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.955192 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.955198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.955203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.955215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.955218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.955220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.955227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.965087 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.965138 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.965146 LLDP, length 82 [|LLDP] 16:50:41.965148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.965160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.965167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0add c076 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.965170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.965174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.965177 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.965182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.965188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.965199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.965203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.965205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.965211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.975084 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.975126 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.975134 LLDP, length 82 [|LLDP] 16:50:41.975136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.975147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.975153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ae5 6196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.975156 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.975161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.975166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.975177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.975180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.975182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.975186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.975189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.975195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.985083 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.985126 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.985134 LLDP, length 82 [|LLDP] 16:50:41.985136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.985147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.985154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aed 02b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.985156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.985159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.985163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.985168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.985173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.985184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.985187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.985190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.985196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.995095 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.995149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.995158 LLDP, length 82 [|LLDP] 16:50:41.995160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.995173 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.995179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.995186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.995198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.995202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.995204 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.995210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0af4 a3d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.995212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.995216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.995220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.995226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.005089 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.005137 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.005146 LLDP, length 82 [|LLDP] 16:50:42.005148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.005160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.005168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0afc 44f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.005170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.005173 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.005179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.005184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.005195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.005199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.005201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.005205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.005211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.015081 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.015116 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.015124 LLDP, length 82 [|LLDP] 16:50:42.015126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.015137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.015143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b03 e616 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.015145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.015149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.015152 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.015157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.015162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.015172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.015176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.015178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.015184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.025078 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.025109 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.025117 LLDP, length 82 [|LLDP] 16:50:42.025119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.025130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.025136 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.025141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.025146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.025164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.025167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.025169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b0b 8736 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.025171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.025176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.025179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.025185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.035083 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.035126 LLDP, length 82 [|LLDP] 16:50:42.035128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.035141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.035148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b13 2856 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.035150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.035154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.035157 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.035162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.035167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.035177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.035180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.035183 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.035190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.035195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.045077 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.045110 LLDP, length 82 [|LLDP] 16:50:42.045112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.045124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.045130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b1a c976 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.045132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.045136 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.045139 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.045144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.045149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.045159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.045162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.045164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.045170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.045175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.055077 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.055103 LLDP, length 82 [|LLDP] 16:50:42.055105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.055117 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.055123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b22 6a96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.055125 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.055129 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.055134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.055144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.055147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.055149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.055155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.055159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.055163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.055168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.065084 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.065128 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.065136 LLDP, length 82 [|LLDP] 16:50:42.065138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.065150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.065157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b2a 0bb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.065159 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.065162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.065166 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.065172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.065177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.065187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.065190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.065193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.065199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.075079 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.075118 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.075126 LLDP, length 82 [|LLDP] 16:50:42.075128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.075139 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.075145 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.075150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.075160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.075163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.075166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.075171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b31 acd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.075173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.075176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.075180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.075185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.085083 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.085123 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.085131 LLDP, length 82 [|LLDP] 16:50:42.085133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.085144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.085150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b39 4df6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.085152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.085156 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.085161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.085166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.085175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.085178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.085180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.085184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.085190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.095077 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.095115 LLDP, length 82 [|LLDP] 16:50:42.095117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.095129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.095136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b40 ef16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.095138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.095142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.095145 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.095151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.095156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.095166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.095169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.095171 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.095178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.095183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.105086 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.105133 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.105142 LLDP, length 82 [|LLDP] 16:50:42.105144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.105155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.105163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.105168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.105173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.105184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.105188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.105190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b48 9036 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.105192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.105197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.105200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.105206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.115079 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.115117 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.115126 LLDP, length 82 [|LLDP] 16:50:42.115127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.115138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.115144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b50 3156 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.115146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.115150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.115153 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.115158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.115163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.115173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.115176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.115179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.115184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.125081 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.125122 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.125130 LLDP, length 82 [|LLDP] 16:50:42.125132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.125143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.125150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b57 d276 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.125152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.125156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.125159 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.125165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.125170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.125179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.125182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.125184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.125190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.135080 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.135118 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.135126 LLDP, length 82 [|LLDP] 16:50:42.135127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.135139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.135145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b5f 7396 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.135147 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.135152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.135157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.135168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.135171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.135173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.135177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.135180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.135186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.145076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.145111 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.145119 LLDP, length 82 [|LLDP] 16:50:42.145121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.145132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.145139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b67 14b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.145141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.145144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.145147 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.145152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.145157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.145167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.145170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.145172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.145178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.155075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.155110 LLDP, length 82 [|LLDP] 16:50:42.155111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.155124 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.155130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.155135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.155145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.155148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.155150 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.155156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.155162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b6e b5d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.155164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.155167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.155170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.155175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.165077 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.165114 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.165122 LLDP, length 82 [|LLDP] 16:50:42.165124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.165135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.165141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b76 56f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.165143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.165146 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.165152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.165156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.165166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.165170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.165172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.165176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.165181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.175077 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.175113 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.175121 LLDP, length 82 [|LLDP] 16:50:42.175122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.175133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.175140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b7d f816 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.175142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.175146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.175149 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.175155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.175159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.175170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.175173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.175175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.175181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.185081 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.185124 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.185133 LLDP, length 82 [|LLDP] 16:50:42.185135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.185146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.185153 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.185158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.185163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.185174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.185177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.185179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b85 9936 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.185181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.185185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.185189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.185195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.195080 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.195120 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.195127 LLDP, length 82 [|LLDP] 16:50:42.195129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.195141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.195147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b8d 3a56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.195149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.195153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.195156 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.195161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.195166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.195177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.195180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.195182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.195188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.205076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.205116 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.205124 LLDP, length 82 [|LLDP] 16:50:42.205125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.205137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.205143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b94 db76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.205145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.205149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.205152 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.205157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.205162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.205172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.205175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.205177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.205182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.215075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.215112 LLDP, length 82 [|LLDP] 16:50:42.215114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.215126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.215133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b9c 7c96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.215135 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.215140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.215145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.215155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.215158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.215160 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.215167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.215171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.215175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.215180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.225079 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.225108 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.225116 LLDP, length 82 [|LLDP] 16:50:42.225117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.225128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.225134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ba4 1db6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.225137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.225140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.225144 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.225149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.225154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.225163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.225167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.225169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.225175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.235074 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.235110 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.235118 LLDP, length 82 [|LLDP] 16:50:42.235119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.235131 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.235136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.235141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.235151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.235154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.235156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.235161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bab bed6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.235163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.235167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.235171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.235176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.245083 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.245127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.245135 LLDP, length 82 [|LLDP] 16:50:42.245137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.245148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.245155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bb3 5ff6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.245157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.245161 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.245166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.245171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.245182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.245185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.245187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.245191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.245196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.255082 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.255126 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.255134 LLDP, length 82 [|LLDP] 16:50:42.255136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.255147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.255154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bbb 0116 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.255156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.255159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.255163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.255168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.255173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.255184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.255187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.255189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.255195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.265078 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.265130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.265138 LLDP, length 82 [|LLDP] 16:50:42.265139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.265150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.265157 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.265162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.265167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.265179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.265182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.265184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bc2 a236 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.265187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.265190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.265194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.265200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.275079 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.275124 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.275132 LLDP, length 82 [|LLDP] 16:50:42.275134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.275145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.275152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bca 4356 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.275154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.275158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.275161 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.275166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.275171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.275181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.275184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.275187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.275193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.285083 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.285124 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.285133 LLDP, length 82 [|LLDP] 16:50:42.285135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.285147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.285154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd1 e476 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.285156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.285160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.285163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.285168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.285173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.285184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.285187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.285189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.285195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.295078 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.295118 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.295126 LLDP, length 82 [|LLDP] 16:50:42.295128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.295139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.295145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd9 8596 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.295148 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.295153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.295158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.295169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.295172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.295174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.295178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.295182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.295188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.305076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.305118 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.305127 LLDP, length 82 [|LLDP] 16:50:42.305128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.305139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.305145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be1 26b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.305147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.305151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.305154 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.305160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.305165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.305175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.305178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.305180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.305186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.315075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.315113 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.315120 LLDP, length 82 [|LLDP] 16:50:42.315121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.315133 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.315138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.315144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.315154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.315156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.315158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.315164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be8 c7d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.315166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.315169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.315173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.315178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.325072 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.325108 LLDP, length 82 [|LLDP] 16:50:42.325110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.325122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.325128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf0 68f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.325130 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.325133 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.325138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.325143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.325153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.325156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.325158 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.325165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.325169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.325174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.335116 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.335193 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.335204 LLDP, length 82 [|LLDP] 16:50:42.335206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.335219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.335229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf8 0a16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.335232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.335236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.335240 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.335247 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.335253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.335269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.335273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.335275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.335282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.345119 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.345194 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.345205 LLDP, length 82 [|LLDP] 16:50:42.345206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.345219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.345229 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.345237 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.345244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.345260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.345264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.345267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bff ab36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.345269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.345273 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.345277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.345284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.355113 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.355186 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.355197 LLDP, length 82 [|LLDP] 16:50:42.355199 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.355211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.355222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c07 4c56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.355224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.355228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.355232 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.355237 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.355244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.355259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.355263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.355265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.355273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.365116 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.365190 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.365201 LLDP, length 82 [|LLDP] 16:50:42.365203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.365215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.365225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c0e ed76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.365227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.365231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.365235 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.365242 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.365249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.365265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.365269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.365271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.365278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.375129 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.375208 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.375219 LLDP, length 82 [|LLDP] 16:50:42.375221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.375234 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.375244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c16 8e96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.375247 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.375253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.375259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.375275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.375279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.375282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.375286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.375290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.375298 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.385120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.385195 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.385206 LLDP, length 82 [|LLDP] 16:50:42.385208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.385220 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.385231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c1e 2fb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.385234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.385238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.385241 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.385248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.385254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.385270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.385274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.385276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.385283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.395116 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.395193 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.395204 LLDP, length 82 [|LLDP] 16:50:42.395206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.395219 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.395226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.395234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.395249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.395253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.395256 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.395264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c25 d0d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.395266 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.395270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.395274 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.395281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.405107 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.405177 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.405187 LLDP, length 82 [|LLDP] 16:50:42.405189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.405201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.405211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c2d 71f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.405214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.405218 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.405224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.405231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.405260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.405264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.405266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.405270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.405277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.415083 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.415135 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.415143 LLDP, length 82 [|LLDP] 16:50:42.415145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.415156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.415165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c35 1316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.415167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.415171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.415175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.415180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.415184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.415196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.415200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.415202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.415209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.425076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.425123 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.425131 LLDP, length 82 [|LLDP] 16:50:42.425133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.425145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.425151 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.425157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.425162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.425185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.425190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.425192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c3c b436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.425194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.425199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.425203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.425209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.435084 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.435133 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.435142 LLDP, length 82 [|LLDP] 16:50:42.435144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.435155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.435165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c44 5556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.435167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.435171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.435175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.435181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.435186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.435200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.435204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.435206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.435213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.445078 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.445124 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.445132 LLDP, length 82 [|LLDP] 16:50:42.445133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.445145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.445153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c4b f676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.445155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.445159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.445162 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.445168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.445173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.445185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.445188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.445190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.445197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.455082 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.455130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.455139 LLDP, length 82 [|LLDP] 16:50:42.455140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.455152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.455160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c53 9796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.455162 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.455168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.455173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.455186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.455189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.455191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.455195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.455199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.455205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.465081 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.465136 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.465145 LLDP, length 82 [|LLDP] 16:50:42.465146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.465158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.465166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c5b 38b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.465168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.465171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.465175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.465180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.465186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.465197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.465200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.465202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.465208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.475076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.475123 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.475131 LLDP, length 82 [|LLDP] 16:50:42.475133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.475144 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.475151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.475157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.475168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.475172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.475174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.475180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c62 d9d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.475182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.475186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.475189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.475196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.485075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.485124 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.485132 LLDP, length 82 [|LLDP] 16:50:42.485134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.485145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.485152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c6a 7af6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.485155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.485158 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.485163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.485168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.485180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.485183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.485185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.485189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.485195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.495075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.495123 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.495132 LLDP, length 82 [|LLDP] 16:50:42.495133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.495145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.495152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c72 1c16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.495155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.495158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.495162 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.495167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.495172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.495184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.495188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.495190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.495196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.505075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.505121 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.505129 LLDP, length 82 [|LLDP] 16:50:42.505131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.505142 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.505149 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.505154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.505159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.505171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.505174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.505177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c79 bd36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.505179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.505183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.505187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.505192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.515076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.515114 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.515122 LLDP, length 82 [|LLDP] 16:50:42.515123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.515135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.515142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c81 5e56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.515144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.515147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.515151 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.515156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.515161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.515171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.515174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.515177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.515182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.525080 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.525134 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.525143 LLDP, length 82 [|LLDP] 16:50:42.525145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.525157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.525165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c88 ff76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.525167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.525171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.525174 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.525180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.525185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.525197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.525200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.525203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.525209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.535076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.535127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.535135 LLDP, length 82 [|LLDP] 16:50:42.535137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.535149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.535156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c90 a096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.535158 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.535164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.535169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.535180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.535184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.535186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.535190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.535194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.535200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.545081 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.545129 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.545137 LLDP, length 82 [|LLDP] 16:50:42.545139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.545150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.545158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c98 41b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.545160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.545164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.545167 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.545172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.545177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.545189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.545192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.545194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.545200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.555075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.555120 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.555128 LLDP, length 82 [|LLDP] 16:50:42.555130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.555142 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.555147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.555153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.555164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.555167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.555169 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.555175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c9f e2d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.555177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.555181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.555185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.555190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.565076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.565128 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.565136 LLDP, length 82 [|LLDP] 16:50:42.565138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.565150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.565158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca7 83f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.565161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.565165 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.565170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.565175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.565187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.565190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.565192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.565196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.565203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.575078 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.575118 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.575126 LLDP, length 82 [|LLDP] 16:50:42.575128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.575139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.575147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0caf 2516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.575149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.575153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.575157 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.575162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.575167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.575177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.575181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.575183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.575189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.585073 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.585117 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.585125 LLDP, length 82 [|LLDP] 16:50:42.585127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.585139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.585146 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.585151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.585156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.585167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.585170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.585172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb6 c636 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.585175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.585179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.585182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.585188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.595070 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.595115 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.595124 LLDP, length 82 [|LLDP] 16:50:42.595125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.595137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.595144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cbe 6756 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.595146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.595150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.595153 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.595158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.595164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.595174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.595177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.595179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.595186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.605071 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.605115 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.605123 LLDP, length 82 [|LLDP] 16:50:42.605124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.605136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.605143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cc6 0876 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.605145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.605149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.605152 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.605157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.605162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.605173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.605176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.605178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.605184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.615071 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.615116 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.615124 LLDP, length 82 [|LLDP] 16:50:42.615126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.615137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.615144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ccd a996 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.615146 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.615152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.615156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.615167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.615170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.615172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.615176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.615179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.615186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.625076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.625127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.625136 LLDP, length 82 [|LLDP] 16:50:42.625137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.625149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.625156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cd5 4ab6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.625159 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.625162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.625166 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.625171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.625176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.625187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.625191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.625193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.625199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.635072 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.635124 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.635132 LLDP, length 82 [|LLDP] 16:50:42.635134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.635145 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.635151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.635157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.635168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.635171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.635174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.635180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cdc ebd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.635182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.635186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.635189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.635195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.645072 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.645118 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.645126 LLDP, length 82 [|LLDP] 16:50:42.645127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.645139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.645146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ce4 8cf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.645148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.645152 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.645157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.645162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.645173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.645176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.645179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.645182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.645189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.655070 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.655127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.655136 LLDP, length 82 [|LLDP] 16:50:42.655138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.655150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.655158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cec 2e16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.655160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.655164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.655167 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.655173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.655178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.655189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.655192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.655194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.655200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.665068 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.665117 LLDP, length 82 [|LLDP] 16:50:42.665119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.665132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.665138 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.665144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.665149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.665160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.665163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.665165 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.665172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cf3 cf36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.665175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.665179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.665182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.665188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.675082 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.675148 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.675156 LLDP, length 82 [|LLDP] 16:50:42.675158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.675169 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.675178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cfb 7056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.675181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.675185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.675188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.675195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.675200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.675214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.675218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.675220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.675227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.685093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.685154 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.685164 LLDP, length 82 [|LLDP] 16:50:42.685165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.685177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.685185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d03 1176 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.685188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.685192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.685196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.685201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.685207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.685220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.685224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.685226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.685233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.695076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.695130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.695138 LLDP, length 82 [|LLDP] 16:50:42.695140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.695152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.695160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d0a b296 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.695163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.695168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.695173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.695185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.695189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.695191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.695195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.695198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.695205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.705071 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.705118 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.705127 LLDP, length 82 [|LLDP] 16:50:42.705128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.705140 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.705148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d12 53b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.705150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.705154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.705157 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.705162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.705167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.705179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.705183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.705185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.705191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.715067 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.715112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.715120 LLDP, length 82 [|LLDP] 16:50:42.715122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.715133 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.715139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.715145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.715156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.715159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.715161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.715167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d19 f4d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.715169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.715173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.715176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.715182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.725069 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.725112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.725120 LLDP, length 82 [|LLDP] 16:50:42.725122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.725133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.725140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d21 95f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.725142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.725146 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.725151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.725156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.725167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.725170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.725172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.725176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.725182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.735070 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.735115 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.735123 LLDP, length 82 [|LLDP] 16:50:42.735125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.735137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.735144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d29 3716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.735146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.735150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.735154 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.735159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.735164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.735175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.735178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.735180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.735186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.745074 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.745125 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.745134 LLDP, length 82 [|LLDP] 16:50:42.745135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.745147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.745155 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.745160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.745165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.745176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.745179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.745182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d30 d836 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.745184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.745188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.745192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.745198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.755076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.755127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.755135 LLDP, length 82 [|LLDP] 16:50:42.755137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.755148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.755156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d38 7956 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.755158 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.755162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.755166 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.755171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.755176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.755188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.755191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.755193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.755199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.765071 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.765120 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.765128 LLDP, length 82 [|LLDP] 16:50:42.765130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.765142 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.765149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d40 1a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.765151 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.765155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.765158 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.765163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.765169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.765180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.765183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.765185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.765191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.775070 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.775120 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.775128 LLDP, length 82 [|LLDP] 16:50:42.775130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.775141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.775149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d47 bb96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.775151 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.775156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.775161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.775173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.775176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.775178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.775182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.775186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.775192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.785071 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.785116 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.785124 LLDP, length 82 [|LLDP] 16:50:42.785126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.785137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.785145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d4f 5cb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.785147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.785150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.785154 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.785159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.785164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.785176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.785179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.785181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.785187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.795068 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.795112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.795120 LLDP, length 82 [|LLDP] 16:50:42.795121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.795132 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.795138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.795144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.795155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.795158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.795160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.795165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d56 fdd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.795168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.795171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.795175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.795181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.805075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.805129 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.805137 LLDP, length 82 [|LLDP] 16:50:42.805138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.805150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.805158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d5e 9ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.805160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.805164 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.805169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.805175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.805186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.805190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.805192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.805196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.805202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.815068 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.815120 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.815128 LLDP, length 82 [|LLDP] 16:50:42.815130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.815141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.815148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d66 4016 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.815151 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.815155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.815159 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.815163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.815169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.815181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.815184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.815186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.815193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.825074 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.825122 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.825130 LLDP, length 82 [|LLDP] 16:50:42.825132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.825144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.825151 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.825156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.825162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.825173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.825176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.825178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d6d e136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.825181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.825185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.825188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.825193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.835066 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.835112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.835121 LLDP, length 82 [|LLDP] 16:50:42.835122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.835134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.835141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d75 8256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.835143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.835147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.835150 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.835156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.835161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.835172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.835176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.835178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.835184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.845074 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.845130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.845138 LLDP, length 82 [|LLDP] 16:50:42.845140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.845152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.845160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d7d 2376 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.845162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.845166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.845170 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.845175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.845180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.845192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.845196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.845198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.845204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.855069 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.855117 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.855125 LLDP, length 82 [|LLDP] 16:50:42.855127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.855139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.855147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d84 c496 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.855149 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.855154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.855159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.855171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.855174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.855176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.855180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.855184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.855190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.865066 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.865112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.865120 LLDP, length 82 [|LLDP] 16:50:42.865122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.865133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.865140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d8c 65b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.865143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.865146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.865150 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.865155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.865161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.865172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.865176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.865178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.865184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.875067 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.875110 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.875118 LLDP, length 82 [|LLDP] 16:50:42.875120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.875131 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.875137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.875143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.875154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.875158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.875160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.875165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d94 06d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.875167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.875171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.875174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.875180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.885064 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.885107 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.885115 LLDP, length 82 [|LLDP] 16:50:42.885117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.885129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.885136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d9b a7f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.885139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.885142 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.885147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.885152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.885164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.885167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.885169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.885173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.885179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.895065 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.895109 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.895117 LLDP, length 82 [|LLDP] 16:50:42.895119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.895131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.895138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0da3 4916 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.895141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.895145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.895148 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.895153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.895158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.895169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.895172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.895174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.895180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.905067 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.905117 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.905125 LLDP, length 82 [|LLDP] 16:50:42.905127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.905138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.905145 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.905151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.905156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.905166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.905169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.905172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0daa ea36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.905174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.905178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.905181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.905187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.915066 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.915116 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.915124 LLDP, length 82 [|LLDP] 16:50:42.915126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.915137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.915145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0db2 8b56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.915147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.915151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.915155 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.915160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.915165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.915177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.915180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.915182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.915188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.925063 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.925112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.925120 LLDP, length 82 [|LLDP] 16:50:42.925122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.925133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.925140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dba 2c76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.925142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.925146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.925149 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.925154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.925159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.925170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.925174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.925176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.925182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.935063 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.935117 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.935126 LLDP, length 82 [|LLDP] 16:50:42.935127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.935139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.935146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc1 cd96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.935149 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.935154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.935159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.935170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.935173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.935175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.935179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.935182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.935188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.945065 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.945112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.945120 LLDP, length 82 [|LLDP] 16:50:42.945121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.945133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.945140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc9 6eb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.945142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.945146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.945150 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.945155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.945160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.945171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.945174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.945177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.945183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.955065 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.955114 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.955122 LLDP, length 82 [|LLDP] 16:50:42.955124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.955136 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.955142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.955148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.955159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.955163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.955165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.955170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd1 0fd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.955172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.955176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.955180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.955186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.965065 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.965113 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.965121 LLDP, length 82 [|LLDP] 16:50:42.965122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.965134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.965141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd8 b0f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.965143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.965147 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.965153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.965158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.965169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.965172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.965174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.965178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.965184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.975071 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.975112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.975120 LLDP, length 82 [|LLDP] 16:50:42.975121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.975133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.975141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de0 5216 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.975143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.975147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.975150 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.975155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.975161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.975172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.975175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.975177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.975183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.985063 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.985108 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.985116 LLDP, length 82 [|LLDP] 16:50:42.985117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.985129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.985136 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.985141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.985146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.985157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.985160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.985162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de7 f336 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.985165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.985168 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.985172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.985178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.995062 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.995106 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.995114 LLDP, length 82 [|LLDP] 16:50:42.995115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.995126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.995134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0def 9456 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.995136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.995140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.995144 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.995149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.995153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.995164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.995167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.995169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.995176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.005060 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.005106 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.005115 LLDP, length 82 [|LLDP] 16:50:43.005116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.005128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.005134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df7 3576 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.005137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.005140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.005144 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.005149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.005154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.005165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.005168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.005170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.005176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.015063 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.015108 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.015116 LLDP, length 82 [|LLDP] 16:50:43.015117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.015129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.015136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dfe d696 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.015138 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.015143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.015149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.015159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.015163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.015165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.015169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.015172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.015178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.025067 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.025116 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.025124 LLDP, length 82 [|LLDP] 16:50:43.025126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.025138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.025145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e06 77b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.025147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.025151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.025154 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.025159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.025164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.025175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.025178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.025180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.025186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.035062 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.035113 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.035122 LLDP, length 82 [|LLDP] 16:50:43.035124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.035135 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.035141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.035147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.035158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.035161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.035163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.035170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e0e 18d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.035172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.035176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.035179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.035185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.045063 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.045113 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.045121 LLDP, length 82 [|LLDP] 16:50:43.045123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.045135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.045142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e15 b9f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.045144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.045148 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.045153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.045158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.045169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.045172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.045174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.045178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.045184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.055059 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.055106 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.055114 LLDP, length 82 [|LLDP] 16:50:43.055116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.055128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.055136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e1d 5b16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.055139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.055142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.055146 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.055151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.055156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.055168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.055171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.055173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.055179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.065061 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.065107 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.065115 LLDP, length 82 [|LLDP] 16:50:43.065117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.065128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.065136 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.065141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.065146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.065157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.065160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.065163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e24 fc36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.065166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.065169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.065173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.065179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.075058 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.075103 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.075111 LLDP, length 82 [|LLDP] 16:50:43.075112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.075124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.075131 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e2c 9d56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.075133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.075137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.075140 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.075145 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.075150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.075161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.075164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.075166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.075172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.085066 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.085120 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.085128 LLDP, length 82 [|LLDP] 16:50:43.085130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.085142 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.085150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e34 3e76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.085152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.085156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.085159 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.085165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.085170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.085182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.085185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.085187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.085193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.095062 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.095111 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.095119 LLDP, length 82 [|LLDP] 16:50:43.095121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.095132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.095140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e3b df96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.095142 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.095147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.095152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.095164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.095167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.095169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.095173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.095177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.095182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.105066 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.105113 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.105121 LLDP, length 82 [|LLDP] 16:50:43.105122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.105134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.105142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e43 80b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.105144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.105148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.105151 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.105156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.105161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.105172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.105175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.105177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.105183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.115054 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.115096 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.115104 LLDP, length 82 [|LLDP] 16:50:43.115106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.115118 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.115123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.115129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.115139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.115142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.115145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.115150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e4b 21d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.115153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.115156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.115160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.115166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.125064 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.125115 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.125124 LLDP, length 82 [|LLDP] 16:50:43.125126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.125137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.125145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e52 c2f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.125148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.125151 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.125157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.125162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.125174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.125178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.125180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.125184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.125190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.135058 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.135104 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.135112 LLDP, length 82 [|LLDP] 16:50:43.135114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.135125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.135132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e5a 6416 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.135134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.135138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.135142 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.135147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.135152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.135162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.135166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.135168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.135173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.145056 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.145097 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.145105 LLDP, length 82 [|LLDP] 16:50:43.145107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.145118 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.145125 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.145130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.145135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.145146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.145149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.145151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e62 0536 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.145153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.145157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.145160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.145166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.155054 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.155093 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.155101 LLDP, length 82 [|LLDP] 16:50:43.155103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.155115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.155121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e69 a656 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.155124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.155127 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.155130 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.155135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.155140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.155151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.155154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.155156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.155162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.165052 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.165093 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.165101 LLDP, length 82 [|LLDP] 16:50:43.165103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.165114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.165120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e71 4776 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.165123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.165126 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.165130 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.165135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.165140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.165150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.165154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.165156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.165161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.175053 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.175091 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.175099 LLDP, length 82 [|LLDP] 16:50:43.175101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.175112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.175119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e78 e896 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.175121 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.175126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.175131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.175142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.175145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.175147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.175151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.175154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.175160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.185057 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.185104 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.185113 LLDP, length 82 [|LLDP] 16:50:43.185114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.185125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.185133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e80 89b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.185135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.185139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.185142 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.185148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.185153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.185164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.185168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.185170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.185176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.195054 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.195108 LLDP, length 82 [|LLDP] 16:50:43.195110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.195123 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.195128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.195134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.195145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.195148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.195150 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.195157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.195163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e88 2ad6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.195165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.195169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.195172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.195178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.205056 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.205094 LLDP, length 82 [|LLDP] 16:50:43.205096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.205109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.205117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e8f cbf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.205119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.205122 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.205127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.205133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.205143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.205146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.205148 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.205155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.205159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.205165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.215059 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.215114 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.215122 LLDP, length 82 [|LLDP] 16:50:43.215124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.215135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.215143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e97 6d16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.215145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.215148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.215152 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.215157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.215162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.215174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.215177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.215179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.215185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.225057 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.225103 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.225112 LLDP, length 82 [|LLDP] 16:50:43.225113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.225125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.225132 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.225138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.225143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.225154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.225157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.225160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e9f 0e36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.225162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.225166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.225170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.225176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.235060 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.235108 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.235116 LLDP, length 82 [|LLDP] 16:50:43.235118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.235129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.235137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea6 af56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.235139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.235143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.235146 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.235151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.235156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.235168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.235171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.235173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.235180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.245057 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.245103 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.245112 LLDP, length 82 [|LLDP] 16:50:43.245114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.245125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.245132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eae 5076 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.245135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.245139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.245143 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.245148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.245153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.245163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.245166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.245169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.245174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.255053 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.255097 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.255105 LLDP, length 82 [|LLDP] 16:50:43.255106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.255118 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.255125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eb5 f196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.255127 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.255132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.255137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.255147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.255150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.255152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.255157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.255160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.255165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.265053 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.265085 LLDP, length 82 [|LLDP] 16:50:43.265087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.265099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.265106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ebd 92b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.265108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.265112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.265115 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.265120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.265125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.265135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.265137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.265140 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.265146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.265152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.275050 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.275089 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.275096 LLDP, length 82 [|LLDP] 16:50:43.275097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.275109 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.275115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.275120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.275130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.275133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.275136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.275140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ec5 33d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.275142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.275146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.275149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.275155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.285051 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.285092 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.285100 LLDP, length 82 [|LLDP] 16:50:43.285101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.285113 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.285119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ecc d4f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.285121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.285125 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.285130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.285135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.285145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.285161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.285165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.285169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.285175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.295070 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.295124 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.295132 LLDP, length 82 [|LLDP] 16:50:43.295134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.295146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.295156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ed4 7616 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.295158 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.295162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.295165 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.295171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.295177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.295191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.295195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.295197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.295204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.305066 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.305130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.305138 LLDP, length 82 [|LLDP] 16:50:43.305140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.305152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.305161 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.305166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.305172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.305185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.305189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.305191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0edc 1736 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.305194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.305198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.305201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.305208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.315060 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.315110 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.315118 LLDP, length 82 [|LLDP] 16:50:43.315120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.315131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.315139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ee3 b856 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.315141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.315145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.315149 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.315154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.315159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.315171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.315174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.315177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.315183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.325055 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.325103 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.325111 LLDP, length 82 [|LLDP] 16:50:43.325113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.325125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.325132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eeb 5976 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.325134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.325138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.325141 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.325147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.325152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.325163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.325166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.325168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.325174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.335057 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.335100 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.335107 LLDP, length 82 [|LLDP] 16:50:43.335109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.335121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.335128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ef2 fa96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.335131 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.335136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.335141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.335152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.335155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.335157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.335161 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.335165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.335171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.345054 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.345103 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.345111 LLDP, length 82 [|LLDP] 16:50:43.345113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.345125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.345131 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0efa 9bb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.345133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.345137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.345141 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.345146 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.345151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.345162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.345165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.345168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.345174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.355054 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.355098 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.355107 LLDP, length 82 [|LLDP] 16:50:43.355108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.355120 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.355126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.355132 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.355143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.355146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.355148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.355154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f02 3cd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.355156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.355160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.355163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.355170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.365071 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.365127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.365135 LLDP, length 82 [|LLDP] 16:50:43.365137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.365149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.365157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f09 ddf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.365159 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.365163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.365169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.365174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.365186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.365190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.365192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.365196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.365202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.375057 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.375109 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.375118 LLDP, length 82 [|LLDP] 16:50:43.375119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.375131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.375139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f11 7f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.375141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.375145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.375148 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.375154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.375159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.375170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.375174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.375176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.375182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.385062 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.385110 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.385119 LLDP, length 82 [|LLDP] 16:50:43.385120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.385132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.385139 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.385145 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.385150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.385161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.385164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.385166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f19 2036 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.385169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.385173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.385176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.385181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.395055 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.395097 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.395105 LLDP, length 82 [|LLDP] 16:50:43.395106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.395118 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.395126 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f20 c156 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.395128 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.395132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.395135 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.395140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.395145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.395157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.395160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.395162 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.395168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.405089 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.405184 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.405195 LLDP, length 82 [|LLDP] 16:50:43.405197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.405211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.405221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f28 6276 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.405224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.405227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.405231 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.405238 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.405245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.405276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.405281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.405283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.405290 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.415089 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.415160 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.415171 LLDP, length 82 [|LLDP] 16:50:43.415173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.415185 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.415195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f30 0396 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.415197 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.415204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.415210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.415224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.415229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.415231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.415235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.415238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.415245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.425056 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.425105 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.425113 LLDP, length 82 [|LLDP] 16:50:43.425115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.425127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.425134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f37 a4b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.425136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.425140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.425144 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.425149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.425154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.425166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.425169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.425171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.425177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.435051 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.435088 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.435097 LLDP, length 82 [|LLDP] 16:50:43.435098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.435110 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.435116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.435121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.435132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.435135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.435137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.435143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f3f 45d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.435145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.435149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.435152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.435158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.445051 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.445090 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.445098 LLDP, length 82 [|LLDP] 16:50:43.445099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.445111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.445117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f46 e6f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.445119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.445122 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.445127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.445132 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.445142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.445146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.445148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.445152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.445157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.455048 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.455089 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.455097 LLDP, length 82 [|LLDP] 16:50:43.455098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.455110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.455116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f4e 8816 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.455119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.455122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.455126 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.455131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.455135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.455146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.455149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.455151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.455157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.465048 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.465088 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.465096 LLDP, length 82 [|LLDP] 16:50:43.465098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.465109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.465116 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.465121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.465126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.465136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.465139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.465141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f56 2936 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.465143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.465147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.465150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.465156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.475047 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.475090 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.475098 LLDP, length 82 [|LLDP] 16:50:43.475099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.475111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.475118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f5d ca56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.475120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.475124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.475128 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.475133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.475138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.475149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.475152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.475154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.475160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.485047 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.485087 LLDP, length 82 [|LLDP] 16:50:43.485089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.485101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.485108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f65 6b76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.485111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.485114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.485118 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.485123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.485127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.485138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.485141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.485143 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.485151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.485166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.495050 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.495085 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.495093 LLDP, length 82 [|LLDP] 16:50:43.495095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.495106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.495112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f6d 0c96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.495114 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.495119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.495124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.495134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.495137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.495140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.495143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.495147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.495153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.505053 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.505094 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.505102 LLDP, length 82 [|LLDP] 16:50:43.505104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.505115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.505122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f74 adb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.505124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.505127 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.505131 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.505136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.505141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.505151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.505154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.505156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.505163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.515048 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.515091 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.515099 LLDP, length 82 [|LLDP] 16:50:43.515100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.515112 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.515117 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.515122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.515133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.515136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.515138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.515144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f7c 4ed6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.515146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.515149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.515153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.515158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.525045 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.525083 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.525091 LLDP, length 82 [|LLDP] 16:50:43.525093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.525104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.525110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f83 eff6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.525112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.525116 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.525121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.525126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.525136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.525139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.525141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.525145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.525150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.535046 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.535086 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.535094 LLDP, length 82 [|LLDP] 16:50:43.535095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.535107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.535113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f8b 9116 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.535115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.535119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.535123 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.535128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.535133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.535143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.535146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.535148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.535154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.545045 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.545084 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.545092 LLDP, length 82 [|LLDP] 16:50:43.545094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.545105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.545111 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.545116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.545121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.545131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.545134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.545136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f93 3236 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.545138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.545142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.545146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.545151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.555047 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.555079 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.555087 LLDP, length 82 [|LLDP] 16:50:43.555088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.555099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.555106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f9a d356 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.555108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.555112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.555115 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.555120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.555124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.555135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.555138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.555140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.555146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.565044 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.565082 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.565090 LLDP, length 82 [|LLDP] 16:50:43.565092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.565103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.565109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fa2 7476 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.565112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.565115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.565119 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.565124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.565129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.565139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.565142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.565144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.565150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.575045 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.575094 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.575103 LLDP, length 82 [|LLDP] 16:50:43.575104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.575116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.575122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0faa 1596 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.575124 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.575130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.575135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.575145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.575148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.575150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.575154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.575157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.575163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.585045 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.585093 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.585101 LLDP, length 82 [|LLDP] 16:50:43.585103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.585114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.585121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb1 b6b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.585123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.585126 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.585130 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.585135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.585139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.585150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.585153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.585155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.585161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.595043 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.595091 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.595100 LLDP, length 82 [|LLDP] 16:50:43.595101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.595113 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.595120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.595125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.595135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.595138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.595140 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.595145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb9 57d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.595147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.595151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.595154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.595160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.605045 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.605084 LLDP, length 82 [|LLDP] 16:50:43.605086 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.605099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.605105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc0 f8f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.605107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.605111 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.605116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.605121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.605131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.605135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.605137 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.605144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.605148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.605153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.615046 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.615086 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.615094 LLDP, length 82 [|LLDP] 16:50:43.615095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.615106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.615112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc8 9a16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.615114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.615117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.615121 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.615126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.615131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.615141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.615144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.615146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.615151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.625045 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.625085 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.625093 LLDP, length 82 [|LLDP] 16:50:43.625095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.625106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.625113 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.625118 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.625123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.625133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.625136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.625139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd0 3b36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.625141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.625145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.625148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.625154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.635042 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.635082 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.635090 LLDP, length 82 [|LLDP] 16:50:43.635091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.635103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.635109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd7 dc56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.635111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.635115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.635118 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.635123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.635128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.635138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.635141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.635143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.635150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.645043 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.645081 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.645090 LLDP, length 82 [|LLDP] 16:50:43.645091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.645103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.645109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fdf 7d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.645111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.645115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.645118 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.645123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.645128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.645138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.645142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.645144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.645149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.655040 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.655078 LLDP, length 82 [|LLDP] 16:50:43.655080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.655092 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.655098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe7 1e96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.655100 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.655105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.655110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.655120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.655123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.655126 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.655133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.655137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.655141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.655146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.665043 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.665074 LLDP, length 82 [|LLDP] 16:50:43.665075 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.665088 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.665094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fee bfb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.665096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.665099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.665103 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.665107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.665112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.665122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.665125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.665127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.665134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.665140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.675041 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.675079 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.675087 LLDP, length 82 [|LLDP] 16:50:43.675088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.675100 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.675105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.675110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.675120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.675123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.675125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.675130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff6 60d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.675132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.675136 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.675140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.675145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.685045 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.685088 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.685096 LLDP, length 82 [|LLDP] 16:50:43.685098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.685109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.685116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ffe 01f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.685118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.685122 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.685127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.685132 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.685143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.685146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.685148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.685152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.685158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.695043 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.695085 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.695093 LLDP, length 82 [|LLDP] 16:50:43.695095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.695106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.695113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1005 a316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.695116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.695119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.695123 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.695128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.695133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.695142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.695145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.695148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.695154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.705042 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.705084 LLDP, length 82 [|LLDP] 16:50:43.705085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.705098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.705104 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.705109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.705114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.705124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.705127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.705129 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.705136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 100d 4436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.705139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.705143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.705146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.705152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.715041 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.715091 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.715100 LLDP, length 82 [|LLDP] 16:50:43.715102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.715114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.715120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1014 e556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.715123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.715126 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.715130 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.715134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.715139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.715149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.715152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.715154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.715159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.725044 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.725080 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.725088 LLDP, length 82 [|LLDP] 16:50:43.725089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.725101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.725107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 101c 8676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.725109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.725113 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.725116 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.725121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.725126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.725137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.725140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.725142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.725148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.735042 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.735082 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.735091 LLDP, length 82 [|LLDP] 16:50:43.735092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.735103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.735109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1024 2796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.735112 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.735116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.735121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.735131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.735135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.735137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.735141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.735144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.735150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.745041 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.745080 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.745088 LLDP, length 82 [|LLDP] 16:50:43.745090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.745101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.745108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 102b c8b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.745110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.745114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.745117 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.745122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.745127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.745137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.745140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.745142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.745148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.755049 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.755095 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.755103 LLDP, length 82 [|LLDP] 16:50:43.755105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.755116 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.755122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.755128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.755138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.755141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.755144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.755150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1033 69d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.755152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.755156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.755159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.755165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.765044 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.765085 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.765093 LLDP, length 82 [|LLDP] 16:50:43.765094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.765106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.765112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 103b 0af6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.765115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.765118 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.765123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.765128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.765138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.765141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.765143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.765147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.765153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.775039 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.775078 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.775085 LLDP, length 82 [|LLDP] 16:50:43.775087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.775098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.775105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1042 ac16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.775107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.775110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.775114 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.775119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.775123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.775133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.775136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.775138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.775144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.785043 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.785077 LLDP, length 82 [|LLDP] 16:50:43.785079 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.785091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.785097 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.785102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.785108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.785118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.785121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.785123 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.785131 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 104a 4d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.785133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.785138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.785141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.785147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.795041 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.795081 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.795090 LLDP, length 82 [|LLDP] 16:50:43.795092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.795103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.795109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1051 ee56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.795112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.795115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.795119 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.795124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.795129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.795139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.795142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.795144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.795150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.805048 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.805088 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.805096 LLDP, length 82 [|LLDP] 16:50:43.805097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.805109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.805116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1059 8f76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.805118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.805122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.805126 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.805131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.805136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.805147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.805150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.805153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.805159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.815042 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.815086 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.815095 LLDP, length 82 [|LLDP] 16:50:43.815096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.815108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.815115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1061 3096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.815117 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.815122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.815127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.815138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.815141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.815143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.815147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.815150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.815156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.825040 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.825083 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.825091 LLDP, length 82 [|LLDP] 16:50:43.825092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.825103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.825110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1068 d1b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.825112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.825115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.825119 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.825124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.825129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.825139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.825142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.825144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.825150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.835039 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.835081 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.835089 LLDP, length 82 [|LLDP] 16:50:43.835091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.835102 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.835108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.835113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.835123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.835126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.835128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.835134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1070 72d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.835136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.835139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.835142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.835148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.845040 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.845073 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.845081 LLDP, length 82 [|LLDP] 16:50:43.845082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.845093 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.845099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1078 13f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.845101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.845105 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.845110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.845115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.845125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.845128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.845131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.845134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.845140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 6676 packets captured 6676 packets received by filter 0 packets dropped by kernel 445 packets dropped by interface INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 15 tcpdump -i swp1 -n on agg1 with rc 0 and out 16:50:39.405183 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.405288 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.405299 LLDP, length 82 [|LLDP] 16:50:39.405301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.405314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.405324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 033c a076 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.405327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.405331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.405335 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.405341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.405347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.405394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.405399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.405401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.405409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.415166 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.415214 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.415223 LLDP, length 82 [|LLDP] 16:50:39.415225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.415237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.415246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0344 4196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.415248 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.415254 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.415259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.415283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.415287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.415290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.415294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.415298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.415304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.425145 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.425195 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.425205 LLDP, length 82 [|LLDP] 16:50:39.425206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.425218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.425225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 034b e2b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.425227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.425230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.425234 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.425240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.425245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.425266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.425270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.425272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.425278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.435146 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.435188 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.435196 LLDP, length 82 [|LLDP] 16:50:39.435198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.435210 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.435216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.435221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.435242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.435246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.435248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.435253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0353 83d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.435255 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.435259 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.435263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.435268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.445143 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.445184 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.445192 LLDP, length 82 [|LLDP] 16:50:39.445194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.445205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.445211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 035b 24f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.445214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.445217 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.445222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.445227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.445247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.445251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.445253 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.445258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.445263 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.455150 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.455193 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.455201 LLDP, length 82 [|LLDP] 16:50:39.455202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.455214 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.455221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0362 c616 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.455223 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.455227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.455230 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.455235 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.455240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.455260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.455264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.455266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.455272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.465147 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.465182 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.465190 LLDP, length 82 [|LLDP] 16:50:39.465192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.465203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.465210 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.465215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.465220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.465231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.465234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.465236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 036a 6736 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.465239 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.465242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.465246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.465251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.475140 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.475177 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.475184 LLDP, length 82 [|LLDP] 16:50:39.475186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.475197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.475203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0372 0856 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.475205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.475209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.475212 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.475217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.475222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.475232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.475235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.475238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.475243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.485139 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.485176 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.485184 LLDP, length 82 [|LLDP] 16:50:39.485185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.485197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.485202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0379 a976 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.485204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.485208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.485211 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.485216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.485221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.485232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.485235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.485237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.485243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.495142 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.495181 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.495189 LLDP, length 82 [|LLDP] 16:50:39.495191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.495202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.495208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0381 4a96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.495210 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.495216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.495221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.495232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.495235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.495237 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.495241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.495245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.495251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.505139 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.505178 LLDP, length 82 [|LLDP] 16:50:39.505180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.505192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.505199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0388 ebb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.505201 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.505204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.505208 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.505213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.505218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.505229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.505232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.505234 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.505241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.505246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.515142 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.515181 LLDP, length 82 [|LLDP] 16:50:39.515183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.515195 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.515201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.515206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.515216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.515219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.515221 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.515227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.515232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0390 8cd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.515234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.515238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.515241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.515246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.525143 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.525176 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.525184 LLDP, length 82 [|LLDP] 16:50:39.525186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.525197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.525203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0398 2df6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.525214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.525218 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.525223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.525228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.525239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.525242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.525244 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.525248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.525254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.535139 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.535178 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.535185 LLDP, length 82 [|LLDP] 16:50:39.535187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.535198 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.535204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 039f cf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.535206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.535210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.535213 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.535218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.535223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.535233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.535236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.535238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.535243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.545141 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.545179 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.545187 LLDP, length 82 [|LLDP] 16:50:39.545188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.545200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.545206 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.545211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.545216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.545226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.545229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.545231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a7 7036 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.545233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.545237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.545240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.545246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.555140 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.555176 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.555183 LLDP, length 82 [|LLDP] 16:50:39.555184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.555195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.555202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03af 1156 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.555204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.555207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.555211 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.555216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.555221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.555231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.555234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.555237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.555242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.565137 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.565167 LLDP, length 82 [|LLDP] 16:50:39.565169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.565181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.565187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b6 b276 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.565189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.565193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.565196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.565201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.565206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.565215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.565218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.565220 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.565227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.565232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.575136 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.575171 LLDP, length 82 [|LLDP] 16:50:39.575172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.575185 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.575191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03be 5396 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.575193 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.575198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.575202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.575213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.575216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.575218 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.575225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.575229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.575232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.575237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.585138 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.585190 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.585198 LLDP, length 82 [|LLDP] 16:50:39.585200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.585211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.585218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03c5 f4b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.585220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.585223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.585227 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.585232 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.585236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.585247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.585250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.585252 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.585258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.595142 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.595180 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.595189 LLDP, length 82 [|LLDP] 16:50:39.595190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.595202 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.595208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.595213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.595223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.595226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.595228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.595234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03cd 95d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.595236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.595239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.595243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.595248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.605140 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.605179 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.605187 LLDP, length 82 [|LLDP] 16:50:39.605189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.605200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.605206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03d5 36f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.605208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.605211 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.605217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.605222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.605233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.605236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.605238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.605242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.605247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.615138 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.615179 LLDP, length 82 [|LLDP] 16:50:39.615180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.615192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.615198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03dc d816 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.615201 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.615204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.615208 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.615213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.615217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.615227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.615230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.615232 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.615240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.615245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.625138 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.625178 LLDP, length 82 [|LLDP] 16:50:39.625180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.625193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.625199 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.625204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.625209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.625219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.625222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.625224 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.625232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03e4 7936 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.625234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.625238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.625241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.625246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.635139 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.635180 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.635188 LLDP, length 82 [|LLDP] 16:50:39.635190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.635202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.635209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ec 1a56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.635210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.635214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.635218 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.635223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.635227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.635238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.635241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.635243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.635249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.645136 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.645173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.645181 LLDP, length 82 [|LLDP] 16:50:39.645183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.645194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.645200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03f3 bb76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.645202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.645205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.645208 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.645213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.645218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.645228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.645231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.645233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.645239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.655136 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.655173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.655180 LLDP, length 82 [|LLDP] 16:50:39.655182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.655193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.655199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03fb 5c96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.655201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.655206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.655211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.655220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.655223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.655225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.655229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.655232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.655239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.665133 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.665169 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.665176 LLDP, length 82 [|LLDP] 16:50:39.665178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.665189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.665194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0402 fdb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.665196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.665200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.665203 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.665208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.665213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.665223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.665226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.665228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.665233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.675141 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.675192 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.675200 LLDP, length 82 [|LLDP] 16:50:39.675202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.675214 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.675220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.675227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.675240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.675243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.675245 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.675251 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 040a 9ed6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.675254 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.675257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.675261 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.675267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.685151 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.685214 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.685224 LLDP, length 82 [|LLDP] 16:50:39.685225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.685237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.685245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0412 3ff6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.685248 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.685252 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.685257 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.685263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.685275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.685279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.685281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.685285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.685292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.695143 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.695184 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.695192 LLDP, length 82 [|LLDP] 16:50:39.695194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.695206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.695213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0419 e116 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.695215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.695219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.695222 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.695228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.695233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.695245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.695248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.695250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.695256 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.705137 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.705184 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.705192 LLDP, length 82 [|LLDP] 16:50:39.705194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.705206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.705212 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.705226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.705232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.705244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.705247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.705250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0421 8236 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.705252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.705256 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.705260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.705266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.715140 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.715179 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.715187 LLDP, length 82 [|LLDP] 16:50:39.715189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.715201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.715208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0429 2356 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.715210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.715214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.715217 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.715222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.715227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.715237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.715241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.715243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.715249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.725138 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.725184 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.725192 LLDP, length 82 [|LLDP] 16:50:39.725193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.725204 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.725211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0430 c476 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.725214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.725217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.725221 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.725227 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.725232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.725243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.725246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.725248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.725254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.735137 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.735179 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.735188 LLDP, length 82 [|LLDP] 16:50:39.735189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.735201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.735208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0438 6596 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.735210 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.735215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.735220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.735231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.735234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.735236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.735240 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.735243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.735249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.745138 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.745180 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.745188 LLDP, length 82 [|LLDP] 16:50:39.745190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.745202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.745208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0440 06b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.745210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.745214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.745218 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.745223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.745228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.745238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.745242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.745244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.745250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.755145 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.755184 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.755192 LLDP, length 82 [|LLDP] 16:50:39.755194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.755206 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.755212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.755217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.755228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.755231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.755233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.755239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0447 a7d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.755241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.755245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.755249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.755254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.765135 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.765176 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.765184 LLDP, length 82 [|LLDP] 16:50:39.765185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.765197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.765203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 044f 48f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.765206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.765209 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.765214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.765219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.765229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.765232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.765235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.765239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.765244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.775134 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.775173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.775181 LLDP, length 82 [|LLDP] 16:50:39.775182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.775193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.775199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0456 ea16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.775202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.775205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.775209 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.775214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.775218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.775229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.775232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.775234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.775240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.785133 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.785172 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.785180 LLDP, length 82 [|LLDP] 16:50:39.785181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.785192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.785198 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.785203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.785208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.785218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.785221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.785224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 045e 8b36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.785226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.785230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.785233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.785239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.795133 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.795173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.795181 LLDP, length 82 [|LLDP] 16:50:39.795183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.795194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.795200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0466 2c56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.795202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.795206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.795209 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.795214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.795219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.795229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.795233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.795235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.795241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.805138 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.805183 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.805192 LLDP, length 82 [|LLDP] 16:50:39.805194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.805205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.805213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 046d cd76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.805215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.805219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.805222 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.805227 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.805232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.805243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.805247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.805249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.805255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.815138 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.815182 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.815190 LLDP, length 82 [|LLDP] 16:50:39.815192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.815203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.815210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0475 6e96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.815212 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.815218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.815222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.815233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.815236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.815238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.815242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.815246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.815252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.825133 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.825175 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.825183 LLDP, length 82 [|LLDP] 16:50:39.825185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.825196 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.825202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 047d 0fb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.825205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.825208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.825212 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.825217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.825222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.825232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.825235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.825237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.825244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.835139 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.835183 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.835192 LLDP, length 82 [|LLDP] 16:50:39.835194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.835213 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.835219 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.835225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.835236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.835240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.835242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.835248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0484 b0d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.835250 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.835254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.835258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.835264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.836179 IP6 fe80::491:59ff:fe88:e060 > ff02::2: ICMP6, router solicitation, length 16 16:50:39.845145 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.845197 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.845205 LLDP, length 82 [|LLDP] 16:50:39.845207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.845219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.845228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 048c 51f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.845231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.845234 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.845240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.845246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.845260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.845264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.845266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.845270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.845277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.855142 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.855192 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.855201 LLDP, length 82 [|LLDP] 16:50:39.855202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.855214 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.855221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0493 f316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.855224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.855228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.855231 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.855236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.855241 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.855252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.855256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.855258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.855264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.865135 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.865176 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.865184 LLDP, length 82 [|LLDP] 16:50:39.865185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.865197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.865204 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.865209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.865214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.865225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.865228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.865230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 049b 9436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.865232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.865236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.865240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.865246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.875134 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.875173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.875181 LLDP, length 82 [|LLDP] 16:50:39.875183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.875194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.875202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04a3 3556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.875203 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.875207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.875210 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.875216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.875220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.875231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.875234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.875236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.875241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.885133 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.885173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.885180 LLDP, length 82 [|LLDP] 16:50:39.885182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.885194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.885200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04aa d676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.885202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.885206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.885210 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.885215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.885220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.885230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.885233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.885235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.885241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.895131 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.895171 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.895179 LLDP, length 82 [|LLDP] 16:50:39.895180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.895192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.895199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04b2 7796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.895201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.895206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.895211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.895221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.895225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.895227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.895231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.895234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.895240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.905134 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.905178 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.905186 LLDP, length 82 [|LLDP] 16:50:39.905188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.905199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.905206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ba 18b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.905208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.905212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.905215 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.905221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.905225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.905237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.905240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.905242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.905248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.915132 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.915175 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.915184 LLDP, length 82 [|LLDP] 16:50:39.915185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.915197 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.915203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.915208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.915219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.915223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.915225 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.915230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c1 b9d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.915232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.915236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.915239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.915245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.925133 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.925171 LLDP, length 82 [|LLDP] 16:50:39.925173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.925186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.925193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c9 5af6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.925195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.925198 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.925204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.925209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.925229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.925233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.925235 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.925243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.925248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.925253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.935132 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.935190 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.935199 LLDP, length 82 [|LLDP] 16:50:39.935200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.935212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.935219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d0 fc16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.935221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.935225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.935229 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.935234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.935239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.935250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.935253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.935255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.935261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.945134 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.945179 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.945188 LLDP, length 82 [|LLDP] 16:50:39.945190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.945210 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.945218 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.945223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.945228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.945239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.945242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.945245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d8 9d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.945247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.945251 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.945254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.945260 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.955132 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.955177 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.955185 LLDP, length 82 [|LLDP] 16:50:39.955187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.955198 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.955204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e0 3e56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.955206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.955210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.955213 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.955219 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.955224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.955235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.955238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.955240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.955246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.965130 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.965171 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.965179 LLDP, length 82 [|LLDP] 16:50:39.965181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.965192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.965198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e7 df76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.965200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.965204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.965208 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.965213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.965217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.965228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.965231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.965233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.965239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.975129 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.975172 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.975180 LLDP, length 82 [|LLDP] 16:50:39.975181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.975193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.975199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ef 8096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.975201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.975206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.975211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.975222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.975225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.975228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.975231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.975235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.975240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.985127 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.985166 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.985174 LLDP, length 82 [|LLDP] 16:50:39.985176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.985188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.985195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f7 21b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.985197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.985200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.985204 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.985209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.985214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.985225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.985228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.985230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.985236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:39.995134 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.995179 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:39.995187 LLDP, length 82 [|LLDP] 16:50:39.995189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:39.995201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:39.995206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:39.995212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:39.995223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.995226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:39.995228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:39.995234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04fe c2d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:39.995236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:39.995239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:39.995242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:39.995248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.005125 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.005162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.005170 LLDP, length 82 [|LLDP] 16:50:40.005171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.005183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.005189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0506 63f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.005191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.005194 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.005200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.005204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.005214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.005217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.005219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.005223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.005229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.015132 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.015175 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.015183 LLDP, length 82 [|LLDP] 16:50:40.015185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.015197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.015203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 050e 0516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.015205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.015209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.015212 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.015217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.015222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.015232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.015235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.015237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.015243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.025131 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.025178 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.025186 LLDP, length 82 [|LLDP] 16:50:40.025188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.025199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.025206 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.025211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.025216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.025227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.025230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.025232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0515 a636 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.025234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.025238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.025241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.025247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.035128 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.035171 LLDP, length 82 [|LLDP] 16:50:40.035172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.035185 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.035192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 051d 4756 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.035194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.035198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.035201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.035206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.035211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.035221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.035224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.035226 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.035234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.035240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.045127 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.045168 LLDP, length 82 [|LLDP] 16:50:40.045170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.045182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.045189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0524 e876 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.045191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.045195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.045198 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.045203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.045216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.045228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.045231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.045233 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.045240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.045246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.055127 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.055166 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.055174 LLDP, length 82 [|LLDP] 16:50:40.055176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.055187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.055193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 052c 8996 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.055195 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.055200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.055205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.055216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.055219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.055221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.055225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.055229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.055234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.065129 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.065170 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.065179 LLDP, length 82 [|LLDP] 16:50:40.065180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.065191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.065197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0534 2ab6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.065200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.065203 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.065207 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.065212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.065217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.065228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.065231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.065233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.065239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.075134 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.075180 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.075188 LLDP, length 82 [|LLDP] 16:50:40.075190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.075201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.075207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.075213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.075223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.075227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.075229 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.075234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 053b cbd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.075236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.075241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.075244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.075250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.085128 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.085167 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.085176 LLDP, length 82 [|LLDP] 16:50:40.085178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.085189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.085195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0543 6cf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.085198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.085201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.085207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.085211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.085222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.085225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.085227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.085230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.085237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.095123 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.095155 LLDP, length 82 [|LLDP] 16:50:40.095157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.095169 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.095175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 054b 0e16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.095178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.095181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.095185 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.095190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.095194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.095204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.095207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.095209 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.095215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.095221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.105121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.105155 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.105161 LLDP, length 82 [|LLDP] 16:50:40.105163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.105174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.105180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.105185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.105190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.105199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.105202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.105205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0552 af36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.105207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.105210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.105214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.105219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.115120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.115154 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.115162 LLDP, length 82 [|LLDP] 16:50:40.115164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.115175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.115181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 055a 5056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.115183 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.115187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.115190 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.115195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.115199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.115209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.115212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.115214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.115220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.125121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.125150 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.125158 LLDP, length 82 [|LLDP] 16:50:40.125160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.125171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.125177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0561 f176 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.125179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.125183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.125186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.125191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.125196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.125206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.125209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.125211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.125216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.135135 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.135181 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.135190 LLDP, length 82 [|LLDP] 16:50:40.135192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.135203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.135210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0569 9296 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.135212 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.135217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.135222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.135232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.135236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.135238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.135242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.135246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.135251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.145129 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.145173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.145181 LLDP, length 82 [|LLDP] 16:50:40.145183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.145194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.145208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0571 33b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.145211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.145215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.145219 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.145224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.145229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.145240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.145243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.145246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.145251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.155131 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.155169 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.155177 LLDP, length 82 [|LLDP] 16:50:40.155178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.155190 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.155196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.155201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.155212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.155215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.155217 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.155222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0578 d4d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.155224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.155228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.155232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.155238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.165128 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.165173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.165182 LLDP, length 82 [|LLDP] 16:50:40.165183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.165195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.165201 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0580 75f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.165204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.165207 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.165213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.165217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.165228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.165232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.165234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.165238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.165244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.175125 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.175164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.175172 LLDP, length 82 [|LLDP] 16:50:40.175173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.175184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.175191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0588 1716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.175193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.175196 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.175200 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.175205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.175210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.175220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.175223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.175225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.175231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.185124 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.185164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.185172 LLDP, length 82 [|LLDP] 16:50:40.185174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.185185 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.185192 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.185197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.185202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.185212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.185215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.185218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 058f b836 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.185220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.185223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.185227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.185233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.195125 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.195164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.195172 LLDP, length 82 [|LLDP] 16:50:40.195173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.195184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.195191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0597 5956 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.195193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.195197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.195200 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.195206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.195211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.195221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.195224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.195227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.195233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.205123 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.205162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.205169 LLDP, length 82 [|LLDP] 16:50:40.205171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.205182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.205189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 059e fa76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.205191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.205194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.205198 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.205203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.205208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.205218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.205221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.205223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.205229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.215125 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.215159 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.215167 LLDP, length 82 [|LLDP] 16:50:40.215168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.215180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.215186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a6 9b96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.215188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.215193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.215198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.215209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.215212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.215214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.215218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.215221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.215227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.225125 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.225164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.225173 LLDP, length 82 [|LLDP] 16:50:40.225174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.225186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.225192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ae 3cb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.225194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.225198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.225201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.225207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.225211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.225222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.225226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.225228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.225233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.235130 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.235180 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.235188 LLDP, length 82 [|LLDP] 16:50:40.235190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.235201 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.235207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.235212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.235224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.235227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.235229 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.235235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05b5 ddd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.235237 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.235241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.235244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.235250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.245124 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.245164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.245173 LLDP, length 82 [|LLDP] 16:50:40.245174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.245186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.245192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05bd 7ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.245194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.245198 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.245203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.245208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.245227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.245231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.245233 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.245237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.245243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.255123 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.255165 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.255173 LLDP, length 82 [|LLDP] 16:50:40.255174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.255186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.255193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05c5 2016 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.255195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.255199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.255202 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.255207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.255212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.255223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.255226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.255229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.255235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.265125 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.265168 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.265176 LLDP, length 82 [|LLDP] 16:50:40.265178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.265190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.265196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.265201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.265206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.265218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.265221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.265223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05cc c136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.265225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.265228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.265232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.265238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.275124 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.275167 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.275175 LLDP, length 82 [|LLDP] 16:50:40.275177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.275188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.275195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05d4 6256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.275197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.275201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.275204 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.275210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.275215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.275225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.275228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.275230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.275236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.285122 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.285156 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.285164 LLDP, length 82 [|LLDP] 16:50:40.285165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.285177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.285184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05dc 0376 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.285186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.285190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.285193 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.285199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.285204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.285214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.285217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.285219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.285225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.295121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.295159 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.295167 LLDP, length 82 [|LLDP] 16:50:40.295169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.295180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.295186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05e3 a496 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.295188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.295193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.295198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.295208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.295211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.295214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.295217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.295221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.295227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.305121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.305160 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.305168 LLDP, length 82 [|LLDP] 16:50:40.305169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.305180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.305187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05eb 45b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.305189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.305193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.305197 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.305202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.305206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.305216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.305219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.305221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.305227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.315120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.315160 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.315167 LLDP, length 82 [|LLDP] 16:50:40.315169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.315180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.315186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.315192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.315202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.315205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.315207 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.315213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05f2 e6d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.315214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.315218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.315222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.315227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.325121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.325163 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.325171 LLDP, length 82 [|LLDP] 16:50:40.325173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.325184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.325190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05fa 87f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.325193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.325196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.325202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.325206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.325218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.325221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.325223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.325227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.325233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.335124 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.335161 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.335169 LLDP, length 82 [|LLDP] 16:50:40.335171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.335182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.335189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0602 2916 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.335192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.335195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.335199 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.335204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.335209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.335220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.335223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.335225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.335231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.345121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.345162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.345170 LLDP, length 82 [|LLDP] 16:50:40.345172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.345183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.345189 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.345195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.345200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.345210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.345213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.345215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0609 ca36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.345217 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.345221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.345224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.345230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.355124 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.355171 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.355180 LLDP, length 82 [|LLDP] 16:50:40.355181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.355193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.355200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0611 6b56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.355202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.355206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.355210 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.355215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.355220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.355232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.355235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.355237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.355243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.365121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.365167 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.365175 LLDP, length 82 [|LLDP] 16:50:40.365177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.365188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.365195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0619 0c76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.365197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.365201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.365204 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.365218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.365223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.365236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.365239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.365241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.365247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.375120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.375165 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.375173 LLDP, length 82 [|LLDP] 16:50:40.375174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.375186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.375193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0620 ad96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.375195 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.375200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.375205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.375216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.375219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.375221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.375225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.375229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.375234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.385122 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.385156 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.385165 LLDP, length 82 [|LLDP] 16:50:40.385166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.385177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.385184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0628 4eb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.385186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.385190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.385193 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.385198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.385203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.385213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.385216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.385218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.385224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.395122 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.395161 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.395169 LLDP, length 82 [|LLDP] 16:50:40.395170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.395182 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.395188 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.395193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.395203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.395206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.395208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.395213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 062f efd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.395215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.395219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.395222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.395228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.405121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.405159 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.405167 LLDP, length 82 [|LLDP] 16:50:40.405168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.405179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.405186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0637 90f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.405188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.405191 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.405196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.405201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.405224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.405228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.405230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.405234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.405240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.415120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.415160 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.415168 LLDP, length 82 [|LLDP] 16:50:40.415169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.415180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.415187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 063f 3216 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.415189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.415192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.415196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.415201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.415206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.415216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.415219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.415221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.415227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.425120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.425161 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.425170 LLDP, length 82 [|LLDP] 16:50:40.425171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.425183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.425188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.425193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.425198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.425209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.425212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.425214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0646 d336 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.425216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.425220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.425224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.425229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.435120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.435162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.435171 LLDP, length 82 [|LLDP] 16:50:40.435173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.435184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.435191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 064e 7456 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.435193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.435197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.435200 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.435205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.435210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.435221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.435224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.435226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.435232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.445122 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.445157 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.445165 LLDP, length 82 [|LLDP] 16:50:40.445167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.445178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.445185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0656 1576 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.445187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.445191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.445194 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.445199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.445204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.445215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.445218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.445220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.445226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.455118 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.455162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.455170 LLDP, length 82 [|LLDP] 16:50:40.455172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.455183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.455190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 065d b696 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.455192 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.455197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.455202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.455213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.455216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.455218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.455222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.455225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.455231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.465118 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.465158 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.465166 LLDP, length 82 [|LLDP] 16:50:40.465167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.465178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.465185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0665 57b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.465187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.465191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.465194 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.465200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.465204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.465225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.465228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.465231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.465237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.475121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.475165 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.475173 LLDP, length 82 [|LLDP] 16:50:40.475175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.475186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.475192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.475198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.475208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.475212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.475214 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.475219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 066c f8d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.475221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.475225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.475228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.475233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.485120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.485163 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.485171 LLDP, length 82 [|LLDP] 16:50:40.485172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.485184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.485190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0674 99f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.485192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.485196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.485201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.485207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.485218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.485221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.485223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.485227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.485233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.495122 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.495159 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.495167 LLDP, length 82 [|LLDP] 16:50:40.495168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.495179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.495186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 067c 3b16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.495188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.495191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.495195 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.495200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.495205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.495215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.495218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.495220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.495226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.505117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.505157 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.505165 LLDP, length 82 [|LLDP] 16:50:40.505167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.505180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.505186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.505191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.505196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.505207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.505210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.505212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0683 dc36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.505214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.505218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.505222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.505228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.515117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.515151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.515158 LLDP, length 82 [|LLDP] 16:50:40.515160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.515171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.515177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 068b 7d56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.515179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.515183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.515186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.515191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.515195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.515206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.515209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.515212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.515217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.525118 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.525159 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.525167 LLDP, length 82 [|LLDP] 16:50:40.525168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.525179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.525186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0693 1e76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.525188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.525191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.525195 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.525201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.525205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.525215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.525218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.525221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.525226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.535117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.535160 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.535168 LLDP, length 82 [|LLDP] 16:50:40.535169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.535181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.535187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 069a bf96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.535189 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.535194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.535199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.535210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.535213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.535215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.535219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.535223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.535229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.545116 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.545157 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.545165 LLDP, length 82 [|LLDP] 16:50:40.545167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.545178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.545185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a2 60b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.545187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.545191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.545194 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.545199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.545204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.545215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.545218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.545220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.545226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.555121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.555162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.555170 LLDP, length 82 [|LLDP] 16:50:40.555171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.555183 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.555189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.555194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.555205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.555208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.555210 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.555215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06aa 01d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.555218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.555222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.555225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.555231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.565118 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.565158 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.565165 LLDP, length 82 [|LLDP] 16:50:40.565167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.565179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.565185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b1 a2f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.565187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.565191 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.565196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.565201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.565211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.565214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.565216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.565220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.565226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.575121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.575162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.575170 LLDP, length 82 [|LLDP] 16:50:40.575172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.575183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.575190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b9 4416 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.575192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.575196 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.575199 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.575204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.575209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.575220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.575223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.575225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.575231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.585120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.585173 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.585182 LLDP, length 82 [|LLDP] 16:50:40.585183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.585196 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.585203 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.585208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.585212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.585224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.585227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.585229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c0 e536 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.585231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.585235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.585238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.585244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.595117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.595158 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.595167 LLDP, length 82 [|LLDP] 16:50:40.595168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.595180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.595187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c8 8656 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.595189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.595193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.595196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.595201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.595206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.595216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.595219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.595221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.595227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.605115 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.605156 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.605164 LLDP, length 82 [|LLDP] 16:50:40.605166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.605177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.605183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d0 2776 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.605185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.605189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.605192 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.605198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.605202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.605213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.605216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.605218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.605224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.615117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.615149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.615157 LLDP, length 82 [|LLDP] 16:50:40.615158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.615170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.615176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d7 c896 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.615179 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.615184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.615189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.615200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.615203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.615205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.615209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.615213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.615218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.625114 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.625153 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.625160 LLDP, length 82 [|LLDP] 16:50:40.625162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.625173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.625179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06df 69b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.625182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.625185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.625188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.625194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.625198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.625209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.625212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.625214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.625219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.635114 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.635156 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.635164 LLDP, length 82 [|LLDP] 16:50:40.635165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.635177 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.635183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.635189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.635200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.635203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.635205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.635210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e7 0ad6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.635212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.635216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.635219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.635225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.645116 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.645157 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.645165 LLDP, length 82 [|LLDP] 16:50:40.645166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.645178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.645184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ee abf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.645186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.645190 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.645195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.645200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.645211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.645214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.645216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.645220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.645226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.655113 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.655153 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.655162 LLDP, length 82 [|LLDP] 16:50:40.655163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.655176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.655183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f6 4d16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.655185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.655188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.655192 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.655197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.655201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.655212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.655215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.655217 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.655223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.665113 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.665154 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.665163 LLDP, length 82 [|LLDP] 16:50:40.665165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.665176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.665182 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.665187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.665192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.665202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.665206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.665208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06fd ee36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.665210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.665213 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.665217 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.665223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.675119 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.675153 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.675161 LLDP, length 82 [|LLDP] 16:50:40.675162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.675174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.675181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0705 8f56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.675183 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.675186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.675190 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.675195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.675199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.675210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.675213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.675215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.675221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.685121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.685174 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.685182 LLDP, length 82 [|LLDP] 16:50:40.685184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.685195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.685203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 070d 3076 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.685205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.685209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.685213 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.685218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.685231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.685244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.685247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.685249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.685255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.695117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.695164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.695173 LLDP, length 82 [|LLDP] 16:50:40.695174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.695186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.695193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0714 d196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.695196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.695201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.695206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.695218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.695222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.695224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.695228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.695231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.695237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.705113 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.705156 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.705179 LLDP, length 82 [|LLDP] 16:50:40.705181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.705195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.705202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 071c 72b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.705205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.705208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.705212 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.705217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.705222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.705233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.705237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.705239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.705245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.715123 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.715170 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.715179 LLDP, length 82 [|LLDP] 16:50:40.715180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.715192 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.715199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.715206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.715219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.715223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.715225 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.715232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0724 13d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.715234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.715238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.715242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.715248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.725117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.725163 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.725171 LLDP, length 82 [|LLDP] 16:50:40.725173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.725184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.725192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 072b b4f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.725195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.725198 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.725204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.725209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.725221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.725225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.725227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.725231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.725237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.735117 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.735155 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.735163 LLDP, length 82 [|LLDP] 16:50:40.735165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.735176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.735184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0733 5616 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.735186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.735189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.735193 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.735198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.735203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.735214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.735217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.735219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.735225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.745112 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.745157 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.745164 LLDP, length 82 [|LLDP] 16:50:40.745166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.745177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.745184 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.745189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.745194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.745206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.745209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.745211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 073a f736 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.745213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.745217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.745220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.745226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.755122 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.755169 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.755177 LLDP, length 82 [|LLDP] 16:50:40.755179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.755190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.755198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0742 9856 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.755200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.755204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.755207 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.755212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.755217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.755229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.755232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.755235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.755241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.765116 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.765164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.765172 LLDP, length 82 [|LLDP] 16:50:40.765174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.765186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.765192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 074a 3976 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.765195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.765199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.765202 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.765207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.765212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.765223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.765226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.765228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.765234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.775121 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.775172 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.775181 LLDP, length 82 [|LLDP] 16:50:40.775183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.775194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.775202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0751 da96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.775205 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.775210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.775215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.775226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.775229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.775231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.775235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.775239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.775245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.785114 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.785165 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.785173 LLDP, length 82 [|LLDP] 16:50:40.785175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.785187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.785195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0759 7bb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.785197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.785201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.785205 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.785210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.785215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.785227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.785230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.785232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.785238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.795116 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.795162 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.795170 LLDP, length 82 [|LLDP] 16:50:40.795171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.795183 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.795189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.795194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.795206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.795210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.795212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.795218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0761 1cd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.795220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.795224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.795228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.795234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.805120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.805168 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.805176 LLDP, length 82 [|LLDP] 16:50:40.805177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.805189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.805197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0768 bdf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.805199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.805203 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.805209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.805214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.805226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.805229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.805231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.805235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.805242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.815113 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.815159 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.815168 LLDP, length 82 [|LLDP] 16:50:40.815169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.815181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.815188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0770 5f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.815190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.815194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.815198 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.815203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.815208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.815218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.815222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.815224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.815230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.825110 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.825153 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.825162 LLDP, length 82 [|LLDP] 16:50:40.825164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.825176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.825183 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.825188 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.825192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.825203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.825206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.825209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0778 0036 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.825211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.825215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.825219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.825225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.835109 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.835151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.835158 LLDP, length 82 [|LLDP] 16:50:40.835160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.835171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.835178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 077f a156 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.835180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.835184 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.835187 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.835192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.835197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.835208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.835211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.835213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.835219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.845111 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.845150 LLDP, length 82 [|LLDP] 16:50:40.845152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.845164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.845171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0787 4276 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.845173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.845177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.845180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.845185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.845191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.845202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.845205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.845207 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.845215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.845220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.855111 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.855156 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.855164 LLDP, length 82 [|LLDP] 16:50:40.855165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.855177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.855184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 078e e396 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.855186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.855191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.855196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.855208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.855211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.855213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.855217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.855220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.855226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.865109 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.865155 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.865164 LLDP, length 82 [|LLDP] 16:50:40.865165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.865177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.865185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0796 84b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.865187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.865191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.865194 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.865200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.865205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.865225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.865229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.865231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.865237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.875114 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.875158 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.875166 LLDP, length 82 [|LLDP] 16:50:40.875168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.875179 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.875185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.875190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.875201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.875204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.875206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.875211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 079e 25d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.875213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.875217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.875221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.875226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.885109 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.885151 LLDP, length 82 [|LLDP] 16:50:40.885153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.885165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.885172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07a5 c6f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.885175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.885178 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.885184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.885189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.885200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.885203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.885213 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.885221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.885225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.885231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.895114 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.895157 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.895165 LLDP, length 82 [|LLDP] 16:50:40.895167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.895178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.895186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ad 6816 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.895188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.895192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.895196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.895202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.895207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.895218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.895221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.895224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.895230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.905108 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.905152 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.905160 LLDP, length 82 [|LLDP] 16:50:40.905161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.905173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.905180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.905186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.905190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.905202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.905214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.905217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07b5 0936 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.905219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.905224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.905227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.905233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.915107 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.915149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.915157 LLDP, length 82 [|LLDP] 16:50:40.915158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.915170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.915176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07bc aa56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.915178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.915182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.915186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.915191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.915196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.915207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.915210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.915212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.915218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.925106 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.925151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.925159 LLDP, length 82 [|LLDP] 16:50:40.925161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.925172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.925179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07c4 4b76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.925182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.925185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.925189 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.925194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.925199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.925210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.925213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.925215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.925221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.935108 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.935149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.935157 LLDP, length 82 [|LLDP] 16:50:40.935158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.935170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.935177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07cb ec96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.935179 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.935184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.935189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.935200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.935204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.935206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.935210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.935213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.935219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.945108 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.945153 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.945160 LLDP, length 82 [|LLDP] 16:50:40.945162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.945174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.945181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07d3 8db6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.945183 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.945187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.945190 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.945196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.945200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.945211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.945214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.945216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.945222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.955108 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.955153 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.955161 LLDP, length 82 [|LLDP] 16:50:40.955162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.955174 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.955180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.955186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.955198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.955201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.955203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.955208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07db 2ed6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.955211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.955214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.955218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.955224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.965109 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.965155 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.965163 LLDP, length 82 [|LLDP] 16:50:40.965164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.965175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.965182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07e2 cff6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.965185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.965188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.965194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.965199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.965210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.965214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.965216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.965220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.965225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.975106 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.975150 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.975158 LLDP, length 82 [|LLDP] 16:50:40.975160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.975172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.975179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ea 7116 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.975181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.975184 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.975188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.975193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.975198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.975209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.975213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.975215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.975221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.985106 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.985149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.985157 LLDP, length 82 [|LLDP] 16:50:40.985159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.985170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.985177 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.985182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.985187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.985198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.985201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.985203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f2 1236 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.985205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.985209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.985213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.985219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:40.995112 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.995156 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:40.995164 LLDP, length 82 [|LLDP] 16:50:40.995165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:40.995177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:40.995184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f9 b356 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:40.995186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:40.995190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:40.995193 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:40.995198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:40.995203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:40.995215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.995218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:40.995220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:40.995226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.005106 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.005151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.005159 LLDP, length 82 [|LLDP] 16:50:41.005160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.005172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.005179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0801 5476 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.005181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.005185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.005188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.005194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.005198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.005219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.005222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.005224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.005230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.015106 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.015149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.015157 LLDP, length 82 [|LLDP] 16:50:41.015158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.015170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.015177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0808 f596 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.015180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.015185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.015190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.015201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.015204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.015206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.015211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.015214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.015220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.025111 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.025159 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.025168 LLDP, length 82 [|LLDP] 16:50:41.025170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.025181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.025189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0810 96b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.025191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.025195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.025199 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.025204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.025209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.025221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.025224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.025226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.025232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.035107 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.035151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.035160 LLDP, length 82 [|LLDP] 16:50:41.035161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.035173 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.035179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.035185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.035195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.035199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.035201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.035207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0818 37d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.035209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.035213 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.035216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.035222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.045104 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.045147 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.045155 LLDP, length 82 [|LLDP] 16:50:41.045157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.045169 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.045175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 081f d8f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.045177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.045181 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.045186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.045191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.045201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.045205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.045207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.045210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.045216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.055109 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.055154 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.055162 LLDP, length 82 [|LLDP] 16:50:41.055163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.055175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.055182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0827 7a16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.055184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.055188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.055191 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.055197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.055202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.055214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.055217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.055219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.055225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.065107 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.065151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.065158 LLDP, length 82 [|LLDP] 16:50:41.065160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.065171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.065178 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.065184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.065189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.065200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.065203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.065205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 082f 1b36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.065207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.065211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.065214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.065220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.075108 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.075150 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.075158 LLDP, length 82 [|LLDP] 16:50:41.075160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.075171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.075178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0836 bc56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.075180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.075184 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.075187 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.075192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.075197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.075208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.075211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.075213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.075219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.085112 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.085165 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.085174 LLDP, length 82 [|LLDP] 16:50:41.085176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.085188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.085195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 083e 5d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.085198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.085202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.085205 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.085211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.085216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.085229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.085232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.085234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.085240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.095107 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.095155 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.095163 LLDP, length 82 [|LLDP] 16:50:41.095165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.095177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.095184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0845 fe96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.095186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.095191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.095196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.095207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.095210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.095213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.095217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.095220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.095226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.105106 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.105152 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.105160 LLDP, length 82 [|LLDP] 16:50:41.105162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.105173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.105181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 084d 9fb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.105183 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.105187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.105190 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.105196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.105201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.105222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.105226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.105228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.105234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.115110 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.115157 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.115165 LLDP, length 82 [|LLDP] 16:50:41.115166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.115178 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.115184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.115190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.115202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.115206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.115208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.115214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0855 40d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.115216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.115220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.115223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.115229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.125105 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.125149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.125158 LLDP, length 82 [|LLDP] 16:50:41.125159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.125171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.125177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 085c e1f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.125180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.125183 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.125188 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.125193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.125204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.125207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.125209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.125213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.125219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.135105 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.135144 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.135151 LLDP, length 82 [|LLDP] 16:50:41.135153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.135165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.135171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0864 8316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.135173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.135177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.135180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.135185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.135190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.135201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.135204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.135206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.135212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.145101 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.145142 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.145150 LLDP, length 82 [|LLDP] 16:50:41.145152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.145163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.145169 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.145175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.145180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.145191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.145194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.145197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 086c 2436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.145199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.145203 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.145206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.145212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.155101 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.155143 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.155150 LLDP, length 82 [|LLDP] 16:50:41.155152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.155163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.155170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0873 c556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.155172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.155176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.155179 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.155184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.155189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.155200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.155203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.155205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.155211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.165101 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.165148 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.165156 LLDP, length 82 [|LLDP] 16:50:41.165158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.165169 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.165176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 087b 6676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.165179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.165182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.165186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.165191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.165197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.165208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.165211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.165213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.165220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.175102 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.175145 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.175153 LLDP, length 82 [|LLDP] 16:50:41.175155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.175166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.175173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0883 0796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.175174 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.175180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.175185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.175196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.175199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.175201 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.175205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.175209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.175214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.185103 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.185146 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.185154 LLDP, length 82 [|LLDP] 16:50:41.185155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.185167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.185173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 088a a8b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.185176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.185179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.185183 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.185188 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.185193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.185204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.185207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.185209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.185215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.195106 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.195149 LLDP, length 82 [|LLDP] 16:50:41.195151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.195163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.195169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.195174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.195184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.195187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.195190 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.195196 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.195202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0892 49d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.195204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.195207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.195211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.195217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.205103 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.205146 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.205154 LLDP, length 82 [|LLDP] 16:50:41.205156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.205168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.205174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0899 eaf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.205177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.205181 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.205186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.205191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.205201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.205204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.205206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.205210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.205225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.215104 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.215147 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.215156 LLDP, length 82 [|LLDP] 16:50:41.215157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.215169 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.215176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a1 8c16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.215178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.215182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.215185 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.215190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.215194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.215205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.215208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.215210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.215216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.225100 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.225147 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.225155 LLDP, length 82 [|LLDP] 16:50:41.225156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.225168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.225175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.225180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.225185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.225196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.225199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.225202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a9 2d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.225204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.225217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.225221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.225227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.235098 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.235138 LLDP, length 82 [|LLDP] 16:50:41.235140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.235152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.235158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b0 ce56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.235160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.235164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.235167 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.235172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.235177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.235188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.235191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.235193 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.235200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.235205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.245098 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.245138 LLDP, length 82 [|LLDP] 16:50:41.245140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.245153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.245159 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b8 6f76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.245161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.245165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.245168 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.245173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.245178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.245189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.245192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.245194 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.245201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.245207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.255097 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.255136 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.255144 LLDP, length 82 [|LLDP] 16:50:41.255145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.255157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.255163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c0 1096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.255165 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.255171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.255176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.255186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.255189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.255191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.255195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.255198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.255204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.265099 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.265141 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.265148 LLDP, length 82 [|LLDP] 16:50:41.265150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.265162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.265168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c7 b1b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.265171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.265174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.265178 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.265183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.265188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.265198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.265201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.265204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.265210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.275098 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.275139 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.275147 LLDP, length 82 [|LLDP] 16:50:41.275149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.275160 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.275166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.275171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.275181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.275185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.275187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.275192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08cf 52d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.275194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.275198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.275201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.275208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.285100 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.285144 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.285153 LLDP, length 82 [|LLDP] 16:50:41.285155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.285166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.285174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d6 f3f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.285176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.285179 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.285185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.285190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.285201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.285204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.285206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.285210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.285216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.295099 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.295142 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.295150 LLDP, length 82 [|LLDP] 16:50:41.295152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.295164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.295171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08de 9516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.295173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.295177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.295180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.295186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.295191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.295202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.295205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.295207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.295214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.305100 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.305138 LLDP, length 82 [|LLDP] 16:50:41.305139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.305152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.305158 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.305163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.305168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.305179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.305182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.305184 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.305191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e6 3636 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.305193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.305197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.305201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.305206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.315098 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.315141 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.315149 LLDP, length 82 [|LLDP] 16:50:41.315150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.315162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.315169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08ed d756 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.315171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.315175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.315178 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.315183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.315189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.315200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.315203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.315206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.315212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.325100 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.325151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.325160 LLDP, length 82 [|LLDP] 16:50:41.325162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.325173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.325180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08f5 7876 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.325183 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.325186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.325190 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.325195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.325200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.325212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.325215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.325218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.325224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.335111 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.335149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.335157 LLDP, length 82 [|LLDP] 16:50:41.335158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.335170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.335177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08fd 1996 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.335179 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.335184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.335189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.335200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.335203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.335205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.335209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.335213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.335219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.345098 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.345139 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.345147 LLDP, length 82 [|LLDP] 16:50:41.345148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.345160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.345166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0904 bab6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.345168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.345172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.345175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.345181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.345186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.345197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.345199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.345202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.345207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.355097 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.355138 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.355146 LLDP, length 82 [|LLDP] 16:50:41.355147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.355159 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.355164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.355170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.355180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.355183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.355186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.355191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 090c 5bd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.355194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.355197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.355201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.355207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.365098 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.365133 LLDP, length 82 [|LLDP] 16:50:41.365135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.365147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.365153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0913 fcf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.365156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.365159 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.365164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.365169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.365180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.365183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.365185 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.365192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.365196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.365202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.375100 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.375151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.375159 LLDP, length 82 [|LLDP] 16:50:41.375160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.375172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.375179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 091b 9e16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.375181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.375185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.375188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.375193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.375199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.375211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.375214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.375217 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.375222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.385099 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.385141 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.385149 LLDP, length 82 [|LLDP] 16:50:41.385151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.385162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.385168 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.385174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.385179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.385189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.385192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.385195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0923 3f36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.385197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.385201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.385204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.385210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.395101 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.395142 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.395150 LLDP, length 82 [|LLDP] 16:50:41.395152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.395163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.395170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 092a e056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.395172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.395175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.395179 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.395184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.395189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.395200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.395203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.395205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.395211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.405096 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.405138 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.405146 LLDP, length 82 [|LLDP] 16:50:41.405147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.405159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.405166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0932 8176 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.405168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.405172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.405176 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.405182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.405186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.405209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.405212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.405214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.405221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.415101 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.415144 LLDP, length 82 [|LLDP] 16:50:41.415146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.415159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.415165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 093a 2296 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.415167 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.415173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.415178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.415189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.415192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.415194 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.415202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.415206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.415210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.415215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.425097 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.425136 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.425144 LLDP, length 82 [|LLDP] 16:50:41.425146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.425158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.425174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0941 c3b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.425176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.425180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.425184 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.425189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.425194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.425205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.425208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.425210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.425216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.435102 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.435146 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.435155 LLDP, length 82 [|LLDP] 16:50:41.435157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.435168 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.435174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.435179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.435189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.435192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.435194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.435200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0949 64d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.435202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.435206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.435209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.435215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.445095 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.445137 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.445145 LLDP, length 82 [|LLDP] 16:50:41.445146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.445158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.445164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0951 05f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.445167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.445170 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.445176 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.445180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.445191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.445194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.445196 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.445200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.445206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.455096 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.455139 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.455147 LLDP, length 82 [|LLDP] 16:50:41.455148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.455159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.455166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0958 a716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.455168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.455172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.455176 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.455181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.455186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.455197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.455200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.455202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.455208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.465094 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.465135 LLDP, length 82 [|LLDP] 16:50:41.465137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.465150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.465156 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.465161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.465166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.465176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.465180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.465182 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.465189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0960 4836 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.465191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.465195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.465198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.465204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.475095 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.475137 LLDP, length 82 [|LLDP] 16:50:41.475139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.475152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.475159 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0967 e956 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.475161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.475164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.475168 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.475173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.475178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.475190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.475193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.475195 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.475202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.475207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.485096 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.485138 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.485146 LLDP, length 82 [|LLDP] 16:50:41.485148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.485159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.485166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 096f 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.485168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.485172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.485175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.485181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.485186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.485197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.485200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.485203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.485208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.495094 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.495133 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.495141 LLDP, length 82 [|LLDP] 16:50:41.495143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.495154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.495161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0977 2b96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.495163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.495168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.495173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.495183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.495186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.495189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.495192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.495196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.495202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.505094 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.505136 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.505144 LLDP, length 82 [|LLDP] 16:50:41.505145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.505156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.505163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 097e ccb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.505165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.505169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.505173 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.505178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.505183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.505193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.505196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.505199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.505204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.515099 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.515142 LLDP, length 82 [|LLDP] 16:50:41.515143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.515156 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.515162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.515168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.515179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.515183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.515185 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.515192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.515198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0986 6dd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.515200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.515204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.515207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.515213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.525093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.525135 LLDP, length 82 [|LLDP] 16:50:41.525137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.525149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.525156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 098e 0ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.525159 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.525162 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.525167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.525172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.525183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.525186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.525189 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.525195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.525208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.525214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.535099 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.535143 LLDP, length 82 [|LLDP] 16:50:41.535145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.535158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.535164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0995 b016 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.535167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.535170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.535174 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.535179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.535184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.535195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.535198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.535200 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.535207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.535212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.545093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.545135 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.545143 LLDP, length 82 [|LLDP] 16:50:41.545144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.545156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.545170 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.545176 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.545181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.545192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.545195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.545197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 099d 5136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.545199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.545203 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.545207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.545212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.555093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.555135 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.555142 LLDP, length 82 [|LLDP] 16:50:41.555144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.555155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.555162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09a4 f256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.555164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.555168 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.555171 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.555176 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.555181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.555191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.555194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.555196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.555202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.565092 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.565131 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.565138 LLDP, length 82 [|LLDP] 16:50:41.565140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.565151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.565170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ac 9376 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.565173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.565178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.565181 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.565187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.565192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.565202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.565205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.565207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.565213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.575105 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.575155 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.575163 LLDP, length 82 [|LLDP] 16:50:41.575165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.575177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.575185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09b4 3496 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.575188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.575195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.575200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.575214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.575218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.575220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.575224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.575228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.575235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.585100 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.585154 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.585163 LLDP, length 82 [|LLDP] 16:50:41.585165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.585176 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.585184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09bb d5b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.585186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.585190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.585193 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.585199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.585204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.585218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.585221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.585223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.585230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.595096 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.595137 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.595145 LLDP, length 82 [|LLDP] 16:50:41.595147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.595158 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.595164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.595170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.595181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.595185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.595187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.595193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09c3 76d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.595195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.595199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.595202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.595208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.605096 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.605140 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.605148 LLDP, length 82 [|LLDP] 16:50:41.605149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.605160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.605167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09cb 17f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.605169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.605173 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.605178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.605184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.605195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.605198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.605200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.605204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.605210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.615093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.615137 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.615145 LLDP, length 82 [|LLDP] 16:50:41.615147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.615159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.615166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09d2 b916 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.615168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.615172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.615175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.615180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.615185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.615196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.615199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.615201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.615207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.625095 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.625137 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.625145 LLDP, length 82 [|LLDP] 16:50:41.625147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.625158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.625164 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.625170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.625176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.625187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.625191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.625193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09da 5a36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.625195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.625199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.625203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.625219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.635093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.635139 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.635147 LLDP, length 82 [|LLDP] 16:50:41.635149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.635160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.635167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e1 fb56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.635170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.635173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.635177 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.635182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.635188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.635199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.635202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.635204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.635210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.645093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.645138 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.645147 LLDP, length 82 [|LLDP] 16:50:41.645148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.645161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.645168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e9 9c76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.645170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.645174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.645177 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.645183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.645188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.645199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.645211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.645213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.645220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.655096 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.655141 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.655149 LLDP, length 82 [|LLDP] 16:50:41.655151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.655162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.655170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f1 3d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.655172 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.655177 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.655183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.655193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.655196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.655198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.655202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.655206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.655212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.665093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.665137 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.665145 LLDP, length 82 [|LLDP] 16:50:41.665147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.665159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.665166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f8 deb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.665168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.665171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.665175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.665180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.665185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.665196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.665199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.665202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.665207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.675090 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.675132 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.675140 LLDP, length 82 [|LLDP] 16:50:41.675141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.675153 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.675158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.675164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.675174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.675177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.675179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.675185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a00 7fd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.675187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.675191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.675194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.675200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.685090 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.685134 LLDP, length 82 [|LLDP] 16:50:41.685136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.685148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.685154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a08 20f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.685157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.685160 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.685166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.685171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.685182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.685185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.685187 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.685194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.685198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.685204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.695090 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.695135 LLDP, length 82 [|LLDP] 16:50:41.695136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.695149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.695156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a0f c216 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.695158 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.695162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.695165 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.695170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.695175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.695185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.695189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.695191 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.695198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.695204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.705091 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.705131 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.705139 LLDP, length 82 [|LLDP] 16:50:41.705141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.705152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.705159 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.705164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.705169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.705180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.705183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.705186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a17 6336 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.705188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.705192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.705195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.705201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.715089 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.715132 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.715139 LLDP, length 82 [|LLDP] 16:50:41.715141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.715153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.715160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a1f 0456 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.715162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.715166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.715169 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.715174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.715179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.715190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.715193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.715195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.715201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.725092 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.725138 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.725147 LLDP, length 82 [|LLDP] 16:50:41.725148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.725160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.725167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a26 a576 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.725169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.725173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.725176 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.725182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.725187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.725198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.725201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.725203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.725209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.735097 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.735140 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.735148 LLDP, length 82 [|LLDP] 16:50:41.735149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.735161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.735167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a2e 4696 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.735170 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.735175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.735180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.735190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.735193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.735196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.735200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.735203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.735209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.745092 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.745141 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.745149 LLDP, length 82 [|LLDP] 16:50:41.745151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.745163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.745171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a35 e7b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.745173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.745177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.745180 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.745185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.745190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.745202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.745206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.745208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.745214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.755097 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.755145 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.755153 LLDP, length 82 [|LLDP] 16:50:41.755155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.755167 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.755173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.755180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.755192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.755195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.755197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.755203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a3d 88d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.755206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.755209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.755213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.755219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.765092 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.765140 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.765148 LLDP, length 82 [|LLDP] 16:50:41.765150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.765161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.765168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a45 29f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.765171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.765174 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.765180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.765185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.765197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.765200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.765202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.765206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.765211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.775088 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.775132 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.775140 LLDP, length 82 [|LLDP] 16:50:41.775141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.775153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.775160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a4c cb16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.775162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.775166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.775169 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.775175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.775180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.775190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.775193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.775196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.775201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.785089 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.785134 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.785142 LLDP, length 82 [|LLDP] 16:50:41.785143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.785155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.785162 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.785167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.785172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.785183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.785186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.785189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a54 6c36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.785191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.785195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.785198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.785204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.795088 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.795132 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.795140 LLDP, length 82 [|LLDP] 16:50:41.795141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.795154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.795160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a5c 0d56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.795163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.795166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.795170 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.795175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.795180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.795192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.795195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.795197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.795203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.805093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.805139 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.805148 LLDP, length 82 [|LLDP] 16:50:41.805149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.805161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.805168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a63 ae76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.805170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.805174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.805177 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.805182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.805187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.805198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.805201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.805203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.805209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.815099 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.815136 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.815145 LLDP, length 82 [|LLDP] 16:50:41.815146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.815158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.815165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a6b 4f96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.815167 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.815173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.815178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.815188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.815192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.815194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.815198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.815201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.815207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.825091 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.825130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.825139 LLDP, length 82 [|LLDP] 16:50:41.825141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.825152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.825159 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a72 f0b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.825161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.825165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.825168 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.825174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.825179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.825191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.825194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.825196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.825202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.835088 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.835130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.835138 LLDP, length 82 [|LLDP] 16:50:41.835140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.835152 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.835158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.835164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.835175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.835178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.835180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.835186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a7a 91d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.835188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.835191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.835195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.835201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.845088 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.845128 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.845136 LLDP, length 82 [|LLDP] 16:50:41.845137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.845149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.845155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a82 32f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.845158 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.845161 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.845166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.845171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.845183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.845186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.845188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.845192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.845198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.855090 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.855130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.855139 LLDP, length 82 [|LLDP] 16:50:41.855140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.855152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.855159 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a89 d416 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.855162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.855174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.855178 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.855183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.855188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.855199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.855203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.855205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.855211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.865100 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.865155 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.865164 LLDP, length 82 [|LLDP] 16:50:41.865166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.865178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.865186 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.865192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.865197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.865210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.865213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.865216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a91 7536 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.865218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.865222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.865225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.865231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.875090 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.875136 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.875145 LLDP, length 82 [|LLDP] 16:50:41.875147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.875158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.875165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a99 1656 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.875167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.875171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.875174 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.875179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.875184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.875195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.875198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.875200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.875206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.885086 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.885127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.885136 LLDP, length 82 [|LLDP] 16:50:41.885137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.885149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.885156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa0 b776 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.885158 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.885162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.885165 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.885171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.885175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.885186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.885189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.885192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.885197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.895095 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.895131 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.895139 LLDP, length 82 [|LLDP] 16:50:41.895141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.895153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.895160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa8 5896 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.895162 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.895168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.895173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.895183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.895187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.895189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.895193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.895196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.895202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.905091 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.905132 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.905140 LLDP, length 82 [|LLDP] 16:50:41.905142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.905153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.905160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aaf f9b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.905162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.905166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.905169 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.905174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.905179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.905190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.905193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.905195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.905201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.915088 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.915130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.915138 LLDP, length 82 [|LLDP] 16:50:41.915140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.915152 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.915158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.915163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.915174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.915177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.915179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.915185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab7 9ad6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.915187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.915191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.915194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.915200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.925085 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.925127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.925135 LLDP, length 82 [|LLDP] 16:50:41.925137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.925148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.925154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0abf 3bf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.925156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.925160 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.925165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.925171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.925181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.925184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.925187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.925191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.925196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.935084 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.935127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.935135 LLDP, length 82 [|LLDP] 16:50:41.935137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.935148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.935154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac6 dd16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.935157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.935160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.935164 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.935170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.935175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.935185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.935189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.935191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.935197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.945084 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.945126 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.945134 LLDP, length 82 [|LLDP] 16:50:41.945135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.945147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.945154 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.945159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.945164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.945175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.945178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.945180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ace 7e36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.945182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.945187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.945190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.945196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.955094 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.955151 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.955160 LLDP, length 82 [|LLDP] 16:50:41.955162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.955174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.955183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad6 1f56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.955185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.955189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.955192 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.955198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.955203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.955215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.955218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.955220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.955227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.965087 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.965138 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.965146 LLDP, length 82 [|LLDP] 16:50:41.965148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.965160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.965167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0add c076 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.965170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.965174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.965177 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.965182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.965188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.965199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.965203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.965205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.965211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.975084 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.975126 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.975134 LLDP, length 82 [|LLDP] 16:50:41.975136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.975147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.975153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ae5 6196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.975156 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.975161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.975166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.975177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.975180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.975182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.975186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.975189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.975195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.985083 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.985126 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.985134 LLDP, length 82 [|LLDP] 16:50:41.985136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.985147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.985154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aed 02b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.985156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.985159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.985163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.985168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.985173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.985184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.985187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.985190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.985196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:41.995095 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.995149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:41.995158 LLDP, length 82 [|LLDP] 16:50:41.995160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:41.995173 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:41.995179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:41.995186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:41.995198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.995202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:41.995204 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:41.995210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0af4 a3d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:41.995212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:41.995216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:41.995220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:41.995226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.005089 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.005137 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.005146 LLDP, length 82 [|LLDP] 16:50:42.005148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.005160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.005168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0afc 44f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.005170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.005173 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.005179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.005184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.005195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.005199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.005201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.005205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.005211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.015081 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.015116 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.015124 LLDP, length 82 [|LLDP] 16:50:42.015126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.015137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.015143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b03 e616 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.015145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.015149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.015152 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.015157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.015162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.015172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.015176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.015178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.015184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.025078 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.025109 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.025117 LLDP, length 82 [|LLDP] 16:50:42.025119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.025130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.025136 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.025141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.025146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.025164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.025167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.025169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b0b 8736 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.025171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.025176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.025179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.025185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.035083 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.035126 LLDP, length 82 [|LLDP] 16:50:42.035128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.035141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.035148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b13 2856 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.035150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.035154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.035157 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.035162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.035167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.035177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.035180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.035183 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.035190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.035195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.045077 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.045110 LLDP, length 82 [|LLDP] 16:50:42.045112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.045124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.045130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b1a c976 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.045132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.045136 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.045139 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.045144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.045149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.045159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.045162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.045164 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.045170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.045175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.055077 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.055103 LLDP, length 82 [|LLDP] 16:50:42.055105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.055117 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.055123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b22 6a96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.055125 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.055129 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.055134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.055144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.055147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.055149 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.055155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.055159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.055163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.055168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.065084 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.065128 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.065136 LLDP, length 82 [|LLDP] 16:50:42.065138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.065150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.065157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b2a 0bb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.065159 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.065162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.065166 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.065172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.065177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.065187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.065190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.065193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.065199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.075079 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.075118 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.075126 LLDP, length 82 [|LLDP] 16:50:42.075128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.075139 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.075145 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.075150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.075160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.075163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.075166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.075171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b31 acd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.075173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.075176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.075180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.075185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.085083 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.085123 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.085131 LLDP, length 82 [|LLDP] 16:50:42.085133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.085144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.085150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b39 4df6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.085152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.085156 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.085161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.085166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.085175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.085178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.085180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.085184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.085190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.095077 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.095115 LLDP, length 82 [|LLDP] 16:50:42.095117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.095129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.095136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b40 ef16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.095138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.095142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.095145 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.095151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.095156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.095166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.095169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.095171 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.095178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.095183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.105086 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.105133 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.105142 LLDP, length 82 [|LLDP] 16:50:42.105144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.105155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.105163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.105168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.105173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.105184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.105188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.105190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b48 9036 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.105192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.105197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.105200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.105206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.115079 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.115117 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.115126 LLDP, length 82 [|LLDP] 16:50:42.115127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.115138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.115144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b50 3156 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.115146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.115150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.115153 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.115158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.115163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.115173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.115176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.115179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.115184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.125081 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.125122 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.125130 LLDP, length 82 [|LLDP] 16:50:42.125132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.125143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.125150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b57 d276 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.125152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.125156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.125159 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.125165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.125170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.125179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.125182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.125184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.125190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.135080 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.135118 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.135126 LLDP, length 82 [|LLDP] 16:50:42.135127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.135139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.135145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b5f 7396 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.135147 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.135152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.135157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.135168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.135171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.135173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.135177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.135180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.135186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.145076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.145111 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.145119 LLDP, length 82 [|LLDP] 16:50:42.145121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.145132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.145139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b67 14b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.145141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.145144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.145147 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.145152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.145157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.145167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.145170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.145172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.145178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.155075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.155110 LLDP, length 82 [|LLDP] 16:50:42.155111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.155124 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.155130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.155135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.155145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.155148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.155150 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.155156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.155162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b6e b5d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.155164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.155167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.155170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.155175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.165077 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.165114 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.165122 LLDP, length 82 [|LLDP] 16:50:42.165124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.165135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.165141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b76 56f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.165143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.165146 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.165152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.165156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.165166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.165170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.165172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.165176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.165181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.175077 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.175113 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.175121 LLDP, length 82 [|LLDP] 16:50:42.175122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.175133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.175140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b7d f816 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.175142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.175146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.175149 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.175155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.175159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.175170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.175173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.175175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.175181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.185081 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.185124 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.185133 LLDP, length 82 [|LLDP] 16:50:42.185135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.185146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.185153 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.185158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.185163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.185174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.185177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.185179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b85 9936 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.185181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.185185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.185189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.185195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.195080 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.195120 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.195127 LLDP, length 82 [|LLDP] 16:50:42.195129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.195141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.195147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b8d 3a56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.195149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.195153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.195156 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.195161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.195166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.195177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.195180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.195182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.195188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.205076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.205116 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.205124 LLDP, length 82 [|LLDP] 16:50:42.205125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.205137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.205143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b94 db76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.205145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.205149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.205152 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.205157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.205162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.205172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.205175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.205177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.205182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.215075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.215112 LLDP, length 82 [|LLDP] 16:50:42.215114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.215126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.215133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b9c 7c96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.215135 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.215140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.215145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.215155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.215158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.215160 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.215167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.215171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.215175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.215180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.225079 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.225108 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.225116 LLDP, length 82 [|LLDP] 16:50:42.225117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.225128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.225134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ba4 1db6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.225137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.225140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.225144 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.225149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.225154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.225163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.225167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.225169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.225175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.235074 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.235110 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.235118 LLDP, length 82 [|LLDP] 16:50:42.235119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.235131 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.235136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.235141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.235151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.235154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.235156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.235161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bab bed6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.235163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.235167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.235171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.235176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.245083 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.245127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.245135 LLDP, length 82 [|LLDP] 16:50:42.245137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.245148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.245155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bb3 5ff6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.245157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.245161 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.245166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.245171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.245182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.245185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.245187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.245191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.245196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.255082 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.255126 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.255134 LLDP, length 82 [|LLDP] 16:50:42.255136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.255147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.255154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bbb 0116 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.255156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.255159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.255163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.255168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.255173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.255184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.255187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.255189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.255195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.265078 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.265130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.265138 LLDP, length 82 [|LLDP] 16:50:42.265139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.265150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.265157 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.265162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.265167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.265179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.265182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.265184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bc2 a236 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.265187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.265190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.265194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.265200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.275079 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.275124 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.275132 LLDP, length 82 [|LLDP] 16:50:42.275134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.275145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.275152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bca 4356 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.275154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.275158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.275161 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.275166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.275171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.275181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.275184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.275187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.275193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.285083 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.285124 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.285133 LLDP, length 82 [|LLDP] 16:50:42.285135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.285147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.285154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd1 e476 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.285156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.285160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.285163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.285168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.285173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.285184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.285187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.285189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.285195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.295078 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.295118 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.295126 LLDP, length 82 [|LLDP] 16:50:42.295128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.295139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.295145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd9 8596 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.295148 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.295153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.295158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.295169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.295172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.295174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.295178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.295182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.295188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.305076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.305118 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.305127 LLDP, length 82 [|LLDP] 16:50:42.305128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.305139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.305145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be1 26b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.305147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.305151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.305154 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.305160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.305165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.305175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.305178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.305180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.305186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.315075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.315113 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.315120 LLDP, length 82 [|LLDP] 16:50:42.315121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.315133 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.315138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.315144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.315154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.315156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.315158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.315164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be8 c7d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.315166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.315169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.315173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.315178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.325072 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.325108 LLDP, length 82 [|LLDP] 16:50:42.325110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.325122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.325128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf0 68f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.325130 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.325133 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.325138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.325143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.325153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.325156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.325158 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.325165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.325169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.325174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.335116 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.335193 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.335204 LLDP, length 82 [|LLDP] 16:50:42.335206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.335219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.335229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf8 0a16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.335232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.335236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.335240 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.335247 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.335253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.335269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.335273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.335275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.335282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.345119 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.345194 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.345205 LLDP, length 82 [|LLDP] 16:50:42.345206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.345219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.345229 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.345237 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.345244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.345260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.345264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.345267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bff ab36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.345269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.345273 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.345277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.345284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.355113 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.355186 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.355197 LLDP, length 82 [|LLDP] 16:50:42.355199 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.355211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.355222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c07 4c56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.355224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.355228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.355232 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.355237 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.355244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.355259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.355263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.355265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.355273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.365116 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.365190 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.365201 LLDP, length 82 [|LLDP] 16:50:42.365203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.365215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.365225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c0e ed76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.365227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.365231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.365235 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.365242 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.365249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.365265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.365269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.365271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.365278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.375129 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.375208 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.375219 LLDP, length 82 [|LLDP] 16:50:42.375221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.375234 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.375244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c16 8e96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.375247 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.375253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.375259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.375275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.375279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.375282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.375286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.375290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.375298 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.385120 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.385195 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.385206 LLDP, length 82 [|LLDP] 16:50:42.385208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.385220 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.385231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c1e 2fb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.385234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.385238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.385241 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.385248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.385254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.385270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.385274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.385276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.385283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.395116 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.395193 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.395204 LLDP, length 82 [|LLDP] 16:50:42.395206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.395219 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.395226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.395234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.395249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.395253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.395256 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.395264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c25 d0d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.395266 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.395270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.395274 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.395281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.405107 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.405177 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.405187 LLDP, length 82 [|LLDP] 16:50:42.405189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.405201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.405211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c2d 71f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.405214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.405218 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.405224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.405231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.405260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.405264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.405266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.405270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.405277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.415083 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.415135 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.415143 LLDP, length 82 [|LLDP] 16:50:42.415145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.415156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.415165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c35 1316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.415167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.415171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.415175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.415180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.415184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.415196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.415200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.415202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.415209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.425076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.425123 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.425131 LLDP, length 82 [|LLDP] 16:50:42.425133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.425145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.425151 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.425157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.425162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.425185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.425190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.425192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c3c b436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.425194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.425199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.425203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.425209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.435084 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.435133 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.435142 LLDP, length 82 [|LLDP] 16:50:42.435144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.435155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.435165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c44 5556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.435167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.435171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.435175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.435181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.435186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.435200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.435204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.435206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.435213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.445078 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.445124 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.445132 LLDP, length 82 [|LLDP] 16:50:42.445133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.445145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.445153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c4b f676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.445155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.445159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.445162 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.445168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.445173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.445185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.445188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.445190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.445197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.455082 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.455130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.455139 LLDP, length 82 [|LLDP] 16:50:42.455140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.455152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.455160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c53 9796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.455162 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.455168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.455173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.455186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.455189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.455191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.455195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.455199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.455205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.465081 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.465136 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.465145 LLDP, length 82 [|LLDP] 16:50:42.465146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.465158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.465166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c5b 38b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.465168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.465171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.465175 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.465180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.465186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.465197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.465200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.465202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.465208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.475076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.475123 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.475131 LLDP, length 82 [|LLDP] 16:50:42.475133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.475144 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.475151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.475157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.475168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.475172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.475174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.475180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c62 d9d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.475182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.475186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.475189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.475196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.485075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.485124 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.485132 LLDP, length 82 [|LLDP] 16:50:42.485134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.485145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.485152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c6a 7af6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.485155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.485158 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.485163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.485168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.485180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.485183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.485185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.485189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.485195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.495075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.495123 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.495132 LLDP, length 82 [|LLDP] 16:50:42.495133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.495145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.495152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c72 1c16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.495155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.495158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.495162 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.495167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.495172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.495184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.495188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.495190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.495196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.505075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.505121 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.505129 LLDP, length 82 [|LLDP] 16:50:42.505131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.505142 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.505149 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.505154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.505159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.505171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.505174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.505177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c79 bd36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.505179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.505183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.505187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.505192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.515076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.515114 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.515122 LLDP, length 82 [|LLDP] 16:50:42.515123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.515135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.515142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c81 5e56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.515144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.515147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.515151 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.515156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.515161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.515171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.515174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.515177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.515182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.525080 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.525134 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.525143 LLDP, length 82 [|LLDP] 16:50:42.525145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.525157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.525165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c88 ff76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.525167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.525171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.525174 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.525180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.525185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.525197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.525200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.525203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.525209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.535076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.535127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.535135 LLDP, length 82 [|LLDP] 16:50:42.535137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.535149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.535156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c90 a096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.535158 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.535164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.535169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.535180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.535184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.535186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.535190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.535194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.535200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.545081 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.545129 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.545137 LLDP, length 82 [|LLDP] 16:50:42.545139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.545150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.545158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c98 41b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.545160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.545164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.545167 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.545172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.545177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.545189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.545192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.545194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.545200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.555075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.555120 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.555128 LLDP, length 82 [|LLDP] 16:50:42.555130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.555142 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.555147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.555153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.555164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.555167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.555169 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.555175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c9f e2d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.555177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.555181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.555185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.555190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.565076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.565128 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.565136 LLDP, length 82 [|LLDP] 16:50:42.565138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.565150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.565158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca7 83f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.565161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.565165 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.565170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.565175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.565187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.565190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.565192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.565196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.565203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.575078 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.575118 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.575126 LLDP, length 82 [|LLDP] 16:50:42.575128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.575139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.575147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0caf 2516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.575149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.575153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.575157 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.575162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.575167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.575177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.575181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.575183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.575189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.585073 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.585117 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.585125 LLDP, length 82 [|LLDP] 16:50:42.585127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.585139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.585146 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.585151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.585156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.585167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.585170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.585172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb6 c636 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.585175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.585179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.585182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.585188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.595070 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.595115 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.595124 LLDP, length 82 [|LLDP] 16:50:42.595125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.595137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.595144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cbe 6756 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.595146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.595150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.595153 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.595158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.595164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.595174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.595177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.595179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.595186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.605071 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.605115 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.605123 LLDP, length 82 [|LLDP] 16:50:42.605124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.605136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.605143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cc6 0876 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.605145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.605149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.605152 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.605157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.605162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.605173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.605176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.605178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.605184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.615071 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.615116 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.615124 LLDP, length 82 [|LLDP] 16:50:42.615126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.615137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.615144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ccd a996 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.615146 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.615152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.615156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.615167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.615170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.615172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.615176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.615179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.615186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.625076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.625127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.625136 LLDP, length 82 [|LLDP] 16:50:42.625137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.625149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.625156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cd5 4ab6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.625159 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.625162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.625166 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.625171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.625176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.625187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.625191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.625193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.625199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.635072 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.635124 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.635132 LLDP, length 82 [|LLDP] 16:50:42.635134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.635145 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.635151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.635157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.635168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.635171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.635174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.635180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cdc ebd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.635182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.635186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.635189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.635195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.645072 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.645118 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.645126 LLDP, length 82 [|LLDP] 16:50:42.645127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.645139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.645146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ce4 8cf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.645148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.645152 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.645157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.645162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.645173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.645176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.645179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.645182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.645189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.655070 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.655127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.655136 LLDP, length 82 [|LLDP] 16:50:42.655138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.655150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.655158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cec 2e16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.655160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.655164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.655167 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.655173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.655178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.655189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.655192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.655194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.655200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.665068 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.665117 LLDP, length 82 [|LLDP] 16:50:42.665119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.665132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.665138 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.665144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.665149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.665160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.665163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.665165 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.665172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cf3 cf36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.665175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.665179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.665182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.665188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.675082 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.675148 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.675156 LLDP, length 82 [|LLDP] 16:50:42.675158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.675169 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.675178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cfb 7056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.675181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.675185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.675188 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.675195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.675200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.675214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.675218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.675220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.675227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.685093 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.685154 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.685164 LLDP, length 82 [|LLDP] 16:50:42.685165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.685177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.685185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d03 1176 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.685188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.685192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.685196 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.685201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.685207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.685220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.685224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.685226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.685233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.695076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.695130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.695138 LLDP, length 82 [|LLDP] 16:50:42.695140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.695152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.695160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d0a b296 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.695163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.695168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.695173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.695185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.695189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.695191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.695195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.695198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.695205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.705071 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.705118 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.705127 LLDP, length 82 [|LLDP] 16:50:42.705128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.705140 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.705148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d12 53b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.705150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.705154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.705157 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.705162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.705167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.705179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.705183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.705185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.705191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.715067 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.715112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.715120 LLDP, length 82 [|LLDP] 16:50:42.715122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.715133 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.715139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.715145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.715156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.715159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.715161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.715167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d19 f4d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.715169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.715173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.715176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.715182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.725069 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.725112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.725120 LLDP, length 82 [|LLDP] 16:50:42.725122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.725133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.725140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d21 95f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.725142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.725146 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.725151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.725156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.725167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.725170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.725172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.725176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.725182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.735070 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.735115 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.735123 LLDP, length 82 [|LLDP] 16:50:42.735125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.735137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.735144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d29 3716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.735146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.735150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.735154 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.735159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.735164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.735175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.735178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.735180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.735186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.745074 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.745125 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.745134 LLDP, length 82 [|LLDP] 16:50:42.745135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.745147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.745155 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.745160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.745165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.745176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.745179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.745182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d30 d836 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.745184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.745188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.745192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.745198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.755076 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.755127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.755135 LLDP, length 82 [|LLDP] 16:50:42.755137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.755148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.755156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d38 7956 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.755158 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.755162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.755166 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.755171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.755176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.755188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.755191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.755193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.755199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.765071 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.765120 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.765128 LLDP, length 82 [|LLDP] 16:50:42.765130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.765142 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.765149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d40 1a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.765151 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.765155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.765158 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.765163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.765169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.765180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.765183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.765185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.765191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.775070 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.775120 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.775128 LLDP, length 82 [|LLDP] 16:50:42.775130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.775141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.775149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d47 bb96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.775151 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.775156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.775161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.775173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.775176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.775178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.775182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.775186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.775192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.785071 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.785116 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.785124 LLDP, length 82 [|LLDP] 16:50:42.785126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.785137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.785145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d4f 5cb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.785147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.785150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.785154 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.785159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.785164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.785176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.785179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.785181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.785187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.795068 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.795112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.795120 LLDP, length 82 [|LLDP] 16:50:42.795121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.795132 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.795138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.795144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.795155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.795158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.795160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.795165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d56 fdd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.795168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.795171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.795175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.795181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.805075 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.805129 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.805137 LLDP, length 82 [|LLDP] 16:50:42.805138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.805150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.805158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d5e 9ef6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.805160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.805164 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.805169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.805175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.805186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.805190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.805192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.805196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.805202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.815068 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.815120 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.815128 LLDP, length 82 [|LLDP] 16:50:42.815130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.815141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.815148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d66 4016 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.815151 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.815155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.815159 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.815163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.815169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.815181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.815184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.815186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.815193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.825074 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.825122 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.825130 LLDP, length 82 [|LLDP] 16:50:42.825132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.825144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.825151 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.825156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.825162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.825173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.825176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.825178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d6d e136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.825181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.825185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.825188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.825193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.835066 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.835112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.835121 LLDP, length 82 [|LLDP] 16:50:42.835122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.835134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.835141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d75 8256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.835143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.835147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.835150 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.835156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.835161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.835172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.835176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.835178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.835184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.845074 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.845130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.845138 LLDP, length 82 [|LLDP] 16:50:42.845140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.845152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.845160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d7d 2376 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.845162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.845166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.845170 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.845175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.845180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.845192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.845196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.845198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.845204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.855069 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.855117 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.855125 LLDP, length 82 [|LLDP] 16:50:42.855127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.855139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.855147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d84 c496 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.855149 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.855154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.855159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.855171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.855174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.855176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.855180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.855184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.855190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.865066 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.865112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.865120 LLDP, length 82 [|LLDP] 16:50:42.865122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.865133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.865140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d8c 65b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.865143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.865146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.865150 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.865155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.865161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.865172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.865176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.865178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.865184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.875067 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.875110 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.875118 LLDP, length 82 [|LLDP] 16:50:42.875120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.875131 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.875137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.875143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.875154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.875158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.875160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.875165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d94 06d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.875167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.875171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.875174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.875180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.885064 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.885107 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.885115 LLDP, length 82 [|LLDP] 16:50:42.885117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.885129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.885136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d9b a7f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.885139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.885142 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.885147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.885152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.885164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.885167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.885169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.885173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.885179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.895065 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.895109 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.895117 LLDP, length 82 [|LLDP] 16:50:42.895119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.895131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.895138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0da3 4916 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.895141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.895145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.895148 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.895153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.895158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.895169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.895172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.895174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.895180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.905067 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.905117 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.905125 LLDP, length 82 [|LLDP] 16:50:42.905127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.905138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.905145 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.905151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.905156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.905166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.905169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.905172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0daa ea36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.905174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.905178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.905181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.905187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.915066 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.915116 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.915124 LLDP, length 82 [|LLDP] 16:50:42.915126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.915137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.915145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0db2 8b56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.915147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.915151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.915155 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.915160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.915165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.915177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.915180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.915182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.915188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.925063 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.925112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.925120 LLDP, length 82 [|LLDP] 16:50:42.925122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.925133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.925140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dba 2c76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.925142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.925146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.925149 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.925154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.925159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.925170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.925174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.925176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.925182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.935063 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.935117 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.935126 LLDP, length 82 [|LLDP] 16:50:42.935127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.935139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.935146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc1 cd96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.935149 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.935154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.935159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.935170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.935173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.935175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.935179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.935182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.935188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.945065 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.945112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.945120 LLDP, length 82 [|LLDP] 16:50:42.945121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.945133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.945140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc9 6eb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.945142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.945146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.945150 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.945155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.945160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.945171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.945174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.945177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.945183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.955065 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.955114 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.955122 LLDP, length 82 [|LLDP] 16:50:42.955124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.955136 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.955142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.955148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.955159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.955163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.955165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.955170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd1 0fd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.955172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.955176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.955180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.955186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.965065 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.965113 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.965121 LLDP, length 82 [|LLDP] 16:50:42.965122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.965134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.965141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd8 b0f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.965143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.965147 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.965153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.965158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.965169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.965172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.965174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.965178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.965184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.975071 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.975112 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.975120 LLDP, length 82 [|LLDP] 16:50:42.975121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.975133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.975141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de0 5216 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.975143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.975147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.975150 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.975155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.975161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.975172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.975175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.975177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.975183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.985063 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.985108 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.985116 LLDP, length 82 [|LLDP] 16:50:42.985117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.985129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.985136 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.985141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.985146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.985157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.985160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.985162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de7 f336 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.985165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.985168 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.985172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.985178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:42.995062 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.995106 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:42.995114 LLDP, length 82 [|LLDP] 16:50:42.995115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:42.995126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:42.995134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0def 9456 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:42.995136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:42.995140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:42.995144 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:42.995149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:42.995153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:42.995164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.995167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:42.995169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:42.995176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.005060 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.005106 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.005115 LLDP, length 82 [|LLDP] 16:50:43.005116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.005128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.005134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df7 3576 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.005137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.005140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.005144 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.005149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.005154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.005165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.005168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.005170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.005176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.015063 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.015108 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.015116 LLDP, length 82 [|LLDP] 16:50:43.015117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.015129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.015136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dfe d696 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.015138 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.015143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.015149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.015159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.015163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.015165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.015169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.015172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.015178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.025067 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.025116 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.025124 LLDP, length 82 [|LLDP] 16:50:43.025126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.025138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.025145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e06 77b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.025147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.025151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.025154 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.025159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.025164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.025175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.025178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.025180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.025186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.035062 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.035113 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.035122 LLDP, length 82 [|LLDP] 16:50:43.035124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.035135 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.035141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.035147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.035158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.035161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.035163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.035170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e0e 18d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.035172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.035176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.035179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.035185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.045063 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.045113 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.045121 LLDP, length 82 [|LLDP] 16:50:43.045123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.045135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.045142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e15 b9f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.045144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.045148 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.045153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.045158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.045169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.045172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.045174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.045178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.045184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.055059 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.055106 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.055114 LLDP, length 82 [|LLDP] 16:50:43.055116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.055128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.055136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e1d 5b16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.055139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.055142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.055146 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.055151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.055156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.055168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.055171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.055173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.055179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.065061 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.065107 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.065115 LLDP, length 82 [|LLDP] 16:50:43.065117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.065128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.065136 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.065141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.065146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.065157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.065160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.065163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e24 fc36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.065166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.065169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.065173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.065179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.075058 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.075103 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.075111 LLDP, length 82 [|LLDP] 16:50:43.075112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.075124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.075131 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e2c 9d56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.075133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.075137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.075140 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.075145 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.075150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.075161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.075164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.075166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.075172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.085066 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.085120 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.085128 LLDP, length 82 [|LLDP] 16:50:43.085130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.085142 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.085150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e34 3e76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.085152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.085156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.085159 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.085165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.085170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.085182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.085185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.085187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.085193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.095062 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.095111 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.095119 LLDP, length 82 [|LLDP] 16:50:43.095121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.095132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.095140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e3b df96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.095142 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.095147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.095152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.095164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.095167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.095169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.095173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.095177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.095182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.105066 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.105113 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.105121 LLDP, length 82 [|LLDP] 16:50:43.105122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.105134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.105142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e43 80b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.105144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.105148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.105151 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.105156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.105161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.105172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.105175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.105177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.105183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.115054 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.115096 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.115104 LLDP, length 82 [|LLDP] 16:50:43.115106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.115118 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.115123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.115129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.115139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.115142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.115145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.115150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e4b 21d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.115153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.115156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.115160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.115166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.125064 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.125115 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.125124 LLDP, length 82 [|LLDP] 16:50:43.125126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.125137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.125145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e52 c2f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.125148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.125151 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.125157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.125162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.125174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.125178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.125180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.125184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.125190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.135058 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.135104 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.135112 LLDP, length 82 [|LLDP] 16:50:43.135114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.135125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.135132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e5a 6416 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.135134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.135138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.135142 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.135147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.135152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.135162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.135166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.135168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.135173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.145056 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.145097 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.145105 LLDP, length 82 [|LLDP] 16:50:43.145107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.145118 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.145125 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.145130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.145135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.145146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.145149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.145151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e62 0536 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.145153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.145157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.145160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.145166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.155054 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.155093 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.155101 LLDP, length 82 [|LLDP] 16:50:43.155103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.155115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.155121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e69 a656 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.155124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.155127 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.155130 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.155135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.155140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.155151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.155154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.155156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.155162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.165052 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.165093 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.165101 LLDP, length 82 [|LLDP] 16:50:43.165103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.165114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.165120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e71 4776 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.165123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.165126 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.165130 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.165135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.165140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.165150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.165154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.165156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.165161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.175053 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.175091 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.175099 LLDP, length 82 [|LLDP] 16:50:43.175101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.175112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.175119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e78 e896 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.175121 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.175126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.175131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.175142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.175145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.175147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.175151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.175154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.175160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.185057 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.185104 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.185113 LLDP, length 82 [|LLDP] 16:50:43.185114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.185125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.185133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e80 89b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.185135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.185139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.185142 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.185148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.185153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.185164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.185168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.185170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.185176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.195054 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.195108 LLDP, length 82 [|LLDP] 16:50:43.195110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.195123 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.195128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.195134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.195145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.195148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.195150 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.195157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.195163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e88 2ad6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.195165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.195169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.195172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.195178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.205056 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.205094 LLDP, length 82 [|LLDP] 16:50:43.205096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.205109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.205117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e8f cbf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.205119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.205122 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.205127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.205133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.205143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.205146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.205148 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.205155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.205159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.205165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.215059 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.215114 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.215122 LLDP, length 82 [|LLDP] 16:50:43.215124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.215135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.215143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e97 6d16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.215145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.215148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.215152 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.215157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.215162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.215174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.215177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.215179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.215185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.225057 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.225103 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.225112 LLDP, length 82 [|LLDP] 16:50:43.225113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.225125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.225132 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.225138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.225143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.225154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.225157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.225160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e9f 0e36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.225162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.225166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.225170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.225176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.235060 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.235108 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.235116 LLDP, length 82 [|LLDP] 16:50:43.235118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.235129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.235137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea6 af56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.235139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.235143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.235146 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.235151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.235156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.235168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.235171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.235173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.235180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.245057 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.245103 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.245112 LLDP, length 82 [|LLDP] 16:50:43.245114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.245125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.245132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eae 5076 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.245135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.245139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.245143 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.245148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.245153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.245163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.245166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.245169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.245174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.255053 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.255097 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.255105 LLDP, length 82 [|LLDP] 16:50:43.255106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.255118 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.255125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eb5 f196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.255127 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.255132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.255137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.255147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.255150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.255152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.255157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.255160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.255165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.265053 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.265085 LLDP, length 82 [|LLDP] 16:50:43.265087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.265099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.265106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ebd 92b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.265108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.265112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.265115 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.265120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.265125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.265135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.265137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.265140 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.265146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.265152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.275050 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.275089 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.275096 LLDP, length 82 [|LLDP] 16:50:43.275097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.275109 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.275115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.275120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.275130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.275133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.275136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.275140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ec5 33d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.275142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.275146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.275149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.275155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.285051 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.285092 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.285100 LLDP, length 82 [|LLDP] 16:50:43.285101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.285113 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.285119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ecc d4f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.285121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.285125 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.285130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.285135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.285145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.285161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.285165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.285169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.285175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.295070 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.295124 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.295132 LLDP, length 82 [|LLDP] 16:50:43.295134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.295146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.295156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ed4 7616 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.295158 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.295162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.295165 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.295171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.295177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.295191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.295195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.295197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.295204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.305066 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.305130 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.305138 LLDP, length 82 [|LLDP] 16:50:43.305140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.305152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.305161 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.305166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.305172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.305185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.305189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.305191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0edc 1736 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.305194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.305198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.305201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.305208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.315060 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.315110 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.315118 LLDP, length 82 [|LLDP] 16:50:43.315120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.315131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.315139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ee3 b856 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.315141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.315145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.315149 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.315154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.315159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.315171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.315174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.315177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.315183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.325055 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.325103 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.325111 LLDP, length 82 [|LLDP] 16:50:43.325113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.325125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.325132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eeb 5976 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.325134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.325138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.325141 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.325147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.325152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.325163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.325166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.325168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.325174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.335057 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.335100 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.335107 LLDP, length 82 [|LLDP] 16:50:43.335109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.335121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.335128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ef2 fa96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.335131 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.335136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.335141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.335152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.335155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.335157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.335161 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.335165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.335171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.345054 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.345103 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.345111 LLDP, length 82 [|LLDP] 16:50:43.345113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.345125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.345131 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0efa 9bb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.345133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.345137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.345141 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.345146 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.345151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.345162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.345165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.345168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.345174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.355054 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.355098 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.355107 LLDP, length 82 [|LLDP] 16:50:43.355108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.355120 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.355126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.355132 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.355143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.355146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.355148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.355154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f02 3cd6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.355156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.355160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.355163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.355170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.365071 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.365127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.365135 LLDP, length 82 [|LLDP] 16:50:43.365137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.365149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.365157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f09 ddf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.365159 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.365163 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.365169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.365174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.365186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.365190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.365192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.365196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.365202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.375057 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.375109 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.375118 LLDP, length 82 [|LLDP] 16:50:43.375119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.375131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.375139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f11 7f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.375141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.375145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.375148 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.375154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.375159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.375170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.375174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.375176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.375182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.385062 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.385110 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.385119 LLDP, length 82 [|LLDP] 16:50:43.385120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.385132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.385139 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.385145 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.385150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.385161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.385164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.385166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f19 2036 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.385169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.385173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.385176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.385181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.395055 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.395097 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.395105 LLDP, length 82 [|LLDP] 16:50:43.395106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.395118 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.395126 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f20 c156 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.395128 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.395132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.395135 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.395140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.395145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.395157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.395160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.395162 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.395168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.405089 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.405184 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.405195 LLDP, length 82 [|LLDP] 16:50:43.405197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.405211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.405221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f28 6276 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.405224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.405227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.405231 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.405238 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.405245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.405276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.405281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.405283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.405290 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.415089 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.415160 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.415171 LLDP, length 82 [|LLDP] 16:50:43.415173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.415185 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.415195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f30 0396 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.415197 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.415204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.415210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.415224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.415229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.415231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.415235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.415238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.415245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.425056 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.425105 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.425113 LLDP, length 82 [|LLDP] 16:50:43.425115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.425127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.425134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f37 a4b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.425136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.425140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.425144 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.425149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.425154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.425166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.425169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.425171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.425177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.435051 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.435088 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.435097 LLDP, length 82 [|LLDP] 16:50:43.435098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.435110 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.435116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.435121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.435132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.435135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.435137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.435143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f3f 45d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.435145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.435149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.435152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.435158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.445051 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.445090 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.445098 LLDP, length 82 [|LLDP] 16:50:43.445099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.445111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.445117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f46 e6f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.445119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.445122 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.445127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.445132 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.445142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.445146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.445148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.445152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.445157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.455048 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.455089 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.455097 LLDP, length 82 [|LLDP] 16:50:43.455098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.455110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.455116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f4e 8816 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.455119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.455122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.455126 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.455131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.455135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.455146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.455149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.455151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.455157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.465048 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.465088 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.465096 LLDP, length 82 [|LLDP] 16:50:43.465098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.465109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.465116 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.465121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.465126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.465136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.465139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.465141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f56 2936 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.465143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.465147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.465150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.465156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.475047 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.475090 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.475098 LLDP, length 82 [|LLDP] 16:50:43.475099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.475111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.475118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f5d ca56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.475120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.475124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.475128 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.475133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.475138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.475149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.475152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.475154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.475160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.485047 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.485087 LLDP, length 82 [|LLDP] 16:50:43.485089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.485101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.485108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f65 6b76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.485111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.485114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.485118 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.485123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.485127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.485138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.485141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.485143 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.485151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.485166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.495050 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.495085 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.495093 LLDP, length 82 [|LLDP] 16:50:43.495095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.495106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.495112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f6d 0c96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.495114 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.495119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.495124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.495134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.495137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.495140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.495143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.495147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.495153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.505053 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.505094 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.505102 LLDP, length 82 [|LLDP] 16:50:43.505104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.505115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.505122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f74 adb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.505124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.505127 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.505131 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.505136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.505141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.505151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.505154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.505156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.505163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.515048 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.515091 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.515099 LLDP, length 82 [|LLDP] 16:50:43.515100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.515112 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.515117 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.515122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.515133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.515136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.515138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.515144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f7c 4ed6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.515146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.515149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.515153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.515158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.525045 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.525083 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.525091 LLDP, length 82 [|LLDP] 16:50:43.525093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.525104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.525110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f83 eff6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.525112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.525116 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.525121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.525126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.525136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.525139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.525141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.525145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.525150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.535046 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.535086 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.535094 LLDP, length 82 [|LLDP] 16:50:43.535095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.535107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.535113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f8b 9116 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.535115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.535119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.535123 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.535128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.535133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.535143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.535146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.535148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.535154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.545045 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.545084 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.545092 LLDP, length 82 [|LLDP] 16:50:43.545094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.545105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.545111 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.545116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.545121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.545131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.545134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.545136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f93 3236 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.545138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.545142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.545146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.545151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.555047 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.555079 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.555087 LLDP, length 82 [|LLDP] 16:50:43.555088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.555099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.555106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f9a d356 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.555108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.555112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.555115 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.555120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.555124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.555135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.555138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.555140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.555146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.565044 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.565082 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.565090 LLDP, length 82 [|LLDP] 16:50:43.565092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.565103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.565109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fa2 7476 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.565112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.565115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.565119 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.565124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.565129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.565139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.565142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.565144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.565150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.575045 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.575094 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.575103 LLDP, length 82 [|LLDP] 16:50:43.575104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.575116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.575122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0faa 1596 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.575124 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.575130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.575135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.575145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.575148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.575150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.575154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.575157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.575163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.585045 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.585093 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.585101 LLDP, length 82 [|LLDP] 16:50:43.585103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.585114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.585121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb1 b6b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.585123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.585126 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.585130 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.585135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.585139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.585150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.585153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.585155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.585161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.595043 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.595091 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.595100 LLDP, length 82 [|LLDP] 16:50:43.595101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.595113 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.595120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.595125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.595135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.595138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.595140 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.595145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb9 57d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.595147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.595151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.595154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.595160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.605045 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.605084 LLDP, length 82 [|LLDP] 16:50:43.605086 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.605099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.605105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc0 f8f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.605107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.605111 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.605116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.605121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.605131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.605135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.605137 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.605144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.605148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.605153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.615046 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.615086 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.615094 LLDP, length 82 [|LLDP] 16:50:43.615095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.615106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.615112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc8 9a16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.615114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.615117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.615121 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.615126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.615131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.615141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.615144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.615146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.615151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.625045 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.625085 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.625093 LLDP, length 82 [|LLDP] 16:50:43.625095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.625106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.625113 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.625118 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.625123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.625133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.625136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.625139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd0 3b36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.625141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.625145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.625148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.625154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.635042 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.635082 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.635090 LLDP, length 82 [|LLDP] 16:50:43.635091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.635103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.635109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd7 dc56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.635111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.635115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.635118 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.635123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.635128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.635138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.635141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.635143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.635150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.645043 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.645081 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.645090 LLDP, length 82 [|LLDP] 16:50:43.645091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.645103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.645109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fdf 7d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.645111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.645115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.645118 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.645123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.645128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.645138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.645142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.645144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.645149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.655040 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.655078 LLDP, length 82 [|LLDP] 16:50:43.655080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.655092 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.655098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe7 1e96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.655100 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.655105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.655110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.655120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.655123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.655126 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.655133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.655137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.655141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.655146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.665043 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.665074 LLDP, length 82 [|LLDP] 16:50:43.665075 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.665088 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.665094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fee bfb6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.665096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.665099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.665103 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.665107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.665112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.665122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.665125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.665127 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.665134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.665140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.675041 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.675079 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.675087 LLDP, length 82 [|LLDP] 16:50:43.675088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.675100 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.675105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.675110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.675120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.675123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.675125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.675130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff6 60d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.675132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.675136 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.675140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.675145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.685045 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.685088 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.685096 LLDP, length 82 [|LLDP] 16:50:43.685098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.685109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.685116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ffe 01f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.685118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.685122 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.685127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.685132 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.685143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.685146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.685148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.685152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.685158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.695043 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.695085 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.695093 LLDP, length 82 [|LLDP] 16:50:43.695095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.695106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.695113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1005 a316 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.695116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.695119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.695123 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.695128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.695133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.695142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.695145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.695148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.695154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.705042 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.705084 LLDP, length 82 [|LLDP] 16:50:43.705085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.705098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.705104 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.705109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.705114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.705124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.705127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.705129 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.705136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 100d 4436 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.705139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.705143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.705146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.705152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.715041 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.715091 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.715100 LLDP, length 82 [|LLDP] 16:50:43.715102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.715114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.715120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1014 e556 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.715123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.715126 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.715130 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.715134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.715139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.715149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.715152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.715154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.715159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.725044 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.725080 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.725088 LLDP, length 82 [|LLDP] 16:50:43.725089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.725101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.725107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 101c 8676 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.725109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.725113 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.725116 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.725121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.725126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.725137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.725140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.725142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.725148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.735042 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.735082 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.735091 LLDP, length 82 [|LLDP] 16:50:43.735092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.735103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.735109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1024 2796 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.735112 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.735116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.735121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.735131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.735135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.735137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.735141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.735144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.735150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.745041 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.745080 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.745088 LLDP, length 82 [|LLDP] 16:50:43.745090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.745101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.745108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 102b c8b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.745110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.745114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.745117 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.745122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.745127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.745137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.745140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.745142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.745148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.755049 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.755095 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.755103 LLDP, length 82 [|LLDP] 16:50:43.755105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.755116 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.755122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.755128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.755138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.755141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.755144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.755150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1033 69d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.755152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.755156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.755159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.755165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.765044 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.765085 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.765093 LLDP, length 82 [|LLDP] 16:50:43.765094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.765106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.765112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 103b 0af6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.765115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.765118 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.765123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.765128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.765138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.765141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.765143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.765147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.765153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.775039 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.775078 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.775085 LLDP, length 82 [|LLDP] 16:50:43.775087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.775098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.775105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1042 ac16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.775107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.775110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.775114 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.775119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.775123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.775133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.775136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.775138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.775144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.785043 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.785077 LLDP, length 82 [|LLDP] 16:50:43.785079 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.785091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.785097 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.785102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.785108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.785118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.785121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.785123 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.785131 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 104a 4d36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.785133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.785138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.785141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.785147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.795041 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.795081 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.795090 LLDP, length 82 [|LLDP] 16:50:43.795092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.795103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.795109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1051 ee56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.795112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.795115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.795119 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.795124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.795129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.795139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.795142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.795144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.795150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.805048 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.805088 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.805096 LLDP, length 82 [|LLDP] 16:50:43.805097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.805109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.805116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1059 8f76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.805118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.805122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.805126 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.805131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.805136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.805147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.805150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.805153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.805159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.815042 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.815086 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.815095 LLDP, length 82 [|LLDP] 16:50:43.815096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.815108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.815115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1061 3096 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.815117 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.815122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.815127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.815138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.815141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.815143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.815147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.815150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.815156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.825040 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.825083 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.825091 LLDP, length 82 [|LLDP] 16:50:43.825092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.825103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.825110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1068 d1b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.825112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.825115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.825119 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.825124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.825129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.825139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.825142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.825144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.825150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.835039 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.835081 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.835089 LLDP, length 82 [|LLDP] 16:50:43.835091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.835102 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.835108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.835113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.835123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.835126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.835128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.835134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1070 72d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.835136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.835139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.835142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.835148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:50:43.845040 IP 1.1.1.2.31611 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.845073 IP 1.1.1.2.3968 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:50:43.845081 LLDP, length 82 [|LLDP] 16:50:43.845082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:50:43.845093 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:50:43.845099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1078 13f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:50:43.845101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:50:43.845105 IP 192.168.1.1.46299 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:50:43.845110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:50:43.845115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:50:43.845125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.845128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:50:43.845131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:50:43.845134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:50:43.845140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 6676 packets captured 6676 packets received by filter 0 packets dropped by kernel 445 packets dropped by interface -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:50:52 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=42, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=42, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":74,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=42, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=42, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:50:54 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=42, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:50:54 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=42, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":74,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=28] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_without_rif | 266.03 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_without_rif">Starting testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2195' coro=<test_bridging_bum_traffic_bridge_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:173> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=43] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=43] Local address: 172.17.0.4, port 51472 INFO asyncssh:logging.py:92 [conn=43] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=43] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=43] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:50:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=43, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=43, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=8] Command: ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=8] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 15 tcpdump -i swp1 -n on agg1... INFO asyncssh:logging.py:92 [conn=43, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=9] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO asyncssh:logging.py:92 [conn=43, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=10] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a276cee0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI BridgedLLDP SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI LACPDU SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4ToMe SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Request_BC SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Reply SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Broadcast SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_SSH SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_Telnet SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_VRRP SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_IGMP SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_BGP SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=10] Channel closed DEBUG agg1:Logger.py:156 16:55:05.670781 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.670841 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.670847 LLDP, length 82 [|LLDP] 16:55:05.670849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.670854 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0345 ab1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.670857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.670861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.670865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.670869 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.670874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.680760 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.680778 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.680783 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.680787 LLDP, length 82 [|LLDP] 16:55:05.680789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.680793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 034d 4c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.680795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.680800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.680803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.680807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.690758 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.690771 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.690776 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.690780 LLDP, length 82 [|LLDP] 16:55:05.690781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.690786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0354 ed5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.690788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.690792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.690795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.690799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.700751 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.700765 LLDP, length 82 [|LLDP] 16:55:05.700766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.700771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.700775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.700777 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.700782 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.700786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 035c 8e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.700788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.700792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.710759 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.710779 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.710783 LLDP, length 82 [|LLDP] 16:55:05.710785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.710794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0364 2f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.710796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.710800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.710803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.710808 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.710812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.720754 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.720771 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.720776 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.720780 LLDP, length 82 [|LLDP] 16:55:05.720781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.720786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 036b d0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.720788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.720792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.720795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.720799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.730755 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.730779 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.730784 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.730788 LLDP, length 82 [|LLDP] 16:55:05.730790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.730794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0373 71de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.730796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.730801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.730804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.730808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.740756 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.740773 LLDP, length 82 [|LLDP] 16:55:05.740775 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.740779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.740783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.740786 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.740791 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.740796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 037b 12fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.740798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.740802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.750762 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.750779 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.750784 LLDP, length 82 [|LLDP] 16:55:05.750785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.750790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0382 b41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.750792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.750796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.750799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.750804 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.750808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.760757 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.760771 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.760776 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.760780 LLDP, length 82 [|LLDP] 16:55:05.760782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.760786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 038a 553e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.760788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.760792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.760795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.760799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.770751 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.770766 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.770770 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.770774 LLDP, length 82 [|LLDP] 16:55:05.770776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.770780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0391 f65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.770782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.770787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.770789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.770794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.780755 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.780772 LLDP, length 82 [|LLDP] 16:55:05.780774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.780778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.780783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.780785 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.780789 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.780794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0399 977e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.780796 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.780801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.790753 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.790768 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.790773 LLDP, length 82 [|LLDP] 16:55:05.790774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.790779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a1 389e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.790781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.790785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.790787 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.790792 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.790796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.800752 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.800767 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.800771 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.800775 LLDP, length 82 [|LLDP] 16:55:05.800777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.800781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a8 d9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.800783 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.800787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.800790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.800795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.810752 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.810775 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.810779 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.810783 LLDP, length 82 [|LLDP] 16:55:05.810785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.810789 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b0 7ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.810791 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.810795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.810798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.810802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.820760 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.820782 LLDP, length 82 [|LLDP] 16:55:05.820785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.820789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.820793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.820797 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.820801 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.820806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b8 1bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.820808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.820813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.830755 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.830774 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.830778 LLDP, length 82 [|LLDP] 16:55:05.830780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.830784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03bf bd1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.830786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.830791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.830794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.830798 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.830803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.840757 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.840776 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.840781 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.840785 LLDP, length 82 [|LLDP] 16:55:05.840786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.840799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03c7 5e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.840802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.840806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.840809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.840813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.850752 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.850768 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.850773 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.850777 LLDP, length 82 [|LLDP] 16:55:05.850779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.850783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ce ff5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.850786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.850790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.850793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.850798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.860756 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.860771 LLDP, length 82 [|LLDP] 16:55:05.860773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.860777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.860781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.860784 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.860788 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.860792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03d6 a07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.860795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.860799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.870752 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.870766 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.870771 LLDP, length 82 [|LLDP] 16:55:05.870772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.870777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03de 419e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.870779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.870783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.870786 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.870790 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.870794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.880751 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.880764 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.880769 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.880773 LLDP, length 82 [|LLDP] 16:55:05.880775 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.880779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03e5 e2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.880781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.880785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.880787 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.880792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.890752 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.890766 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.890771 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.890775 LLDP, length 82 [|LLDP] 16:55:05.890777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.890781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ed 83de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.890783 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.890787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.890790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.890795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.900751 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.900766 LLDP, length 82 [|LLDP] 16:55:05.900767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.900772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.900776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.900778 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.900783 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.900787 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03f5 24fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.900789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.900794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.910754 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.910769 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.910774 LLDP, length 82 [|LLDP] 16:55:05.910775 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.910780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03fc c61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.910781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.910786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.910788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.910793 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.910797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.920748 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.920762 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.920767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.920771 LLDP, length 82 [|LLDP] 16:55:05.920773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.920777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0404 673e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.920779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.920783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.920786 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.920790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.930753 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.930768 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.930772 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.930777 LLDP, length 82 [|LLDP] 16:55:05.930778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.930783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 040c 085e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.930785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.930789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.930792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.930796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.940760 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.940776 LLDP, length 82 [|LLDP] 16:55:05.940778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.940782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.940786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.940789 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.940793 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.940797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0413 a97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.940800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.940804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.950747 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.950764 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.950768 LLDP, length 82 [|LLDP] 16:55:05.950770 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.950774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 041b 4a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.950777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.950781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.950784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.950788 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.950793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.960749 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.960770 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.960775 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.960779 LLDP, length 82 [|LLDP] 16:55:05.960781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.960785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0422 ebbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.960787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.960791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.960794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.960798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.970747 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.970761 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.970765 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.970769 LLDP, length 82 [|LLDP] 16:55:05.970771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.970775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 042a 8cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.970777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.970781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.970784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.970789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.980748 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.980763 LLDP, length 82 [|LLDP] 16:55:05.980764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.980769 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.980773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.980775 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.980779 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.980783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0432 2dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.980785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.980790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.990746 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.990760 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.990764 LLDP, length 82 [|LLDP] 16:55:05.990766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.990770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0439 cf1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.990772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.990776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.990779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.990783 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.990787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.000747 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.000761 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.000766 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.000770 LLDP, length 82 [|LLDP] 16:55:06.000772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.000776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0441 703e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.000778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.000782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.000785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.000790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.010747 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.010761 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.010766 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.010770 LLDP, length 82 [|LLDP] 16:55:06.010772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.010776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0449 115e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.010778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.010782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.010785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.010790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.020746 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.020760 LLDP, length 82 [|LLDP] 16:55:06.020762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.020766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.020770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.020773 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.020777 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.020781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0450 b27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.020783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.020787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.030745 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.030759 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.030763 LLDP, length 82 [|LLDP] 16:55:06.030765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.030769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0458 539e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.030771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.030775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.030778 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.030783 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.030787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.040746 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.040769 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.040773 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.040785 LLDP, length 82 [|LLDP] 16:55:06.040787 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.040792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 045f f4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.040794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.040798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.040801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.040805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.050745 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.050761 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.050766 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.050770 LLDP, length 82 [|LLDP] 16:55:06.050772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.050776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0467 95de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.050778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.050782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.050785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.050790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.060749 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.060764 LLDP, length 82 [|LLDP] 16:55:06.060766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.060770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.060774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.060777 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.060781 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.060786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 046f 36fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.060788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.060793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.070748 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.070763 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.070767 LLDP, length 82 [|LLDP] 16:55:06.070769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.070773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0476 d81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.070776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.070780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.070783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.070787 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.070792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.080744 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.080758 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.080763 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.080767 LLDP, length 82 [|LLDP] 16:55:06.080768 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.080773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 047e 793e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.080775 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.080779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.080781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.080786 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.090743 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.090757 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.090762 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.090766 LLDP, length 82 [|LLDP] 16:55:06.090767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.090772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0486 1a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.090774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.090778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.090781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.090785 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.100748 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.100762 LLDP, length 82 [|LLDP] 16:55:06.100763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.100768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.100772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.100775 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.100779 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.100784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 048d bb7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.100786 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.100791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.110756 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.110775 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.110780 LLDP, length 82 [|LLDP] 16:55:06.110782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.110786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0495 5c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.110789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.110793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.110796 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.110801 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.110806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.120753 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.120774 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.120778 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.120783 LLDP, length 82 [|LLDP] 16:55:06.120785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.120789 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 049c fdbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.120792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.120796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.120799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.120804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.130752 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.130768 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.130773 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.130777 LLDP, length 82 [|LLDP] 16:55:06.130779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.130783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04a4 9ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.130785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.130790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.130793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.130797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.140748 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.140764 LLDP, length 82 [|LLDP] 16:55:06.140766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.140770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.140774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.140777 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.140782 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.140786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ac 3ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.140788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.140793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.150743 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.150756 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.150761 LLDP, length 82 [|LLDP] 16:55:06.150762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.150766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04b3 e11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.150768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.150773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.150775 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.150779 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.150784 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.160741 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.160755 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.160759 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.160764 LLDP, length 82 [|LLDP] 16:55:06.160765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.160770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04bb 823e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.160771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.160776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.160778 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.160783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.170751 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.170771 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.170775 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.170780 LLDP, length 82 [|LLDP] 16:55:06.170781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.170786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c3 235e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.170787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.170792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.170794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.170799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.180743 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.180756 LLDP, length 82 [|LLDP] 16:55:06.180758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.180762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.180766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.180769 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.180773 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.180777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ca c47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.180779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.180783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.190736 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.190747 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.190752 LLDP, length 82 [|LLDP] 16:55:06.190753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.190758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d2 659e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.190760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.190764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.190766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.190770 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.190775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.200736 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.200748 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.200752 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.200757 LLDP, length 82 [|LLDP] 16:55:06.200758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.200762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04da 06be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.200764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.200768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.200771 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.200775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.210736 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.210747 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.210752 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.210756 LLDP, length 82 [|LLDP] 16:55:06.210757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.210761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e1 a7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.210763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.210767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.210770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.210774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.220736 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.220747 LLDP, length 82 [|LLDP] 16:55:06.220749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.220753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.220757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.220760 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.220764 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.220768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e9 48fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.220770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.220774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.230733 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.230751 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.230755 LLDP, length 82 [|LLDP] 16:55:06.230757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.230761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f0 ea1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.230763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.230767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.230770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.230774 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.230778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.240735 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.240754 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.240758 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.240762 LLDP, length 82 [|LLDP] 16:55:06.240763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.240768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f8 8b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.240770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.240774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.240777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.240781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.250751 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.250771 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.250775 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.250780 LLDP, length 82 [|LLDP] 16:55:06.250781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.250786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0500 2c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.250787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.250792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.250795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.250799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.260738 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.260757 LLDP, length 82 [|LLDP] 16:55:06.260758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.260763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.260767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.260783 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.260788 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.260792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0507 cd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.260794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.260798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.270739 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.270754 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.270758 LLDP, length 82 [|LLDP] 16:55:06.270760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.270764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 050f 6e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.270766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.270770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.270773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.270777 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.270781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.280738 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.280752 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.280756 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.280761 LLDP, length 82 [|LLDP] 16:55:06.280762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.280767 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0517 0fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.280769 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.280773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.280776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.280780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.290735 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.290747 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.290752 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.290756 LLDP, length 82 [|LLDP] 16:55:06.290757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.290762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 051e b0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.290764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.290768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.290770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.290775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.300739 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.300752 LLDP, length 82 [|LLDP] 16:55:06.300753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.300758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.300762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.300764 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.300768 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.300773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0526 51fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.300775 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.300779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.310737 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.310749 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.310754 LLDP, length 82 [|LLDP] 16:55:06.310755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.310759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 052d f31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.310761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.310765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.310768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.310772 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.310776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.320732 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.320744 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.320748 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.320752 LLDP, length 82 [|LLDP] 16:55:06.320754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.320758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0535 943e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.320760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.320764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.320767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.320771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.330732 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.330749 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.330754 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.330758 LLDP, length 82 [|LLDP] 16:55:06.330760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.330764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 053d 355e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.330766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.330770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.330773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.330778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.340731 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.340750 LLDP, length 82 [|LLDP] 16:55:06.340752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.340756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.340760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.340763 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.340767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.340771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0544 d67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.340773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.340777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.350733 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.350745 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.350749 LLDP, length 82 [|LLDP] 16:55:06.350751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.350755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 054c 779e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.350757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.350761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.350763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.350767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.350772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.360735 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.360747 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.360751 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.360755 LLDP, length 82 [|LLDP] 16:55:06.360757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.360761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0554 18be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.360763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.360767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.360770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.360774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.370736 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.370749 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.370753 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.370757 LLDP, length 82 [|LLDP] 16:55:06.370759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.370763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 055b b9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.370765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.370769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.370772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.370776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.380740 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.380753 LLDP, length 82 [|LLDP] 16:55:06.380754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.380759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.380763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.380765 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.380770 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.380774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0563 5afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.380776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.380780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.390732 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.390744 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.390749 LLDP, length 82 [|LLDP] 16:55:06.390750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.390755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 056a fc1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.390757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.390761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.390763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.390767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.390772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.400732 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.400743 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.400747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.400752 LLDP, length 82 [|LLDP] 16:55:06.400753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.400757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0572 9d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.400759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.400763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.400766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.400770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.410732 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.410743 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.410747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.410751 LLDP, length 82 [|LLDP] 16:55:06.410753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.410757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 057a 3e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.410759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.410763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.410765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.410770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.420732 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.420744 LLDP, length 82 [|LLDP] 16:55:06.420746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.420750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.420754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.420757 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.420761 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.420766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0581 df7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.420767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.420772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.430732 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.430743 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.430747 LLDP, length 82 [|LLDP] 16:55:06.430749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.430753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0589 809e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.430755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.430759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.430761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.430765 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.430770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.440730 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.440747 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.440752 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.440756 LLDP, length 82 [|LLDP] 16:55:06.440758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.440762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0591 21be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.440764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.440768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.440770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.440775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.450731 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.450750 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.450755 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.450759 LLDP, length 82 [|LLDP] 16:55:06.450760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.450764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0598 c2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.450766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.450770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.450773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.450778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.460731 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.460750 LLDP, length 82 [|LLDP] 16:55:06.460752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.460756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.460760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.460763 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.460767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.460771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a0 63fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.460773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.460777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.470728 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.470746 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.470751 LLDP, length 82 [|LLDP] 16:55:06.470752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.470757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a8 051e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.470759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.470763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.470766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.470770 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.470774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.480731 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.480750 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.480755 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.480759 LLDP, length 82 [|LLDP] 16:55:06.480761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.480765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05af a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.480767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.480771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.480774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.480778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.490730 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.490752 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.490756 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.490761 LLDP, length 82 [|LLDP] 16:55:06.490762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.490766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05b7 475e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.490768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.490772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.490775 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.490779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.500729 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.500747 LLDP, length 82 [|LLDP] 16:55:06.500749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.500753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.500757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.500760 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.500764 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.500768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05be e87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.500770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.500775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.510731 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.510749 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.510754 LLDP, length 82 [|LLDP] 16:55:06.510755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.510760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05c6 899e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.510761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.510765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.510768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.510772 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.510776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.520727 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.520738 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.520743 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.520747 LLDP, length 82 [|LLDP] 16:55:06.520749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.520753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ce 2abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.520755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.520759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.520761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.520766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.530726 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.530737 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.530741 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.530745 LLDP, length 82 [|LLDP] 16:55:06.530747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.530751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05d5 cbde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.530753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.530757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.530759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.530764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.540727 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.540744 LLDP, length 82 [|LLDP] 16:55:06.540745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.540750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.540754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.540756 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.540761 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.540765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05dd 6cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.540767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.540772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.550729 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.550741 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.550745 LLDP, length 82 [|LLDP] 16:55:06.550746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.550751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05e5 0e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.550752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.550757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.550759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.550763 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.550768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.560730 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.560743 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.560747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.560752 LLDP, length 82 [|LLDP] 16:55:06.560753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.560757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ec af3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.560759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.560763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.560766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.560771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.570727 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.570745 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.570750 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.570754 LLDP, length 82 [|LLDP] 16:55:06.570755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.570760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05f4 505e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.570762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.570766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.570768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.570773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.580729 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.580743 LLDP, length 82 [|LLDP] 16:55:06.580744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.580748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.580753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.580755 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.580760 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.580764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05fb f17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.580766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.580770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.590730 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.590744 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.590748 LLDP, length 82 [|LLDP] 16:55:06.590749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.590754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0603 929e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.590756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.590760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.590763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.590767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.590772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.600728 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.600742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.600746 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.600750 LLDP, length 82 [|LLDP] 16:55:06.600752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.600756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 060b 33be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.600758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.600762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.600765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.600769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.610730 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.610742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.610746 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.610750 LLDP, length 82 [|LLDP] 16:55:06.610752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.610756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0612 d4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.610757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.610761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.610764 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.610769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.620726 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.620744 LLDP, length 82 [|LLDP] 16:55:06.620745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.620750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.620754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.620756 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.620761 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.620765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 061a 75fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.620767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.620771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.630727 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.630739 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.630743 LLDP, length 82 [|LLDP] 16:55:06.630745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.630749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0622 171e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.630751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.630755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.630757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.630761 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.630766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.640726 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.640743 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.640748 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.640752 LLDP, length 82 [|LLDP] 16:55:06.640754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.640758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0629 b83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.640760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.640764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.640767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.640772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.650724 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.650742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.650746 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.650751 LLDP, length 82 [|LLDP] 16:55:06.650752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.650756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0631 595e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.650758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.650762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.650764 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.650769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.660728 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.660747 LLDP, length 82 [|LLDP] 16:55:06.660749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.660753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.660757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.660760 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.660764 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.660768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0638 fa7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.660770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.660775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.670734 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.670746 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.670751 LLDP, length 82 [|LLDP] 16:55:06.670752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.670756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0640 9b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.670758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.670762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.670765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.670769 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.670773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.680725 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.680744 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.680749 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.680753 LLDP, length 82 [|LLDP] 16:55:06.680754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.680759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0648 3cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.680760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.680765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.680767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.680772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.690726 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.690746 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.690751 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.690755 LLDP, length 82 [|LLDP] 16:55:06.690757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.690761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 064f ddde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.690763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.690767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.690769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.690774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.700728 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.700751 LLDP, length 82 [|LLDP] 16:55:06.700752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.700757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.700760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.700763 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.700767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.700771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0657 7efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.700774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.700778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.710729 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.710741 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.710746 LLDP, length 82 [|LLDP] 16:55:06.710747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.710751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 065f 201e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.710753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.710758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.710760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.710765 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.710770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.720724 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.720736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.720740 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.720745 LLDP, length 82 [|LLDP] 16:55:06.720746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.720750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0666 c13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.720752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.720756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.720759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.720763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.730725 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.730736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.730740 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.730745 LLDP, length 82 [|LLDP] 16:55:06.730746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.730750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 066e 625e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.730752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.730756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.730759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.730763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.740724 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.740735 LLDP, length 82 [|LLDP] 16:55:06.740737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.740741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.740745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.740748 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.740752 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.740757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0676 037e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.740759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.740763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.750726 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.750738 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.750743 LLDP, length 82 [|LLDP] 16:55:06.750744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.750748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 067d a49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.750750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.750754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.750757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.750761 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.750766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.760723 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.760742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.760746 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.760751 LLDP, length 82 [|LLDP] 16:55:06.760752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.760756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0685 45be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.760758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.760762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.760765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.760769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.770723 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.770742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.770747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.770751 LLDP, length 82 [|LLDP] 16:55:06.770752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.770757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 068c e6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.770758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.770763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.770766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.770770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.780733 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.780749 LLDP, length 82 [|LLDP] 16:55:06.780751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.780756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.780760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.780763 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.780767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.780772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0694 87fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.780774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.780778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.790729 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.790751 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.790756 LLDP, length 82 [|LLDP] 16:55:06.790757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.790761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 069c 291e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.790763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.790767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.790770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.790774 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.790779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.800725 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.800740 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.800744 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.800756 LLDP, length 82 [|LLDP] 16:55:06.800757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.800762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a3 ca3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.800764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.800768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.800771 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.800775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.810755 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.810780 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.810785 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.810790 LLDP, length 82 [|LLDP] 16:55:06.810792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.810796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ab 6b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.810798 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.810803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.810806 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.810811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.820739 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.820768 LLDP, length 82 [|LLDP] 16:55:06.820770 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.820774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.820778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.820782 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.820786 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.820790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b3 0c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.820793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.820798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.830727 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.830742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.830746 LLDP, length 82 [|LLDP] 16:55:06.830748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.830752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ba ad9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.830754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.830758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.830761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.830765 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.830770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.840723 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.840735 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.840739 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.840744 LLDP, length 82 [|LLDP] 16:55:06.840745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.840749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c2 4ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.840752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.840756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.840758 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.840763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.850720 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.850736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.850741 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.850745 LLDP, length 82 [|LLDP] 16:55:06.850747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.850751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c9 efde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.850753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.850757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.850760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.850764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.860728 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.860741 LLDP, length 82 [|LLDP] 16:55:06.860743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.860747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.860751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.860754 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.860758 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.860762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d1 90fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.860764 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.860768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.870734 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.870752 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.870757 LLDP, length 82 [|LLDP] 16:55:06.870759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.870763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d9 321e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.870765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.870769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.870772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.870776 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.870781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.880723 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.880742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.880747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.880751 LLDP, length 82 [|LLDP] 16:55:06.880753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.880757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e0 d33e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.880759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.880763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.880766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.880770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.890719 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.890738 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.890743 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.890747 LLDP, length 82 [|LLDP] 16:55:06.890748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.890753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e8 745e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.890755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.890759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.890762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.890767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.900722 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.900736 LLDP, length 82 [|LLDP] 16:55:06.900737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.900741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.900745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.900748 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.900752 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.900757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f0 157e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.900759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.900763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.910722 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.910741 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.910746 LLDP, length 82 [|LLDP] 16:55:06.910747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.910752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f7 b69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.910754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.910758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.910761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.910765 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.910769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.920720 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.920732 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.920737 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.920741 LLDP, length 82 [|LLDP] 16:55:06.920743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.920747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ff 57be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.920749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.920753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.920755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.920760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.930719 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.930736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.930741 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.930745 LLDP, length 82 [|LLDP] 16:55:06.930746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.930750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0706 f8de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.930752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.930756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.930759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.930763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.940720 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.940733 LLDP, length 82 [|LLDP] 16:55:06.940734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.940738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.940743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.940745 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.940749 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.940753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 070e 99fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.940755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.940760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.950718 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.950735 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.950740 LLDP, length 82 [|LLDP] 16:55:06.950741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.950745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0716 3b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.950748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.950752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.950755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.950759 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.950764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.960719 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.960737 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.960742 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.960746 LLDP, length 82 [|LLDP] 16:55:06.960747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.960751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 071d dc3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.960753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.960757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.960760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.960764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.970723 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.970736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.970741 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.970745 LLDP, length 82 [|LLDP] 16:55:06.970746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.970751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0725 7d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.970752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.970757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.970759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.970764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.980717 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.980736 LLDP, length 82 [|LLDP] 16:55:06.980737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.980742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.980746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.980748 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.980753 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.980757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 072d 1e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.980759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.980764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.990718 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.990729 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.990734 LLDP, length 82 [|LLDP] 16:55:06.990735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.990739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0734 bf9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.990741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.990746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.990748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.990753 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.990757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.000720 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.000738 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.000743 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.000747 LLDP, length 82 [|LLDP] 16:55:07.000749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.000753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 073c 60be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.000755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.000759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.000761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.000766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.010719 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.010733 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.010737 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.010741 LLDP, length 82 [|LLDP] 16:55:07.010743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.010747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0744 01de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.010749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.010753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.010756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.010761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.020718 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.020730 LLDP, length 82 [|LLDP] 16:55:07.020731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.020736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.020740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.020742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.020747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.020751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 074b a2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.020753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.020757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.030720 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.030731 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.030736 LLDP, length 82 [|LLDP] 16:55:07.030737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.030741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0753 441e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.030743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.030747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.030750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.030754 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.030759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.040714 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.040732 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.040737 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.040741 LLDP, length 82 [|LLDP] 16:55:07.040742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.040747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 075a e53e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.040749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.040752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.040755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.040759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.050715 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.050726 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.050731 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.050735 LLDP, length 82 [|LLDP] 16:55:07.050737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.050741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0762 865e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.050743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.050747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.050750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.050754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.060715 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.060733 LLDP, length 82 [|LLDP] 16:55:07.060735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.060739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.060743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.060745 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.060750 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.060754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 076a 277e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.060756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.060760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.070717 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.070736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.070740 LLDP, length 82 [|LLDP] 16:55:07.070742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.070747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0771 c89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.070748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.070752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.070755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.070759 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.070764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.080717 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.080736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.080741 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.080745 LLDP, length 82 [|LLDP] 16:55:07.080746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.080751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0779 69be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.080753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.080757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.080760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.080764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.090716 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.090735 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.090739 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.090743 LLDP, length 82 [|LLDP] 16:55:07.090744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.090749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0781 0ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.090751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.090755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.090757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.090762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.100717 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.100736 LLDP, length 82 [|LLDP] 16:55:07.100738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.100742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.100746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.100749 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.100753 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.100757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0788 abfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.100760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.100764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.110714 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.110734 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.110738 LLDP, length 82 [|LLDP] 16:55:07.110740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.110744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0790 4d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.110746 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.110750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.110753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.110757 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.110761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.120720 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.120735 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.120739 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.120743 LLDP, length 82 [|LLDP] 16:55:07.120745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.120749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0797 ee3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.120751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.120755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.120758 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.120762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.130716 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.130728 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.130732 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.130736 LLDP, length 82 [|LLDP] 16:55:07.130738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.130742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 079f 8f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.130744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.130748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.130751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.130756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.140726 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.140745 LLDP, length 82 [|LLDP] 16:55:07.140747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.140751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.140756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.140759 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.140764 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.140768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07a7 307e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.140771 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.140776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.150717 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.150735 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.150739 LLDP, length 82 [|LLDP] 16:55:07.150741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.150745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ae d19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.150747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.150751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.150754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.150758 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.150763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.160716 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.160730 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.160735 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.160739 LLDP, length 82 [|LLDP] 16:55:07.160740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.160745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07b6 72be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.160747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.160751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.160754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.160759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.170719 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.170734 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.170738 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.170742 LLDP, length 82 [|LLDP] 16:55:07.170743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.170748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07be 13de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.170750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.170754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.170757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.170761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.180716 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.180728 LLDP, length 82 [|LLDP] 16:55:07.180729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.180734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.180738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.180741 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.180745 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.180749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07c5 b4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.180751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.180755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.190713 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.190731 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.190736 LLDP, length 82 [|LLDP] 16:55:07.190738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.190742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07cd 561e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.190744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.190748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.190750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.190754 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.190759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.200716 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.200728 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.200732 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.200736 LLDP, length 82 [|LLDP] 16:55:07.200738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.200742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07d4 f73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.200744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.200748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.200751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.200755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.210713 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.210732 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.210737 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.210741 LLDP, length 82 [|LLDP] 16:55:07.210742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.210747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07dc 985e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.210749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.210753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.210755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.210760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.220714 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.220726 LLDP, length 82 [|LLDP] 16:55:07.220728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.220732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.220736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.220739 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.220743 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.220747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07e4 397e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.220749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.220754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.230711 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.230723 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.230728 LLDP, length 82 [|LLDP] 16:55:07.230729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.230733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07eb da9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.230735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.230739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.230742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.230746 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.230751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.240713 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.240731 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.240736 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.240740 LLDP, length 82 [|LLDP] 16:55:07.240741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.240745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f3 7bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.240747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.240751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.240754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.240758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.250713 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.250732 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.250736 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.250741 LLDP, length 82 [|LLDP] 16:55:07.250742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.250746 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07fb 1cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.250748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.250752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.250755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.250760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.260712 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.260723 LLDP, length 82 [|LLDP] 16:55:07.260725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.260729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.260734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.260736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.260740 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.260745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0802 bdfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.260747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.260751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.270723 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.270740 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.270744 LLDP, length 82 [|LLDP] 16:55:07.270746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.270751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 080a 5f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.270752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.270757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.270759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.270764 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.270768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.280718 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.280740 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.280744 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.280749 LLDP, length 82 [|LLDP] 16:55:07.280750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.280755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0812 003e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.280757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.280761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.280764 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.280768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.290726 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.290748 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.290753 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.290757 LLDP, length 82 [|LLDP] 16:55:07.290759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.290763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0819 a15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.290765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.290769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.290773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.290777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.300730 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.300752 LLDP, length 82 [|LLDP] 16:55:07.300753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.300758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.300762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.300766 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.300770 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.300774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0821 427e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.300777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.300782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.310721 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.310739 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.310743 LLDP, length 82 [|LLDP] 16:55:07.310745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.310749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0828 e39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.310751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.310755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.310758 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.310763 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.310767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.320715 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.320728 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.320733 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.320737 LLDP, length 82 [|LLDP] 16:55:07.320738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.320743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0830 84be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.320745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.320749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.320752 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.320756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.330720 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.330734 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.330739 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.330743 LLDP, length 82 [|LLDP] 16:55:07.330744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.330749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0838 25de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.330751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.330755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.330758 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.330762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.340753 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.340787 LLDP, length 82 [|LLDP] 16:55:07.340789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.340794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.340798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.340802 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.340807 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.340812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 083f c6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.340814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.340819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.350752 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.350785 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.350790 LLDP, length 82 [|LLDP] 16:55:07.350792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.350797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0847 681e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.350799 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.350803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.350807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.350812 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.350817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.360755 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.360788 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.360794 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.360799 LLDP, length 82 [|LLDP] 16:55:07.360801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.360806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 084f 093e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.360808 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.360813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.360816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.360822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.370758 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.370791 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.370797 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.370802 LLDP, length 82 [|LLDP] 16:55:07.370804 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.370808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0856 aa5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.370811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.370815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.370819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.370825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.380748 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.380782 LLDP, length 82 [|LLDP] 16:55:07.380785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.380789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.380794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.380797 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.380802 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.380807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 085e 4b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.380809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.380814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.390748 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.390781 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.390786 LLDP, length 82 [|LLDP] 16:55:07.390788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.390793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0865 ec9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.390796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.390800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.390804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.390808 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.390813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.400750 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.400784 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.400789 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.400795 LLDP, length 82 [|LLDP] 16:55:07.400797 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.400802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 086d 8dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.400804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.400809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.400812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.400818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.410736 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.410764 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.410769 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.410774 LLDP, length 82 [|LLDP] 16:55:07.410776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.410780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0875 2ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.410783 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.410787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.410791 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.410796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.420717 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.420739 LLDP, length 82 [|LLDP] 16:55:07.420741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.420745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.420749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.420752 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.420756 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.420761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 087c cffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.420763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.420768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.430712 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.430734 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.430739 LLDP, length 82 [|LLDP] 16:55:07.430740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.430745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0884 711e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.430747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.430751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.430754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.430759 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.430763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.440710 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.440730 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.440734 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.440739 LLDP, length 82 [|LLDP] 16:55:07.440740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.440745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 088c 123e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.440747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.440751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.440753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.440758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.450708 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.450721 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.450725 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.450730 LLDP, length 82 [|LLDP] 16:55:07.450731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.450736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0893 b35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.450737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.450742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.450744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.450749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.460707 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.460719 LLDP, length 82 [|LLDP] 16:55:07.460721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.460725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.460729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.460731 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.460736 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.460740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 089b 547e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.460742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.460747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.470709 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.470721 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.470725 LLDP, length 82 [|LLDP] 16:55:07.470727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.470731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a2 f59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.470733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.470737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.470739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.470744 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.470748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.480705 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.480717 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.480721 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.480725 LLDP, length 82 [|LLDP] 16:55:07.480727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.480731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08aa 96be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.480733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.480737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.480740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.480745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.490704 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.490723 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.490727 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.490732 LLDP, length 82 [|LLDP] 16:55:07.490733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.490737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b2 37de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.490739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.490743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.490746 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.490750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.500707 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.500721 LLDP, length 82 [|LLDP] 16:55:07.500722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.500727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.500731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.500734 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.500738 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.500743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b9 d8fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.500745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.500749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.510706 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.510724 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.510729 LLDP, length 82 [|LLDP] 16:55:07.510730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.510735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c1 7a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.510736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.510740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.510743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.510747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.510752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.520707 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.520725 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.520730 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.520734 LLDP, length 82 [|LLDP] 16:55:07.520735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.520739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c9 1b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.520741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.520745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.520748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.520752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.530710 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.530723 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.530727 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.530731 LLDP, length 82 [|LLDP] 16:55:07.530733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.530737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d0 bc5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.530739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.530744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.530746 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.530751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.540707 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.540721 LLDP, length 82 [|LLDP] 16:55:07.540722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.540727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.540730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.540733 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.540737 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.540742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d8 5d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.540743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.540748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.550706 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.550725 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.550729 LLDP, length 82 [|LLDP] 16:55:07.550730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.550734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08df fe9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.550736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.550740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.550743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.550747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.550752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.560708 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.560720 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.560724 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.560729 LLDP, length 82 [|LLDP] 16:55:07.560730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.560734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e7 9fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.560736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.560740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.560743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.560748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.570706 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.570717 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.570722 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.570726 LLDP, length 82 [|LLDP] 16:55:07.570728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.570732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08ef 40de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.570734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.570738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.570740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.570745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.580702 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.580720 LLDP, length 82 [|LLDP] 16:55:07.580721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.580725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.580729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.580732 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.580736 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.580741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08f6 e1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.580743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.580747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.590702 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.590720 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.590724 LLDP, length 82 [|LLDP] 16:55:07.590726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.590730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08fe 831e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.590732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.590736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.590739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.590743 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.590747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.600703 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.600716 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.600720 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.600724 LLDP, length 82 [|LLDP] 16:55:07.600726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.600730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0906 243e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.600732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.600736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.600738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.600743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.610702 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.610720 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.610724 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.610729 LLDP, length 82 [|LLDP] 16:55:07.610730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.610734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 090d c55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.610736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.610740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.610743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.610748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.620708 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.620731 LLDP, length 82 [|LLDP] 16:55:07.620733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.620737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.620742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.620744 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.620749 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.620753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0915 667e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.620755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.620760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.630704 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.630719 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.630723 LLDP, length 82 [|LLDP] 16:55:07.630725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.630729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 091d 079e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.630731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.630735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.630738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.630742 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.630747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.640705 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.640720 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.640724 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.640728 LLDP, length 82 [|LLDP] 16:55:07.640730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.640734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0924 a8be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.640736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.640740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.640743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.640748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.650704 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.650723 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.650728 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.650732 LLDP, length 82 [|LLDP] 16:55:07.650733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.650737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 092c 49de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.650739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.650743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.650746 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.650750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.660702 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.660713 LLDP, length 82 [|LLDP] 16:55:07.660715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.660719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.660723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.660726 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.660730 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.660734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0933 eafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.660736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.660741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.670701 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.670712 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.670717 LLDP, length 82 [|LLDP] 16:55:07.670718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.670723 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 093b 8c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.670725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.670729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.670731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.670735 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.670740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.680701 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.680712 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.680717 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.680721 LLDP, length 82 [|LLDP] 16:55:07.680722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.680727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0943 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.680728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.680732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.680735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.680739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.690699 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.690718 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.690722 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.690726 LLDP, length 82 [|LLDP] 16:55:07.690727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.690732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 094a ce5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.690734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.690738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.690740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.690744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.700701 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.700720 LLDP, length 82 [|LLDP] 16:55:07.700721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.700726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.700730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.700732 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.700736 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.700741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0952 6f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.700743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.700747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.710702 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.710724 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.710729 LLDP, length 82 [|LLDP] 16:55:07.710730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.710734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 095a 109e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.710736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.710741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.710743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.710748 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.710752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.720700 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.720719 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.720723 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.720728 LLDP, length 82 [|LLDP] 16:55:07.720729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.720734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0961 b1be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.720735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.720739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.720742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.720747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.730698 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.730716 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.730721 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.730726 LLDP, length 82 [|LLDP] 16:55:07.730727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.730732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0969 52de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.730734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.730738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.730741 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.730745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.740706 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.740721 LLDP, length 82 [|LLDP] 16:55:07.740723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.740727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.740731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.740734 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.740738 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.740743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0970 f3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.740745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.740750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.750701 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.750715 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.750720 LLDP, length 82 [|LLDP] 16:55:07.750721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.750726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0978 951e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.750727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.750731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.750734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.750738 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.750743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.760703 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.760717 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.760721 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.760725 LLDP, length 82 [|LLDP] 16:55:07.760727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.760731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0980 363e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.760733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.760737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.760739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.760744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.770703 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.770715 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.770720 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.770724 LLDP, length 82 [|LLDP] 16:55:07.770726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.770730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0987 d75e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.770732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.770736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.770738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.770743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.780709 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.780726 LLDP, length 82 [|LLDP] 16:55:07.780728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.780732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.780736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.780739 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.780744 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.780748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 098f 787e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.780750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.780755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.790710 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.790724 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.790729 LLDP, length 82 [|LLDP] 16:55:07.790730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.790735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0997 199e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.790737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.790741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.790744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.790748 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.790753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.800701 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.800714 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.800718 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.800722 LLDP, length 82 [|LLDP] 16:55:07.800724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.800728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 099e babe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.800730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.800734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.800737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.800741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.810702 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.810718 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.810723 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.810727 LLDP, length 82 [|LLDP] 16:55:07.810728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.810733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09a6 5bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.810735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.810739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.810742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.810746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.820703 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.820723 LLDP, length 82 [|LLDP] 16:55:07.820725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.820729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.820733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.820736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.820740 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.820745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ad fcfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.820747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.820752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.830704 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.830719 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.830724 LLDP, length 82 [|LLDP] 16:55:07.830725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.830730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09b5 9e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.830731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.830736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.830739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.830743 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.830748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.840703 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.840719 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.840724 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.840728 LLDP, length 82 [|LLDP] 16:55:07.840730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.840734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09bd 3f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.840736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.840740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.840743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.840748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.850699 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.850721 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.850726 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.850730 LLDP, length 82 [|LLDP] 16:55:07.850731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.850736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09c4 e05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.850738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.850742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.850745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.850749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.860700 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.860714 LLDP, length 82 [|LLDP] 16:55:07.860715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.860720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.860724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.860727 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.860731 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.860735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09cc 817e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.860737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.860742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.870701 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.870713 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.870718 LLDP, length 82 [|LLDP] 16:55:07.870720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.870724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09d4 229e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.870726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.870730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.870733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.870737 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.870742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.880701 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.880714 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.880718 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.880723 LLDP, length 82 [|LLDP] 16:55:07.880724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.880728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09db c3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.880730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.880734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.880737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.880742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.890699 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.890711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.890715 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.890720 LLDP, length 82 [|LLDP] 16:55:07.890721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.890725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e3 64de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.890727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.890732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.890734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.890739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.900696 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.900716 LLDP, length 82 [|LLDP] 16:55:07.900718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.900722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.900726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.900729 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.900733 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.900737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09eb 05fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.900739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.900744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.910697 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.910717 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.910722 LLDP, length 82 [|LLDP] 16:55:07.910723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.910728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f2 a71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.910730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.910734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.910737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.910741 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.910746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.920700 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.920714 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.920718 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.920722 LLDP, length 82 [|LLDP] 16:55:07.920724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.920728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09fa 483e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.920730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.920734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.920737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.920741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.930695 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.930714 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.930719 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.930723 LLDP, length 82 [|LLDP] 16:55:07.930724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.930729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a01 e95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.930731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.930735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.930738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.930742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.940695 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.940714 LLDP, length 82 [|LLDP] 16:55:07.940716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.940720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.940724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.940727 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.940732 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.940736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a09 8a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.940738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.940742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.950697 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.950717 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.950722 LLDP, length 82 [|LLDP] 16:55:07.950723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.950728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a11 2b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.950730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.950734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.950736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.950741 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.950745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.960698 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.960711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.960716 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.960720 LLDP, length 82 [|LLDP] 16:55:07.960721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.960726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a18 ccbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.960728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.960732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.960734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.960739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.970698 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.970717 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.970722 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.970726 LLDP, length 82 [|LLDP] 16:55:07.970728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.970732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a20 6dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.970733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.970738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.970740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.970745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.980704 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.980716 LLDP, length 82 [|LLDP] 16:55:07.980717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.980722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.980726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.980728 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.980732 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.980737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a28 0efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.980739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.980743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.990698 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.990716 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.990720 LLDP, length 82 [|LLDP] 16:55:07.990722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.990726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a2f b01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.990728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.990732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.990734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.990739 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.990743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.000695 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.000707 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.000712 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.000716 LLDP, length 82 [|LLDP] 16:55:08.000717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.000722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a37 513e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.000723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.000727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.000730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.000734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.010693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.010706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.010711 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.010715 LLDP, length 82 [|LLDP] 16:55:08.010716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.010721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a3e f25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.010723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.010727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.010729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.010734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.020700 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.020713 LLDP, length 82 [|LLDP] 16:55:08.020715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.020719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.020723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.020726 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.020730 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.020734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a46 937e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.020736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.020741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.030694 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.030707 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.030712 LLDP, length 82 [|LLDP] 16:55:08.030713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.030717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a4e 349e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.030719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.030723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.030725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.030730 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.030734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.040697 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.040716 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.040720 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.040725 LLDP, length 82 [|LLDP] 16:55:08.040726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.040730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a55 d5be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.040732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.040736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.040739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.040744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.050694 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.050708 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.050713 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.050717 LLDP, length 82 [|LLDP] 16:55:08.050719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.050723 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a5d 76de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.050725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.050729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.050732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.050736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.060694 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.060708 LLDP, length 82 [|LLDP] 16:55:08.060709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.060714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.060718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.060720 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.060724 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.060728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a65 17fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.060730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.060735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.070696 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.070709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.070713 LLDP, length 82 [|LLDP] 16:55:08.070714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.070719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a6c b91e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.070720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.070725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.070727 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.070731 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.070736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.080693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.080705 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.080710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.080714 LLDP, length 82 [|LLDP] 16:55:08.080716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.080720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a74 5a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.080722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.080726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.080728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.080733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.090692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.090704 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.090708 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.090712 LLDP, length 82 [|LLDP] 16:55:08.090714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.090718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a7b fb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.090720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.090724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.090726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.090731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.100692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.100704 LLDP, length 82 [|LLDP] 16:55:08.100705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.100710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.100714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.100716 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.100721 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.100725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a83 9c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.100727 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.100732 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.110690 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.110703 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.110708 LLDP, length 82 [|LLDP] 16:55:08.110709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.110713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a8b 3d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.110715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.110719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.110722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.110726 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.110730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.120693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.120706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.120710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.120715 LLDP, length 82 [|LLDP] 16:55:08.120716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.120720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a92 debe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.120722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.120727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.120729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.120734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.130695 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.130709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.130713 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.130717 LLDP, length 82 [|LLDP] 16:55:08.130719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.130723 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a9a 7fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.130724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.130728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.130731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.130736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.140692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.140705 LLDP, length 82 [|LLDP] 16:55:08.140707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.140711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.140715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.140718 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.140722 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.140727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa2 20fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.140729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.140734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.150692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.150706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.150710 LLDP, length 82 [|LLDP] 16:55:08.150712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.150716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa9 c21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.150718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.150723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.150725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.150729 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.150734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.160707 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.160725 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.160729 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.160734 LLDP, length 82 [|LLDP] 16:55:08.160736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.160740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab1 633e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.160742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.160747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.160750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.160755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.170704 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.170724 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.170730 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.170734 LLDP, length 82 [|LLDP] 16:55:08.170735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.170740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab9 045e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.170742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.170747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.170750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.170755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.180699 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.180716 LLDP, length 82 [|LLDP] 16:55:08.180718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.180722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.180726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.180729 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.180733 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.180738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac0 a57e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.180740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.180745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.190699 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.190715 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.190720 LLDP, length 82 [|LLDP] 16:55:08.190721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.190726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac8 469e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.190728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.190732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.190735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.190739 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.190743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.200700 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.200715 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.200720 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.200724 LLDP, length 82 [|LLDP] 16:55:08.200725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.200730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0acf e7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.200732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.200736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.200739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.200743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.210694 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.210709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.210714 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.210718 LLDP, length 82 [|LLDP] 16:55:08.210719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.210724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad7 88de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.210725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.210729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.210732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.210737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.220696 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.220717 LLDP, length 82 [|LLDP] 16:55:08.220718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.220723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.220727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.220730 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.220734 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.220738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0adf 29fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.220740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.220745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.230694 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.230710 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.230714 LLDP, length 82 [|LLDP] 16:55:08.230716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.230720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ae6 cb1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.230722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.230726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.230729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.230733 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.230738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.240692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.240706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.240711 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.240715 LLDP, length 82 [|LLDP] 16:55:08.240716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.240720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aee 6c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.240722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.240726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.240729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.240734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.250699 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.250714 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.250718 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.250722 LLDP, length 82 [|LLDP] 16:55:08.250723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.250728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0af6 0d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.250730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.250734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.250737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.250741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.260692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.260709 LLDP, length 82 [|LLDP] 16:55:08.260710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.260715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.260719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.260722 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.260726 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.260730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0afd ae7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.260732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.260737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.270699 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.270715 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.270719 LLDP, length 82 [|LLDP] 16:55:08.270721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.270725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b05 4f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.270727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.270731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.270734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.270738 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.270742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.280700 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.280714 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.280719 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.280723 LLDP, length 82 [|LLDP] 16:55:08.280724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.280729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b0c f0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.280731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.280735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.280738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.280742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.290693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.290708 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.290712 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.290716 LLDP, length 82 [|LLDP] 16:55:08.290718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.290722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b14 91de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.290724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.290728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.290731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.290735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.300693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.300708 LLDP, length 82 [|LLDP] 16:55:08.300709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.300714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.300718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.300721 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.300725 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.300729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b1c 32fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.300731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.300736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.310693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.310707 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.310712 LLDP, length 82 [|LLDP] 16:55:08.310713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.310717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b23 d41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.310719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.310723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.310726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.310730 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.310734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.320694 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.320710 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.320715 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.320719 LLDP, length 82 [|LLDP] 16:55:08.320720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.320725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b2b 753e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.320727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.320731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.320734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.320739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.330691 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.330706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.330710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.330714 LLDP, length 82 [|LLDP] 16:55:08.330716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.330720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b33 165e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.330722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.330726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.330729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.330733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.340690 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.340705 LLDP, length 82 [|LLDP] 16:55:08.340707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.340711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.340715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.340718 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.340722 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.340726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b3a b77e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.340728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.340733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.350690 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.350711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.350715 LLDP, length 82 [|LLDP] 16:55:08.350717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.350721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b42 589e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.350723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.350727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.350730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.350734 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.350739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.360693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.360709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.360714 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.360718 LLDP, length 82 [|LLDP] 16:55:08.360719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.360724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b49 f9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.360726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.360730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.360733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.360738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.370695 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.370711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.370715 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.370719 LLDP, length 82 [|LLDP] 16:55:08.370721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.370725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b51 9ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.370727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.370731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.370734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.370739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.380693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.380709 LLDP, length 82 [|LLDP] 16:55:08.380710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.380714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.380719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.380721 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.380725 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.380730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b59 3bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.380732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.380736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.390690 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.390705 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.390710 LLDP, length 82 [|LLDP] 16:55:08.390711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.390716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b60 dd1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.390718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.390722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.390725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.390729 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.390734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.400692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.400706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.400710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.400714 LLDP, length 82 [|LLDP] 16:55:08.400716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.400720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b68 7e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.400722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.400726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.400729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.400733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.410733 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.410769 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.410774 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.410778 LLDP, length 82 [|LLDP] 16:55:08.410780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.410785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b70 1f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.410787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.410792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.410795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.410800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.420718 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.420750 LLDP, length 82 [|LLDP] 16:55:08.420752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.420757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.420762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.420765 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.420770 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.420775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b77 c07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.420777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.420782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.430688 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.430704 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.430709 LLDP, length 82 [|LLDP] 16:55:08.430711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.430715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b7f 619e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.430717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.430721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.430724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.430729 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.430733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.440693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.440711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.440716 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.440720 LLDP, length 82 [|LLDP] 16:55:08.440722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.440726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b87 02be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.440728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.440732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.440735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.440739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.450692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.450706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.450710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.450715 LLDP, length 82 [|LLDP] 16:55:08.450716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.450720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b8e a3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.450722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.450727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.450729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.450734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.460685 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.460698 LLDP, length 82 [|LLDP] 16:55:08.460700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.460704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.460708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.460711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.460715 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.460719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b96 44fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.460721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.460726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.470694 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.470709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.470714 LLDP, length 82 [|LLDP] 16:55:08.470715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.470720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b9d e61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.470722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.470726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.470729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.470733 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.470737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.480687 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.480702 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.480706 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.480711 LLDP, length 82 [|LLDP] 16:55:08.480712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.480716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ba5 873e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.480718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.480722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.480725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.480730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.490686 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.490698 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.490703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.490707 LLDP, length 82 [|LLDP] 16:55:08.490709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.490713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bad 285e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.490715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.490719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.490722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.490726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.500685 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.500698 LLDP, length 82 [|LLDP] 16:55:08.500699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.500704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.500708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.500710 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.500714 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.500719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bb4 c97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.500721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.500726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.510687 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.510699 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.510703 LLDP, length 82 [|LLDP] 16:55:08.510705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.510709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bbc 6a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.510711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.510715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.510717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.510722 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.510726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.520686 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.520699 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.520703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.520707 LLDP, length 82 [|LLDP] 16:55:08.520709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.520713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bc4 0bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.520715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.520719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.520722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.520726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.530687 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.530706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.530711 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.530715 LLDP, length 82 [|LLDP] 16:55:08.530717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.530721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bcb acde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.530723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.530727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.530730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.530734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.540693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.540707 LLDP, length 82 [|LLDP] 16:55:08.540708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.540713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.540717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.540719 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.540723 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.540728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd3 4dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.540730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.540734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.550693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.550712 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.550717 LLDP, length 82 [|LLDP] 16:55:08.550718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.550722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bda ef1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.550724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.550728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.550731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.550735 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.550739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.560682 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.560695 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.560699 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.560703 LLDP, length 82 [|LLDP] 16:55:08.560705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.560709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be2 903e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.560711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.560715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.560718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.560723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.570687 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.570700 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.570705 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.570709 LLDP, length 82 [|LLDP] 16:55:08.570710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.570715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bea 315e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.570717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.570722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.570724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.570729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.580683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.580698 LLDP, length 82 [|LLDP] 16:55:08.580700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.580704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.580708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.580711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.580715 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.580719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf1 d27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.580721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.580726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.590683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.590697 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.590702 LLDP, length 82 [|LLDP] 16:55:08.590703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.590707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf9 739e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.590709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.590713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.590716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.590721 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.590725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.600681 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.600694 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.600699 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.600703 LLDP, length 82 [|LLDP] 16:55:08.600704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.600709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c01 14be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.600710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.600714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.600717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.600722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.610682 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.610695 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.610700 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.610704 LLDP, length 82 [|LLDP] 16:55:08.610706 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.610710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c08 b5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.610712 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.610716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.610719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.610724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.620683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.620696 LLDP, length 82 [|LLDP] 16:55:08.620697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.620702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.620706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.620708 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.620712 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.620717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c10 56fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.620719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.620723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.630690 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.630704 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.630708 LLDP, length 82 [|LLDP] 16:55:08.630710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.630714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c17 f81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.630716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.630720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.630722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.630726 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.630731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.640684 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.640699 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.640703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.640707 LLDP, length 82 [|LLDP] 16:55:08.640709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.640713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c1f 993e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.640715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.640719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.640722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.640727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.650682 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.650701 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.650705 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.650709 LLDP, length 82 [|LLDP] 16:55:08.650711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.650715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c27 3a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.650717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.650721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.650724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.650728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.660679 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.660699 LLDP, length 82 [|LLDP] 16:55:08.660701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.660705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.660709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.660712 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.660716 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.660720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c2e db7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.660722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.660726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.670696 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.670709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.670714 LLDP, length 82 [|LLDP] 16:55:08.670715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.670719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c36 7c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.670721 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.670725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.670728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.670732 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.670736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.680689 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.680703 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.680708 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.680712 LLDP, length 82 [|LLDP] 16:55:08.680713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.680718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c3e 1dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.680720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.680724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.680726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.680731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.690681 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.690702 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.690706 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.690710 LLDP, length 82 [|LLDP] 16:55:08.690712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.690716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c45 bede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.690718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.690723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.690725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.690730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.700682 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.700695 LLDP, length 82 [|LLDP] 16:55:08.700697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.700701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.700705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.700708 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.700712 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.700717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c4d 5ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.700719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.700723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.710683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.710702 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.710706 LLDP, length 82 [|LLDP] 16:55:08.710708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.710713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c55 011e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.710715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.710719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.710721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.710726 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.710730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.720681 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.720694 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.720698 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.720702 LLDP, length 82 [|LLDP] 16:55:08.720704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.720708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c5c a23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.720710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.720714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.720717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.720721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.730680 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.730698 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.730703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.730707 LLDP, length 82 [|LLDP] 16:55:08.730709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.730713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c64 435e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.730715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.730719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.730722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.730726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.740678 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.740698 LLDP, length 82 [|LLDP] 16:55:08.740700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.740704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.740709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.740711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.740715 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.740719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c6b e47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.740721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.740726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.750679 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.750693 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.750698 LLDP, length 82 [|LLDP] 16:55:08.750699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.750703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c73 859e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.750705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.750709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.750712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.750716 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.750721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.760679 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.760694 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.760698 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.760702 LLDP, length 82 [|LLDP] 16:55:08.760704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.760708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c7b 26be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.760710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.760714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.760717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.760722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.770684 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.770704 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.770708 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.770712 LLDP, length 82 [|LLDP] 16:55:08.770714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.770718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c82 c7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.770720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.770724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.770726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.770731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.780688 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.780706 LLDP, length 82 [|LLDP] 16:55:08.780708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.780712 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.780716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.780719 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.780723 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.780728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c8a 68fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.780729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.780734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.790686 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.790702 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.790706 LLDP, length 82 [|LLDP] 16:55:08.790708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.790713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c92 0a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.790715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.790719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.790722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.790726 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.790730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.800677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.800691 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.800695 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.800700 LLDP, length 82 [|LLDP] 16:55:08.800701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.800706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c99 ab3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.800708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.800712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.800714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.800719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.810677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.810697 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.810702 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.810706 LLDP, length 82 [|LLDP] 16:55:08.810707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.810712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca1 4c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.810714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.810718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.810720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.810725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.820677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.820697 LLDP, length 82 [|LLDP] 16:55:08.820698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.820703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.820707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.820709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.820713 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.820718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca8 ed7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.820720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.820724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.830686 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.830701 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.830706 LLDP, length 82 [|LLDP] 16:55:08.830707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.830712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb0 8e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.830714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.830718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.830720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.830724 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.830730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.840680 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.840694 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.840699 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.840703 LLDP, length 82 [|LLDP] 16:55:08.840704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.840709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb8 2fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.840711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.840715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.840718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.840723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.850683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.850697 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.850702 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.850706 LLDP, length 82 [|LLDP] 16:55:08.850707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.850711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cbf d0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.850713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.850717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.850720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.850724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.860677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.860698 LLDP, length 82 [|LLDP] 16:55:08.860699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.860704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.860708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.860710 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.860715 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.860719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cc7 71fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.860721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.860726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.870683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.870703 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.870708 LLDP, length 82 [|LLDP] 16:55:08.870709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.870714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ccf 131e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.870716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.870720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.870722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.870726 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.870731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.880674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.880688 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.880693 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.880697 LLDP, length 82 [|LLDP] 16:55:08.880698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.880702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cd6 b43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.880704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.880708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.880711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.880715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.890682 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.890696 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.890701 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.890706 LLDP, length 82 [|LLDP] 16:55:08.890707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.890712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cde 555e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.890714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.890718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.890721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.890725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.900677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.900691 LLDP, length 82 [|LLDP] 16:55:08.900693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.900697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.900701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.900703 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.900708 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.900712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ce5 f67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.900714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.900719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.910677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.910691 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.910695 LLDP, length 82 [|LLDP] 16:55:08.910697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.910701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ced 979e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.910703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.910708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.910710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.910714 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.910719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.920674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.920687 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.920692 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.920696 LLDP, length 82 [|LLDP] 16:55:08.920697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.920702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cf5 38be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.920704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.920708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.920711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.920715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.930677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.930690 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.930694 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.930699 LLDP, length 82 [|LLDP] 16:55:08.930701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.930705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cfc d9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.930707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.930711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.930714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.930718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.940675 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.940694 LLDP, length 82 [|LLDP] 16:55:08.940696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.940700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.940704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.940707 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.940711 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.940715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d04 7afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.940717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.940722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.950681 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.950694 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.950698 LLDP, length 82 [|LLDP] 16:55:08.950700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.950704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d0c 1c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.950706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.950710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.950713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.950717 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.950722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.960675 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.960695 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.960700 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.960704 LLDP, length 82 [|LLDP] 16:55:08.960706 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.960710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d13 bd3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.960712 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.960716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.960719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.960723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.970677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.970698 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.970702 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.970707 LLDP, length 82 [|LLDP] 16:55:08.970708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.970712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d1b 5e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.970715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.970719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.970721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.970726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.980674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.980688 LLDP, length 82 [|LLDP] 16:55:08.980689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.980694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.980698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.980701 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.980705 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.980709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d22 ff7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.980711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.980716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.990674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.990688 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.990693 LLDP, length 82 [|LLDP] 16:55:08.990694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.990699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d2a a09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.990701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.990705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.990708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.990712 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.990717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.000674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.000689 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.000693 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.000698 LLDP, length 82 [|LLDP] 16:55:09.000699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.000703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d32 41be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.000705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.000709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.000713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.000717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.010674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.010688 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.010692 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.010697 LLDP, length 82 [|LLDP] 16:55:09.010698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.010702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d39 e2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.010704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.010708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.010711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.010716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.020670 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.020691 LLDP, length 82 [|LLDP] 16:55:09.020693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.020697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.020701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.020704 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.020708 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.020713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d41 83fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.020714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.020719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.030672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.030691 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.030695 LLDP, length 82 [|LLDP] 16:55:09.030697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.030701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d49 251e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.030703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.030707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.030710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.030714 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.030719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.040673 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.040685 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.040689 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.040693 LLDP, length 82 [|LLDP] 16:55:09.040695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.040700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d50 c63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.040702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.040705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.040708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.040712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.050675 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.050689 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.050694 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.050698 LLDP, length 82 [|LLDP] 16:55:09.050699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.050704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d58 675e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.050706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.050710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.050713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.050717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.060671 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.060691 LLDP, length 82 [|LLDP] 16:55:09.060693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.060697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.060701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.060704 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.060708 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.060712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d60 087e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.060714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.060719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.070683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.070697 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.070701 LLDP, length 82 [|LLDP] 16:55:09.070703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.070707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d67 a99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.070709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.070713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.070716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.070720 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.070725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.080675 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.080689 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.080693 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.080697 LLDP, length 82 [|LLDP] 16:55:09.080699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.080703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d6f 4abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.080705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.080709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.080711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.080716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.090678 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.090699 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.090703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.090707 LLDP, length 82 [|LLDP] 16:55:09.090708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.090712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d76 ebde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.090714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.090718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.090721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.090726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.100672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.100693 LLDP, length 82 [|LLDP] 16:55:09.100695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.100699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.100703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.100706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.100710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.100714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d7e 8cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.100716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.100721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.110672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.110693 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.110697 LLDP, length 82 [|LLDP] 16:55:09.110699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.110703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d86 2e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.110705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.110709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.110712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.110716 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.110720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.120669 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.120683 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.120687 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.120691 LLDP, length 82 [|LLDP] 16:55:09.120692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.120697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d8d cf3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.120699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.120703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.120706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.120710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.130670 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.130683 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.130688 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.130692 LLDP, length 82 [|LLDP] 16:55:09.130694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.130698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d95 705e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.130700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.130704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.130707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.130711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.140669 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.140682 LLDP, length 82 [|LLDP] 16:55:09.140683 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.140688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.140692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.140694 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.140699 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.140703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d9d 117e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.140705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.140709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.150668 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.150691 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.150696 LLDP, length 82 [|LLDP] 16:55:09.150697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.150701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0da4 b29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.150703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.150707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.150710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.150714 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.150718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.160671 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.160686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.160691 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.160695 LLDP, length 82 [|LLDP] 16:55:09.160696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.160701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dac 53be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.160703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.160707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.160710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.160714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.170676 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.170690 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.170694 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.170698 LLDP, length 82 [|LLDP] 16:55:09.170699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.170704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0db3 f4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.170706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.170710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.170713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.170717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.180669 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.180683 LLDP, length 82 [|LLDP] 16:55:09.180684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.180689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.180693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.180695 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.180699 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.180704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dbb 95fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.180706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.180710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.190691 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.190709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.190714 LLDP, length 82 [|LLDP] 16:55:09.190716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.190721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc3 371e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.190723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.190728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.190731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.190736 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.190740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.200681 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.200700 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.200705 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.200709 LLDP, length 82 [|LLDP] 16:55:09.200711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.200715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dca d83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.200717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.200722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.200725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.200730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.210675 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.210692 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.210697 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.210701 LLDP, length 82 [|LLDP] 16:55:09.210703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.210708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd2 795e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.210709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.210714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.210716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.210721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.220675 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.220690 LLDP, length 82 [|LLDP] 16:55:09.220692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.220697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.220701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.220703 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.220708 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.220712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dda 1a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.220714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.220719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.230672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.230687 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.230692 LLDP, length 82 [|LLDP] 16:55:09.230693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.230697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de1 bb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.230699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.230703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.230706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.230710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.230715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.240672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.240686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.240690 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.240695 LLDP, length 82 [|LLDP] 16:55:09.240696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.240700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de9 5cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.240702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.240706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.240709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.240713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.250676 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.250690 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.250695 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.250700 LLDP, length 82 [|LLDP] 16:55:09.250701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.250706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df0 fdde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.250708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.250712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.250715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.250719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.260669 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.260684 LLDP, length 82 [|LLDP] 16:55:09.260685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.260690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.260694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.260697 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.260701 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.260706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df8 9efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.260708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.260712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.270670 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.270686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.270690 LLDP, length 82 [|LLDP] 16:55:09.270691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.270696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e00 401e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.270698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.270702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.270705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.270710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.270714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.280674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.280689 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.280694 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.280698 LLDP, length 82 [|LLDP] 16:55:09.280700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.280704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e07 e13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.280706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.280710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.280713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.280717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.290669 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.290686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.290690 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.290694 LLDP, length 82 [|LLDP] 16:55:09.290696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.290700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e0f 825e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.290702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.290706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.290709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.290714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.300672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.300688 LLDP, length 82 [|LLDP] 16:55:09.300690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.300694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.300698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.300701 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.300705 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.300710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e17 237e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.300712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.300716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.310680 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.310699 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.310703 LLDP, length 82 [|LLDP] 16:55:09.310705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.310709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e1e c49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.310711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.310716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.310719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.310723 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.310727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.320671 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.320686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.320691 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.320695 LLDP, length 82 [|LLDP] 16:55:09.320697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.320701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e26 65be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.320703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.320707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.320710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.320714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.330670 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.330685 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.330690 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.330694 LLDP, length 82 [|LLDP] 16:55:09.330695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.330699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e2e 06de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.330701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.330705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.330708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.330712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.340674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.340689 LLDP, length 82 [|LLDP] 16:55:09.340691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.340696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.340700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.340702 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.340707 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.340712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e35 a7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.340714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.340718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.350670 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.350685 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.350690 LLDP, length 82 [|LLDP] 16:55:09.350691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.350696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e3d 491e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.350698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.350702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.350705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.350709 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.350714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.360672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.360689 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.360693 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.360698 LLDP, length 82 [|LLDP] 16:55:09.360699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.360704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e44 ea3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.360706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.360710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.360713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.360717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.370676 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.370692 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.370696 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.370700 LLDP, length 82 [|LLDP] 16:55:09.370702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.370706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e4c 8b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.370708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.370713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.370716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.370720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.380670 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.380686 LLDP, length 82 [|LLDP] 16:55:09.380687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.380692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.380696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.380699 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.380703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.380707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e54 2c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.380709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.380714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.390672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.390686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.390691 LLDP, length 82 [|LLDP] 16:55:09.390692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.390697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e5b cd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.390699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.390703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.390706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.390710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.390714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.400667 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.400689 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.400694 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.400698 LLDP, length 82 [|LLDP] 16:55:09.400699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.400704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e63 6ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.400706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.400710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.400713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.400717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.410667 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.410683 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.410688 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.410692 LLDP, length 82 [|LLDP] 16:55:09.410694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.410698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e6b 0fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.410700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.410704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.410707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.410711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.420668 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.420684 LLDP, length 82 [|LLDP] 16:55:09.420686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.420691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.420695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.420698 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.420702 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.420707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e72 b0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.420709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.420713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.430668 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.430689 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.430694 LLDP, length 82 [|LLDP] 16:55:09.430695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.430700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e7a 521e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.430701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.430706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.430708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.430712 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.430717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.440664 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.440685 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.440689 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.440694 LLDP, length 82 [|LLDP] 16:55:09.440695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.440700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e81 f33e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.440701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.440706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.440708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.440713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.450668 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.450682 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.450686 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.450690 LLDP, length 82 [|LLDP] 16:55:09.450692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.450697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e89 945e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.450699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.450703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.450706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.450710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.460663 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.460678 LLDP, length 82 [|LLDP] 16:55:09.460680 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.460684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.460688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.460690 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.460695 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.460699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e91 357e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.460701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.460705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.470672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.470694 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.470699 LLDP, length 82 [|LLDP] 16:55:09.470700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.470704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e98 d69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.470706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.470710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.470713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.470717 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.470722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.480667 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.480683 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.480688 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.480692 LLDP, length 82 [|LLDP] 16:55:09.480694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.480698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea0 77be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.480700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.480704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.480707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.480711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.490667 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.490682 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.490686 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.490691 LLDP, length 82 [|LLDP] 16:55:09.490692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.490697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea8 18de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.490699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.490703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.490705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.490710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.500672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.500687 LLDP, length 82 [|LLDP] 16:55:09.500689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.500693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.500697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.500700 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.500705 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.500709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eaf b9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.500711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.500716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.510666 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.510682 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.510687 LLDP, length 82 [|LLDP] 16:55:09.510688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.510692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eb7 5b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.510694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.510698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.510701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.510705 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.510710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.520664 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.520680 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.520684 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.520688 LLDP, length 82 [|LLDP] 16:55:09.520690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.520694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ebe fc3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.520696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.520700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.520703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.520708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.530667 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.530682 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.530687 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.530691 LLDP, length 82 [|LLDP] 16:55:09.530693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.530697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ec6 9d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.530700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.530704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.530707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.530711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.540665 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.540680 LLDP, length 82 [|LLDP] 16:55:09.540682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.540686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.540690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.540693 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.540697 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.540701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ece 3e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.540703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.540707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.550662 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.550677 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.550681 LLDP, length 82 [|LLDP] 16:55:09.550683 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.550687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ed5 df9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.550689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.550693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.550696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.550700 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.550704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.560664 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.560678 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.560682 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.560686 LLDP, length 82 [|LLDP] 16:55:09.560688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.560692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0edd 80be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.560694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.560698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.560701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.560705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.570667 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.570682 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.570686 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.570690 LLDP, length 82 [|LLDP] 16:55:09.570692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.570696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ee5 21de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.570698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.570702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.570705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.570709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.580665 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.580680 LLDP, length 82 [|LLDP] 16:55:09.580682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.580686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.580690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.580693 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.580697 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.580701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eec c2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.580703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.580707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.590664 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.590679 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.590684 LLDP, length 82 [|LLDP] 16:55:09.590685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.590690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ef4 641e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.590692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.590696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.590699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.590703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.590708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.600661 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.600676 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.600681 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.600685 LLDP, length 82 [|LLDP] 16:55:09.600687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.600691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0efc 053e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.600693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.600697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.600700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.600705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.610665 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.610681 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.610686 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.610690 LLDP, length 82 [|LLDP] 16:55:09.610692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.610696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f03 a65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.610698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.610702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.610705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.610709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.620662 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.620678 LLDP, length 82 [|LLDP] 16:55:09.620680 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.620684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.620688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.620691 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.620696 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.620700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f0b 477e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.620702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.620707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.630672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.630696 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.630700 LLDP, length 82 [|LLDP] 16:55:09.630702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.630706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f12 e89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.630708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.630712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.630715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.630719 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.630724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.640664 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.640679 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.640683 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.640688 LLDP, length 82 [|LLDP] 16:55:09.640689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.640693 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f1a 89be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.640696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.640700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.640702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.640707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.650659 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.650674 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.650678 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.650683 LLDP, length 82 [|LLDP] 16:55:09.650684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.650689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f22 2ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.650691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.650695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.650698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.650702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.660674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.660689 LLDP, length 82 [|LLDP] 16:55:09.660690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.660694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.660698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.660702 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.660706 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.660710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f29 cbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.660712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.660717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.670660 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.670682 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.670687 LLDP, length 82 [|LLDP] 16:55:09.670689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.670693 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f31 6d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.670695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.670699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.670702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.670706 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.670711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.680661 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.680677 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.680681 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.680686 LLDP, length 82 [|LLDP] 16:55:09.680687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.680691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f39 0e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.680693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.680697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.680700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.680705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.690660 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.690676 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.690680 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.690685 LLDP, length 82 [|LLDP] 16:55:09.690686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.690691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f40 af5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.690693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.690697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.690699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.690704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.700659 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.700674 LLDP, length 82 [|LLDP] 16:55:09.700675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.700680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.700684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.700687 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.700691 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.700695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f48 507e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.700697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.700701 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.710664 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.710680 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.710684 LLDP, length 82 [|LLDP] 16:55:09.710686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.710690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f4f f19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.710692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.710696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.710699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.710703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.710708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.720661 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.720676 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.720680 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.720685 LLDP, length 82 [|LLDP] 16:55:09.720686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.720690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f57 92be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.720692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.720696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.720699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.720704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.730669 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.730686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.730690 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.730694 LLDP, length 82 [|LLDP] 16:55:09.730696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.730700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f5f 33de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.730702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.730706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.730709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.730713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.740661 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.740675 LLDP, length 82 [|LLDP] 16:55:09.740677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.740681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.740685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.740688 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.740692 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.740697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f66 d4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.740698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.740703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.750657 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.750671 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.750676 LLDP, length 82 [|LLDP] 16:55:09.750677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.750682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f6e 761e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.750683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.750687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.750690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.750694 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.750699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.760661 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.760677 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.760681 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.760685 LLDP, length 82 [|LLDP] 16:55:09.760687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.760691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f76 173e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.760693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.760697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.760700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.760705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.770661 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.770676 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.770680 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.770685 LLDP, length 82 [|LLDP] 16:55:09.770686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.770690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f7d b85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.770692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.770697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.770699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.770704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.780665 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.780682 LLDP, length 82 [|LLDP] 16:55:09.780684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.780689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.780693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.780696 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.780700 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.780704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f85 597e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.780706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.780711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.790663 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.790679 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.790684 LLDP, length 82 [|LLDP] 16:55:09.790685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.790690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f8c fa9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.790692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.790696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.790699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.790703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.790708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.800660 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.800674 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.800679 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.800683 LLDP, length 82 [|LLDP] 16:55:09.800685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.800689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f94 9bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.800691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.800695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.800697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.800702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.810683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.810708 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.810713 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.810718 LLDP, length 82 [|LLDP] 16:55:09.810719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.810724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f9c 3cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.810726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.810731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.810734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.810739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.820679 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.820702 LLDP, length 82 [|LLDP] 16:55:09.820704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.820709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.820713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.820716 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.820721 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.820725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fa3 ddfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.820728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.820733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.830668 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.830685 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.830689 LLDP, length 82 [|LLDP] 16:55:09.830691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.830696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fab 7f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.830698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.830702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.830705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.830709 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.830714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.840660 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.840677 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.840681 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.840685 LLDP, length 82 [|LLDP] 16:55:09.840687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.840691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb3 203e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.840693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.840697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.840699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.840704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.850652 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.850664 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.850669 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.850673 LLDP, length 82 [|LLDP] 16:55:09.850675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.850679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fba c15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.850681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.850685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.850688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.850693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.860652 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.860663 LLDP, length 82 [|LLDP] 16:55:09.860664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.860668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.860672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.860675 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.860679 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.860683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc2 627e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.860685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.860690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.870647 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.870657 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.870662 LLDP, length 82 [|LLDP] 16:55:09.870663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.870667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fca 039e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.870669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.870674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.870676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.870680 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.870684 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.880656 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.880667 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.880672 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.880676 LLDP, length 82 [|LLDP] 16:55:09.880677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.880681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd1 a4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.880683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.880687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.880690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.880694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.890650 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.890673 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.890678 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.890682 LLDP, length 82 [|LLDP] 16:55:09.890683 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.890687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd9 45de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.890689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.890693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.890696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.890700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.900662 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.900673 LLDP, length 82 [|LLDP] 16:55:09.900674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.900679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.900683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.900685 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.900690 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.900694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe0 e6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.900696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.900700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.910649 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.910659 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.910663 LLDP, length 82 [|LLDP] 16:55:09.910665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.910669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe8 881e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.910671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.910675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.910677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.910681 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.910685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.920650 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.920667 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.920672 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.920676 LLDP, length 82 [|LLDP] 16:55:09.920678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.920682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff0 293e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.920684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.920688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.920691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.920695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.930651 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.930664 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.930668 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.930672 LLDP, length 82 [|LLDP] 16:55:09.930674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.930678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff7 ca5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.930680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.930684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.930687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.930691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.940649 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.940667 LLDP, length 82 [|LLDP] 16:55:09.940669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.940673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.940677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.940680 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.940684 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.940688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fff 6b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.940690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.940694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.950651 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.950670 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.950675 LLDP, length 82 [|LLDP] 16:55:09.950676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.950680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1007 0c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.950682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.950686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.950689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.950693 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.950698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.960646 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.960663 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.960668 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.960672 LLDP, length 82 [|LLDP] 16:55:09.960674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.960678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 100e adbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.960680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.960683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.960686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.960691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.970647 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.970656 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.970661 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.970665 LLDP, length 82 [|LLDP] 16:55:09.970666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.970670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1016 4ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.970672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.970676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.970678 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.970683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.980648 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.980664 LLDP, length 82 [|LLDP] 16:55:09.980666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.980670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.980674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.980677 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.980681 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.980685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 101d effe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.980687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.980692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.990648 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.990665 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.990669 LLDP, length 82 [|LLDP] 16:55:09.990671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.990675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1025 911e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.990677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.990681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.990683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.990687 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.990692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.000646 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.000663 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.000667 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.000671 LLDP, length 82 [|LLDP] 16:55:10.000673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.000677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 102d 323e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.000679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.000683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.000685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.000690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.010644 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.010661 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.010666 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.010670 LLDP, length 82 [|LLDP] 16:55:10.010672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.010676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1034 d35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.010677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.010681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.010684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.010689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.020645 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.020661 LLDP, length 82 [|LLDP] 16:55:10.020663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.020667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.020671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.020674 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.020678 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.020682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 103c 747e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.020684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.020688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.030644 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.030654 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.030659 LLDP, length 82 [|LLDP] 16:55:10.030660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.030665 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1044 159e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.030673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.030679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.030681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.030685 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.030690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.040646 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.040664 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.040668 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.040673 LLDP, length 82 [|LLDP] 16:55:10.040674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.040678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 104b b6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.040680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.040684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.040687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.040691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.050667 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.050680 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.050684 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.050688 LLDP, length 82 [|LLDP] 16:55:10.050690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.050694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1053 57de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.050696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.050700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.050703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.050707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.060656 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.060673 LLDP, length 82 [|LLDP] 16:55:10.060675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.060680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.060684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.060686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.060690 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.060695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 105a f8fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.060697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.060702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.070649 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.070662 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.070666 LLDP, length 82 [|LLDP] 16:55:10.070668 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.070672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1062 9a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.070674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.070678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.070681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.070685 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.070690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.080649 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.080662 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.080666 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.080670 LLDP, length 82 [|LLDP] 16:55:10.080672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.080676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 106a 3b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.080678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.080682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.080684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.080689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.090645 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.090665 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.090676 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.090681 LLDP, length 82 [|LLDP] 16:55:10.090682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.090686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1071 dc5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.090688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.090692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.090695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.090699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.100648 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.100668 LLDP, length 82 [|LLDP] 16:55:10.100670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.100674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.100678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.100680 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.100684 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.100689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1079 7d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.100691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.100695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.110645 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.110665 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.110670 LLDP, length 82 [|LLDP] 16:55:10.110672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.110676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1081 1e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.110678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.110682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.110685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.110689 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.110693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.120647 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.120667 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.120671 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.120675 LLDP, length 82 [|LLDP] 16:55:10.120677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.120681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1088 bfbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.120683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.120687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.120689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.120694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.130647 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.130666 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.130671 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.130675 LLDP, length 82 [|LLDP] 16:55:10.130677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.130681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1090 60de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.130683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.130687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.130690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.130694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.140652 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.140666 LLDP, length 82 [|LLDP] 16:55:10.140668 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.140672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.140676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.140679 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.140683 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.140687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1098 01fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.140689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.140693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.150646 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.150661 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.150665 LLDP, length 82 [|LLDP] 16:55:10.150666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.150671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 109f a31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.150673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.150677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.150679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.150683 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.150688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:14.268140 IP6 fe80::36ef:b6ff:feec:3807 > ff02::2: ICMP6, router solicitation, length 16 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 4491 packets captured 4491 packets received by filter 0 packets dropped by kernel 449 packets dropped by interface INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 15 tcpdump -i swp1 -n on agg1 with rc 0 and out 16:55:05.670781 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.670841 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.670847 LLDP, length 82 [|LLDP] 16:55:05.670849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.670854 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0345 ab1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.670857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.670861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.670865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.670869 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.670874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.680760 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.680778 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.680783 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.680787 LLDP, length 82 [|LLDP] 16:55:05.680789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.680793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 034d 4c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.680795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.680800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.680803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.680807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.690758 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.690771 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.690776 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.690780 LLDP, length 82 [|LLDP] 16:55:05.690781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.690786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0354 ed5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.690788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.690792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.690795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.690799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.700751 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.700765 LLDP, length 82 [|LLDP] 16:55:05.700766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.700771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.700775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.700777 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.700782 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.700786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 035c 8e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.700788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.700792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.710759 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.710779 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.710783 LLDP, length 82 [|LLDP] 16:55:05.710785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.710794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0364 2f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.710796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.710800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.710803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.710808 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.710812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.720754 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.720771 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.720776 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.720780 LLDP, length 82 [|LLDP] 16:55:05.720781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.720786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 036b d0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.720788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.720792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.720795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.720799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.730755 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.730779 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.730784 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.730788 LLDP, length 82 [|LLDP] 16:55:05.730790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.730794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0373 71de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.730796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.730801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.730804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.730808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.740756 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.740773 LLDP, length 82 [|LLDP] 16:55:05.740775 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.740779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.740783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.740786 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.740791 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.740796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 037b 12fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.740798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.740802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.750762 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.750779 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.750784 LLDP, length 82 [|LLDP] 16:55:05.750785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.750790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0382 b41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.750792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.750796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.750799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.750804 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.750808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.760757 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.760771 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.760776 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.760780 LLDP, length 82 [|LLDP] 16:55:05.760782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.760786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 038a 553e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.760788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.760792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.760795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.760799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.770751 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.770766 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.770770 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.770774 LLDP, length 82 [|LLDP] 16:55:05.770776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.770780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0391 f65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.770782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.770787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.770789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.770794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.780755 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.780772 LLDP, length 82 [|LLDP] 16:55:05.780774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.780778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.780783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.780785 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.780789 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.780794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0399 977e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.780796 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.780801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.790753 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.790768 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.790773 LLDP, length 82 [|LLDP] 16:55:05.790774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.790779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a1 389e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.790781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.790785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.790787 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.790792 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.790796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.800752 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.800767 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.800771 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.800775 LLDP, length 82 [|LLDP] 16:55:05.800777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.800781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a8 d9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.800783 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.800787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.800790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.800795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.810752 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.810775 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.810779 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.810783 LLDP, length 82 [|LLDP] 16:55:05.810785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.810789 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b0 7ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.810791 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.810795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.810798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.810802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.820760 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.820782 LLDP, length 82 [|LLDP] 16:55:05.820785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.820789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.820793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.820797 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.820801 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.820806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b8 1bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.820808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.820813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.830755 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.830774 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.830778 LLDP, length 82 [|LLDP] 16:55:05.830780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.830784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03bf bd1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.830786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.830791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.830794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.830798 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.830803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.840757 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.840776 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.840781 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.840785 LLDP, length 82 [|LLDP] 16:55:05.840786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.840799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03c7 5e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.840802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.840806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.840809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.840813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.850752 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.850768 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.850773 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.850777 LLDP, length 82 [|LLDP] 16:55:05.850779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.850783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ce ff5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.850786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.850790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.850793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.850798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.860756 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.860771 LLDP, length 82 [|LLDP] 16:55:05.860773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.860777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.860781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.860784 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.860788 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.860792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03d6 a07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.860795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.860799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.870752 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.870766 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.870771 LLDP, length 82 [|LLDP] 16:55:05.870772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.870777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03de 419e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.870779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.870783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.870786 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.870790 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.870794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.880751 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.880764 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.880769 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.880773 LLDP, length 82 [|LLDP] 16:55:05.880775 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.880779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03e5 e2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.880781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.880785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.880787 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.880792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.890752 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.890766 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.890771 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.890775 LLDP, length 82 [|LLDP] 16:55:05.890777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.890781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ed 83de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.890783 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.890787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.890790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.890795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.900751 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.900766 LLDP, length 82 [|LLDP] 16:55:05.900767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.900772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.900776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.900778 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.900783 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.900787 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03f5 24fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.900789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.900794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.910754 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.910769 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.910774 LLDP, length 82 [|LLDP] 16:55:05.910775 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.910780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03fc c61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.910781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.910786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.910788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.910793 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.910797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.920748 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.920762 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.920767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.920771 LLDP, length 82 [|LLDP] 16:55:05.920773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.920777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0404 673e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.920779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.920783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.920786 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.920790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.930753 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.930768 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.930772 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.930777 LLDP, length 82 [|LLDP] 16:55:05.930778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.930783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 040c 085e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.930785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.930789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.930792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.930796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.940760 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.940776 LLDP, length 82 [|LLDP] 16:55:05.940778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.940782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.940786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.940789 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.940793 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.940797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0413 a97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.940800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.940804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.950747 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.950764 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.950768 LLDP, length 82 [|LLDP] 16:55:05.950770 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.950774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 041b 4a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.950777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.950781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.950784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.950788 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.950793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.960749 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.960770 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.960775 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.960779 LLDP, length 82 [|LLDP] 16:55:05.960781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.960785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0422 ebbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.960787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.960791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.960794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.960798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.970747 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.970761 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.970765 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.970769 LLDP, length 82 [|LLDP] 16:55:05.970771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.970775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 042a 8cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.970777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.970781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.970784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.970789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.980748 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.980763 LLDP, length 82 [|LLDP] 16:55:05.980764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.980769 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.980773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.980775 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.980779 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.980783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0432 2dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.980785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.980790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:05.990746 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.990760 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:05.990764 LLDP, length 82 [|LLDP] 16:55:05.990766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:05.990770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0439 cf1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:05.990772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:05.990776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:05.990779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:05.990783 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:05.990787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.000747 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.000761 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.000766 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.000770 LLDP, length 82 [|LLDP] 16:55:06.000772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.000776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0441 703e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.000778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.000782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.000785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.000790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.010747 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.010761 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.010766 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.010770 LLDP, length 82 [|LLDP] 16:55:06.010772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.010776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0449 115e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.010778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.010782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.010785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.010790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.020746 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.020760 LLDP, length 82 [|LLDP] 16:55:06.020762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.020766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.020770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.020773 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.020777 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.020781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0450 b27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.020783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.020787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.030745 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.030759 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.030763 LLDP, length 82 [|LLDP] 16:55:06.030765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.030769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0458 539e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.030771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.030775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.030778 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.030783 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.030787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.040746 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.040769 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.040773 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.040785 LLDP, length 82 [|LLDP] 16:55:06.040787 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.040792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 045f f4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.040794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.040798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.040801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.040805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.050745 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.050761 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.050766 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.050770 LLDP, length 82 [|LLDP] 16:55:06.050772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.050776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0467 95de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.050778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.050782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.050785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.050790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.060749 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.060764 LLDP, length 82 [|LLDP] 16:55:06.060766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.060770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.060774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.060777 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.060781 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.060786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 046f 36fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.060788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.060793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.070748 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.070763 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.070767 LLDP, length 82 [|LLDP] 16:55:06.070769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.070773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0476 d81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.070776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.070780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.070783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.070787 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.070792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.080744 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.080758 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.080763 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.080767 LLDP, length 82 [|LLDP] 16:55:06.080768 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.080773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 047e 793e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.080775 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.080779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.080781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.080786 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.090743 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.090757 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.090762 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.090766 LLDP, length 82 [|LLDP] 16:55:06.090767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.090772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0486 1a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.090774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.090778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.090781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.090785 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.100748 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.100762 LLDP, length 82 [|LLDP] 16:55:06.100763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.100768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.100772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.100775 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.100779 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.100784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 048d bb7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.100786 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.100791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.110756 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.110775 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.110780 LLDP, length 82 [|LLDP] 16:55:06.110782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.110786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0495 5c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.110789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.110793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.110796 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.110801 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.110806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.120753 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.120774 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.120778 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.120783 LLDP, length 82 [|LLDP] 16:55:06.120785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.120789 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 049c fdbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.120792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.120796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.120799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.120804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.130752 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.130768 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.130773 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.130777 LLDP, length 82 [|LLDP] 16:55:06.130779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.130783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04a4 9ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.130785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.130790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.130793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.130797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.140748 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.140764 LLDP, length 82 [|LLDP] 16:55:06.140766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.140770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.140774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.140777 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.140782 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.140786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ac 3ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.140788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.140793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.150743 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.150756 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.150761 LLDP, length 82 [|LLDP] 16:55:06.150762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.150766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04b3 e11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.150768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.150773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.150775 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.150779 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.150784 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.160741 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.160755 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.160759 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.160764 LLDP, length 82 [|LLDP] 16:55:06.160765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.160770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04bb 823e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.160771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.160776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.160778 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.160783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.170751 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.170771 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.170775 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.170780 LLDP, length 82 [|LLDP] 16:55:06.170781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.170786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c3 235e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.170787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.170792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.170794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.170799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.180743 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.180756 LLDP, length 82 [|LLDP] 16:55:06.180758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.180762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.180766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.180769 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.180773 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.180777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ca c47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.180779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.180783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.190736 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.190747 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.190752 LLDP, length 82 [|LLDP] 16:55:06.190753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.190758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d2 659e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.190760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.190764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.190766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.190770 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.190775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.200736 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.200748 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.200752 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.200757 LLDP, length 82 [|LLDP] 16:55:06.200758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.200762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04da 06be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.200764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.200768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.200771 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.200775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.210736 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.210747 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.210752 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.210756 LLDP, length 82 [|LLDP] 16:55:06.210757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.210761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e1 a7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.210763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.210767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.210770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.210774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.220736 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.220747 LLDP, length 82 [|LLDP] 16:55:06.220749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.220753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.220757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.220760 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.220764 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.220768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e9 48fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.220770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.220774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.230733 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.230751 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.230755 LLDP, length 82 [|LLDP] 16:55:06.230757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.230761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f0 ea1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.230763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.230767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.230770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.230774 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.230778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.240735 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.240754 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.240758 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.240762 LLDP, length 82 [|LLDP] 16:55:06.240763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.240768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f8 8b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.240770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.240774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.240777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.240781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.250751 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.250771 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.250775 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.250780 LLDP, length 82 [|LLDP] 16:55:06.250781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.250786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0500 2c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.250787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.250792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.250795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.250799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.260738 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.260757 LLDP, length 82 [|LLDP] 16:55:06.260758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.260763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.260767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.260783 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.260788 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.260792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0507 cd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.260794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.260798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.270739 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.270754 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.270758 LLDP, length 82 [|LLDP] 16:55:06.270760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.270764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 050f 6e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.270766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.270770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.270773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.270777 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.270781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.280738 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.280752 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.280756 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.280761 LLDP, length 82 [|LLDP] 16:55:06.280762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.280767 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0517 0fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.280769 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.280773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.280776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.280780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.290735 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.290747 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.290752 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.290756 LLDP, length 82 [|LLDP] 16:55:06.290757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.290762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 051e b0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.290764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.290768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.290770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.290775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.300739 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.300752 LLDP, length 82 [|LLDP] 16:55:06.300753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.300758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.300762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.300764 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.300768 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.300773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0526 51fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.300775 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.300779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.310737 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.310749 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.310754 LLDP, length 82 [|LLDP] 16:55:06.310755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.310759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 052d f31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.310761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.310765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.310768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.310772 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.310776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.320732 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.320744 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.320748 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.320752 LLDP, length 82 [|LLDP] 16:55:06.320754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.320758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0535 943e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.320760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.320764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.320767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.320771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.330732 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.330749 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.330754 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.330758 LLDP, length 82 [|LLDP] 16:55:06.330760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.330764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 053d 355e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.330766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.330770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.330773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.330778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.340731 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.340750 LLDP, length 82 [|LLDP] 16:55:06.340752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.340756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.340760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.340763 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.340767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.340771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0544 d67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.340773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.340777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.350733 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.350745 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.350749 LLDP, length 82 [|LLDP] 16:55:06.350751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.350755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 054c 779e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.350757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.350761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.350763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.350767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.350772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.360735 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.360747 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.360751 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.360755 LLDP, length 82 [|LLDP] 16:55:06.360757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.360761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0554 18be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.360763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.360767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.360770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.360774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.370736 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.370749 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.370753 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.370757 LLDP, length 82 [|LLDP] 16:55:06.370759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.370763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 055b b9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.370765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.370769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.370772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.370776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.380740 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.380753 LLDP, length 82 [|LLDP] 16:55:06.380754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.380759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.380763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.380765 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.380770 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.380774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0563 5afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.380776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.380780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.390732 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.390744 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.390749 LLDP, length 82 [|LLDP] 16:55:06.390750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.390755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 056a fc1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.390757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.390761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.390763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.390767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.390772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.400732 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.400743 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.400747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.400752 LLDP, length 82 [|LLDP] 16:55:06.400753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.400757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0572 9d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.400759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.400763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.400766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.400770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.410732 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.410743 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.410747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.410751 LLDP, length 82 [|LLDP] 16:55:06.410753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.410757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 057a 3e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.410759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.410763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.410765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.410770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.420732 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.420744 LLDP, length 82 [|LLDP] 16:55:06.420746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.420750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.420754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.420757 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.420761 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.420766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0581 df7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.420767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.420772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.430732 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.430743 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.430747 LLDP, length 82 [|LLDP] 16:55:06.430749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.430753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0589 809e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.430755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.430759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.430761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.430765 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.430770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.440730 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.440747 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.440752 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.440756 LLDP, length 82 [|LLDP] 16:55:06.440758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.440762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0591 21be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.440764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.440768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.440770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.440775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.450731 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.450750 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.450755 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.450759 LLDP, length 82 [|LLDP] 16:55:06.450760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.450764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0598 c2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.450766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.450770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.450773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.450778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.460731 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.460750 LLDP, length 82 [|LLDP] 16:55:06.460752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.460756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.460760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.460763 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.460767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.460771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a0 63fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.460773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.460777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.470728 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.470746 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.470751 LLDP, length 82 [|LLDP] 16:55:06.470752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.470757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a8 051e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.470759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.470763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.470766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.470770 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.470774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.480731 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.480750 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.480755 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.480759 LLDP, length 82 [|LLDP] 16:55:06.480761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.480765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05af a63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.480767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.480771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.480774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.480778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.490730 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.490752 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.490756 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.490761 LLDP, length 82 [|LLDP] 16:55:06.490762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.490766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05b7 475e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.490768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.490772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.490775 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.490779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.500729 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.500747 LLDP, length 82 [|LLDP] 16:55:06.500749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.500753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.500757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.500760 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.500764 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.500768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05be e87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.500770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.500775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.510731 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.510749 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.510754 LLDP, length 82 [|LLDP] 16:55:06.510755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.510760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05c6 899e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.510761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.510765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.510768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.510772 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.510776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.520727 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.520738 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.520743 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.520747 LLDP, length 82 [|LLDP] 16:55:06.520749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.520753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ce 2abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.520755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.520759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.520761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.520766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.530726 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.530737 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.530741 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.530745 LLDP, length 82 [|LLDP] 16:55:06.530747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.530751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05d5 cbde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.530753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.530757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.530759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.530764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.540727 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.540744 LLDP, length 82 [|LLDP] 16:55:06.540745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.540750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.540754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.540756 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.540761 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.540765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05dd 6cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.540767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.540772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.550729 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.550741 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.550745 LLDP, length 82 [|LLDP] 16:55:06.550746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.550751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05e5 0e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.550752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.550757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.550759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.550763 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.550768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.560730 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.560743 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.560747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.560752 LLDP, length 82 [|LLDP] 16:55:06.560753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.560757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ec af3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.560759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.560763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.560766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.560771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.570727 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.570745 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.570750 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.570754 LLDP, length 82 [|LLDP] 16:55:06.570755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.570760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05f4 505e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.570762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.570766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.570768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.570773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.580729 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.580743 LLDP, length 82 [|LLDP] 16:55:06.580744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.580748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.580753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.580755 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.580760 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.580764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05fb f17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.580766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.580770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.590730 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.590744 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.590748 LLDP, length 82 [|LLDP] 16:55:06.590749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.590754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0603 929e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.590756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.590760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.590763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.590767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.590772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.600728 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.600742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.600746 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.600750 LLDP, length 82 [|LLDP] 16:55:06.600752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.600756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 060b 33be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.600758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.600762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.600765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.600769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.610730 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.610742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.610746 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.610750 LLDP, length 82 [|LLDP] 16:55:06.610752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.610756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0612 d4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.610757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.610761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.610764 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.610769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.620726 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.620744 LLDP, length 82 [|LLDP] 16:55:06.620745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.620750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.620754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.620756 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.620761 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.620765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 061a 75fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.620767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.620771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.630727 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.630739 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.630743 LLDP, length 82 [|LLDP] 16:55:06.630745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.630749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0622 171e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.630751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.630755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.630757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.630761 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.630766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.640726 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.640743 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.640748 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.640752 LLDP, length 82 [|LLDP] 16:55:06.640754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.640758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0629 b83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.640760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.640764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.640767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.640772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.650724 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.650742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.650746 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.650751 LLDP, length 82 [|LLDP] 16:55:06.650752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.650756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0631 595e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.650758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.650762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.650764 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.650769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.660728 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.660747 LLDP, length 82 [|LLDP] 16:55:06.660749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.660753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.660757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.660760 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.660764 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.660768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0638 fa7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.660770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.660775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.670734 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.670746 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.670751 LLDP, length 82 [|LLDP] 16:55:06.670752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.670756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0640 9b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.670758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.670762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.670765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.670769 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.670773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.680725 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.680744 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.680749 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.680753 LLDP, length 82 [|LLDP] 16:55:06.680754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.680759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0648 3cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.680760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.680765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.680767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.680772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.690726 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.690746 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.690751 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.690755 LLDP, length 82 [|LLDP] 16:55:06.690757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.690761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 064f ddde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.690763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.690767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.690769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.690774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.700728 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.700751 LLDP, length 82 [|LLDP] 16:55:06.700752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.700757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.700760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.700763 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.700767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.700771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0657 7efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.700774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.700778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.710729 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.710741 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.710746 LLDP, length 82 [|LLDP] 16:55:06.710747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.710751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 065f 201e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.710753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.710758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.710760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.710765 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.710770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.720724 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.720736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.720740 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.720745 LLDP, length 82 [|LLDP] 16:55:06.720746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.720750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0666 c13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.720752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.720756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.720759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.720763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.730725 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.730736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.730740 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.730745 LLDP, length 82 [|LLDP] 16:55:06.730746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.730750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 066e 625e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.730752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.730756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.730759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.730763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.740724 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.740735 LLDP, length 82 [|LLDP] 16:55:06.740737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.740741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.740745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.740748 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.740752 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.740757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0676 037e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.740759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.740763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.750726 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.750738 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.750743 LLDP, length 82 [|LLDP] 16:55:06.750744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.750748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 067d a49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.750750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.750754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.750757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.750761 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.750766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.760723 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.760742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.760746 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.760751 LLDP, length 82 [|LLDP] 16:55:06.760752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.760756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0685 45be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.760758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.760762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.760765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.760769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.770723 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.770742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.770747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.770751 LLDP, length 82 [|LLDP] 16:55:06.770752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.770757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 068c e6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.770758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.770763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.770766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.770770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.780733 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.780749 LLDP, length 82 [|LLDP] 16:55:06.780751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.780756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.780760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.780763 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.780767 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.780772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0694 87fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.780774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.780778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.790729 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.790751 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.790756 LLDP, length 82 [|LLDP] 16:55:06.790757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.790761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 069c 291e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.790763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.790767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.790770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.790774 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.790779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.800725 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.800740 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.800744 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.800756 LLDP, length 82 [|LLDP] 16:55:06.800757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.800762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a3 ca3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.800764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.800768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.800771 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.800775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.810755 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.810780 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.810785 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.810790 LLDP, length 82 [|LLDP] 16:55:06.810792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.810796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ab 6b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.810798 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.810803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.810806 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.810811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.820739 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.820768 LLDP, length 82 [|LLDP] 16:55:06.820770 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.820774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.820778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.820782 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.820786 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.820790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b3 0c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.820793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.820798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.830727 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.830742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.830746 LLDP, length 82 [|LLDP] 16:55:06.830748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.830752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ba ad9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.830754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.830758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.830761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.830765 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.830770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.840723 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.840735 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.840739 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.840744 LLDP, length 82 [|LLDP] 16:55:06.840745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.840749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c2 4ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.840752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.840756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.840758 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.840763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.850720 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.850736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.850741 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.850745 LLDP, length 82 [|LLDP] 16:55:06.850747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.850751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c9 efde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.850753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.850757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.850760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.850764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.860728 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.860741 LLDP, length 82 [|LLDP] 16:55:06.860743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.860747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.860751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.860754 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.860758 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.860762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d1 90fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.860764 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.860768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.870734 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.870752 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.870757 LLDP, length 82 [|LLDP] 16:55:06.870759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.870763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d9 321e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.870765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.870769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.870772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.870776 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.870781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.880723 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.880742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.880747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.880751 LLDP, length 82 [|LLDP] 16:55:06.880753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.880757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e0 d33e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.880759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.880763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.880766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.880770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.890719 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.890738 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.890743 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.890747 LLDP, length 82 [|LLDP] 16:55:06.890748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.890753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e8 745e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.890755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.890759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.890762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.890767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.900722 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.900736 LLDP, length 82 [|LLDP] 16:55:06.900737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.900741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.900745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.900748 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.900752 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.900757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f0 157e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.900759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.900763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.910722 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.910741 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.910746 LLDP, length 82 [|LLDP] 16:55:06.910747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.910752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f7 b69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.910754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.910758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.910761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.910765 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.910769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.920720 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.920732 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.920737 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.920741 LLDP, length 82 [|LLDP] 16:55:06.920743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.920747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ff 57be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.920749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.920753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.920755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.920760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.930719 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.930736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.930741 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.930745 LLDP, length 82 [|LLDP] 16:55:06.930746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.930750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0706 f8de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.930752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.930756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.930759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.930763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.940720 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.940733 LLDP, length 82 [|LLDP] 16:55:06.940734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.940738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.940743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.940745 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.940749 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.940753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 070e 99fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.940755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.940760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.950718 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.950735 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.950740 LLDP, length 82 [|LLDP] 16:55:06.950741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.950745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0716 3b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.950748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.950752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.950755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.950759 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.950764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.960719 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.960737 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.960742 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.960746 LLDP, length 82 [|LLDP] 16:55:06.960747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.960751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 071d dc3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.960753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.960757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.960760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.960764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.970723 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.970736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.970741 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.970745 LLDP, length 82 [|LLDP] 16:55:06.970746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.970751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0725 7d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.970752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.970757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.970759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.970764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.980717 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.980736 LLDP, length 82 [|LLDP] 16:55:06.980737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.980742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.980746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.980748 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.980753 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.980757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 072d 1e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.980759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.980764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:06.990718 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.990729 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:06.990734 LLDP, length 82 [|LLDP] 16:55:06.990735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:06.990739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0734 bf9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:06.990741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:06.990746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:06.990748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:06.990753 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:06.990757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.000720 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.000738 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.000743 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.000747 LLDP, length 82 [|LLDP] 16:55:07.000749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.000753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 073c 60be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.000755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.000759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.000761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.000766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.010719 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.010733 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.010737 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.010741 LLDP, length 82 [|LLDP] 16:55:07.010743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.010747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0744 01de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.010749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.010753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.010756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.010761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.020718 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.020730 LLDP, length 82 [|LLDP] 16:55:07.020731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.020736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.020740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.020742 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.020747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.020751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 074b a2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.020753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.020757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.030720 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.030731 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.030736 LLDP, length 82 [|LLDP] 16:55:07.030737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.030741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0753 441e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.030743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.030747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.030750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.030754 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.030759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.040714 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.040732 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.040737 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.040741 LLDP, length 82 [|LLDP] 16:55:07.040742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.040747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 075a e53e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.040749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.040752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.040755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.040759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.050715 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.050726 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.050731 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.050735 LLDP, length 82 [|LLDP] 16:55:07.050737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.050741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0762 865e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.050743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.050747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.050750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.050754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.060715 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.060733 LLDP, length 82 [|LLDP] 16:55:07.060735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.060739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.060743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.060745 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.060750 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.060754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 076a 277e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.060756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.060760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.070717 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.070736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.070740 LLDP, length 82 [|LLDP] 16:55:07.070742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.070747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0771 c89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.070748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.070752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.070755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.070759 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.070764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.080717 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.080736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.080741 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.080745 LLDP, length 82 [|LLDP] 16:55:07.080746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.080751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0779 69be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.080753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.080757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.080760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.080764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.090716 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.090735 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.090739 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.090743 LLDP, length 82 [|LLDP] 16:55:07.090744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.090749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0781 0ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.090751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.090755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.090757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.090762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.100717 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.100736 LLDP, length 82 [|LLDP] 16:55:07.100738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.100742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.100746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.100749 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.100753 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.100757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0788 abfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.100760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.100764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.110714 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.110734 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.110738 LLDP, length 82 [|LLDP] 16:55:07.110740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.110744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0790 4d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.110746 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.110750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.110753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.110757 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.110761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.120720 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.120735 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.120739 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.120743 LLDP, length 82 [|LLDP] 16:55:07.120745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.120749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0797 ee3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.120751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.120755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.120758 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.120762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.130716 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.130728 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.130732 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.130736 LLDP, length 82 [|LLDP] 16:55:07.130738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.130742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 079f 8f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.130744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.130748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.130751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.130756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.140726 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.140745 LLDP, length 82 [|LLDP] 16:55:07.140747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.140751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.140756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.140759 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.140764 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.140768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07a7 307e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.140771 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.140776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.150717 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.150735 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.150739 LLDP, length 82 [|LLDP] 16:55:07.150741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.150745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ae d19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.150747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.150751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.150754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.150758 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.150763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.160716 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.160730 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.160735 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.160739 LLDP, length 82 [|LLDP] 16:55:07.160740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.160745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07b6 72be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.160747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.160751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.160754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.160759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.170719 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.170734 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.170738 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.170742 LLDP, length 82 [|LLDP] 16:55:07.170743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.170748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07be 13de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.170750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.170754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.170757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.170761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.180716 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.180728 LLDP, length 82 [|LLDP] 16:55:07.180729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.180734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.180738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.180741 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.180745 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.180749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07c5 b4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.180751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.180755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.190713 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.190731 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.190736 LLDP, length 82 [|LLDP] 16:55:07.190738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.190742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07cd 561e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.190744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.190748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.190750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.190754 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.190759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.200716 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.200728 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.200732 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.200736 LLDP, length 82 [|LLDP] 16:55:07.200738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.200742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07d4 f73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.200744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.200748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.200751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.200755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.210713 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.210732 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.210737 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.210741 LLDP, length 82 [|LLDP] 16:55:07.210742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.210747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07dc 985e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.210749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.210753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.210755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.210760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.220714 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.220726 LLDP, length 82 [|LLDP] 16:55:07.220728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.220732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.220736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.220739 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.220743 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.220747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07e4 397e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.220749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.220754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.230711 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.230723 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.230728 LLDP, length 82 [|LLDP] 16:55:07.230729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.230733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07eb da9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.230735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.230739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.230742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.230746 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.230751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.240713 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.240731 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.240736 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.240740 LLDP, length 82 [|LLDP] 16:55:07.240741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.240745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f3 7bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.240747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.240751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.240754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.240758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.250713 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.250732 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.250736 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.250741 LLDP, length 82 [|LLDP] 16:55:07.250742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.250746 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07fb 1cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.250748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.250752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.250755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.250760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.260712 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.260723 LLDP, length 82 [|LLDP] 16:55:07.260725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.260729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.260734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.260736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.260740 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.260745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0802 bdfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.260747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.260751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.270723 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.270740 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.270744 LLDP, length 82 [|LLDP] 16:55:07.270746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.270751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 080a 5f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.270752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.270757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.270759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.270764 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.270768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.280718 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.280740 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.280744 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.280749 LLDP, length 82 [|LLDP] 16:55:07.280750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.280755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0812 003e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.280757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.280761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.280764 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.280768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.290726 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.290748 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.290753 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.290757 LLDP, length 82 [|LLDP] 16:55:07.290759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.290763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0819 a15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.290765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.290769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.290773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.290777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.300730 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.300752 LLDP, length 82 [|LLDP] 16:55:07.300753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.300758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.300762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.300766 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.300770 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.300774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0821 427e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.300777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.300782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.310721 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.310739 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.310743 LLDP, length 82 [|LLDP] 16:55:07.310745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.310749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0828 e39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.310751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.310755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.310758 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.310763 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.310767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.320715 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.320728 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.320733 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.320737 LLDP, length 82 [|LLDP] 16:55:07.320738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.320743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0830 84be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.320745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.320749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.320752 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.320756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.330720 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.330734 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.330739 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.330743 LLDP, length 82 [|LLDP] 16:55:07.330744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.330749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0838 25de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.330751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.330755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.330758 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.330762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.340753 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.340787 LLDP, length 82 [|LLDP] 16:55:07.340789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.340794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.340798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.340802 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.340807 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.340812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 083f c6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.340814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.340819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.350752 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.350785 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.350790 LLDP, length 82 [|LLDP] 16:55:07.350792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.350797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0847 681e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.350799 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.350803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.350807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.350812 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.350817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.360755 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.360788 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.360794 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.360799 LLDP, length 82 [|LLDP] 16:55:07.360801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.360806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 084f 093e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.360808 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.360813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.360816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.360822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.370758 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.370791 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.370797 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.370802 LLDP, length 82 [|LLDP] 16:55:07.370804 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.370808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0856 aa5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.370811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.370815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.370819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.370825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.380748 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.380782 LLDP, length 82 [|LLDP] 16:55:07.380785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.380789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.380794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.380797 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.380802 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.380807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 085e 4b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.380809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.380814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.390748 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.390781 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.390786 LLDP, length 82 [|LLDP] 16:55:07.390788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.390793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0865 ec9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.390796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.390800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.390804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.390808 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.390813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.400750 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.400784 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.400789 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.400795 LLDP, length 82 [|LLDP] 16:55:07.400797 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.400802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 086d 8dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.400804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.400809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.400812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.400818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.410736 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.410764 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.410769 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.410774 LLDP, length 82 [|LLDP] 16:55:07.410776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.410780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0875 2ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.410783 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.410787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.410791 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.410796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.420717 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.420739 LLDP, length 82 [|LLDP] 16:55:07.420741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.420745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.420749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.420752 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.420756 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.420761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 087c cffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.420763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.420768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.430712 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.430734 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.430739 LLDP, length 82 [|LLDP] 16:55:07.430740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.430745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0884 711e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.430747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.430751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.430754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.430759 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.430763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.440710 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.440730 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.440734 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.440739 LLDP, length 82 [|LLDP] 16:55:07.440740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.440745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 088c 123e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.440747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.440751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.440753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.440758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.450708 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.450721 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.450725 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.450730 LLDP, length 82 [|LLDP] 16:55:07.450731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.450736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0893 b35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.450737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.450742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.450744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.450749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.460707 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.460719 LLDP, length 82 [|LLDP] 16:55:07.460721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.460725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.460729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.460731 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.460736 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.460740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 089b 547e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.460742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.460747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.470709 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.470721 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.470725 LLDP, length 82 [|LLDP] 16:55:07.470727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.470731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a2 f59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.470733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.470737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.470739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.470744 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.470748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.480705 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.480717 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.480721 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.480725 LLDP, length 82 [|LLDP] 16:55:07.480727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.480731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08aa 96be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.480733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.480737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.480740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.480745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.490704 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.490723 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.490727 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.490732 LLDP, length 82 [|LLDP] 16:55:07.490733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.490737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b2 37de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.490739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.490743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.490746 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.490750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.500707 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.500721 LLDP, length 82 [|LLDP] 16:55:07.500722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.500727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.500731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.500734 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.500738 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.500743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b9 d8fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.500745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.500749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.510706 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.510724 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.510729 LLDP, length 82 [|LLDP] 16:55:07.510730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.510735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c1 7a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.510736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.510740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.510743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.510747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.510752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.520707 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.520725 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.520730 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.520734 LLDP, length 82 [|LLDP] 16:55:07.520735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.520739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c9 1b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.520741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.520745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.520748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.520752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.530710 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.530723 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.530727 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.530731 LLDP, length 82 [|LLDP] 16:55:07.530733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.530737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d0 bc5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.530739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.530744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.530746 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.530751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.540707 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.540721 LLDP, length 82 [|LLDP] 16:55:07.540722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.540727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.540730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.540733 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.540737 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.540742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d8 5d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.540743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.540748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.550706 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.550725 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.550729 LLDP, length 82 [|LLDP] 16:55:07.550730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.550734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08df fe9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.550736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.550740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.550743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.550747 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.550752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.560708 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.560720 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.560724 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.560729 LLDP, length 82 [|LLDP] 16:55:07.560730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.560734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e7 9fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.560736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.560740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.560743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.560748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.570706 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.570717 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.570722 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.570726 LLDP, length 82 [|LLDP] 16:55:07.570728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.570732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08ef 40de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.570734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.570738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.570740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.570745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.580702 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.580720 LLDP, length 82 [|LLDP] 16:55:07.580721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.580725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.580729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.580732 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.580736 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.580741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08f6 e1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.580743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.580747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.590702 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.590720 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.590724 LLDP, length 82 [|LLDP] 16:55:07.590726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.590730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08fe 831e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.590732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.590736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.590739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.590743 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.590747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.600703 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.600716 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.600720 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.600724 LLDP, length 82 [|LLDP] 16:55:07.600726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.600730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0906 243e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.600732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.600736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.600738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.600743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.610702 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.610720 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.610724 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.610729 LLDP, length 82 [|LLDP] 16:55:07.610730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.610734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 090d c55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.610736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.610740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.610743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.610748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.620708 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.620731 LLDP, length 82 [|LLDP] 16:55:07.620733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.620737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.620742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.620744 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.620749 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.620753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0915 667e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.620755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.620760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.630704 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.630719 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.630723 LLDP, length 82 [|LLDP] 16:55:07.630725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.630729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 091d 079e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.630731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.630735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.630738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.630742 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.630747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.640705 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.640720 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.640724 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.640728 LLDP, length 82 [|LLDP] 16:55:07.640730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.640734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0924 a8be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.640736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.640740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.640743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.640748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.650704 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.650723 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.650728 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.650732 LLDP, length 82 [|LLDP] 16:55:07.650733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.650737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 092c 49de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.650739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.650743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.650746 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.650750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.660702 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.660713 LLDP, length 82 [|LLDP] 16:55:07.660715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.660719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.660723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.660726 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.660730 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.660734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0933 eafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.660736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.660741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.670701 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.670712 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.670717 LLDP, length 82 [|LLDP] 16:55:07.670718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.670723 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 093b 8c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.670725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.670729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.670731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.670735 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.670740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.680701 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.680712 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.680717 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.680721 LLDP, length 82 [|LLDP] 16:55:07.680722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.680727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0943 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.680728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.680732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.680735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.680739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.690699 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.690718 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.690722 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.690726 LLDP, length 82 [|LLDP] 16:55:07.690727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.690732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 094a ce5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.690734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.690738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.690740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.690744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.700701 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.700720 LLDP, length 82 [|LLDP] 16:55:07.700721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.700726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.700730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.700732 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.700736 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.700741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0952 6f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.700743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.700747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.710702 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.710724 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.710729 LLDP, length 82 [|LLDP] 16:55:07.710730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.710734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 095a 109e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.710736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.710741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.710743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.710748 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.710752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.720700 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.720719 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.720723 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.720728 LLDP, length 82 [|LLDP] 16:55:07.720729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.720734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0961 b1be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.720735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.720739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.720742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.720747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.730698 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.730716 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.730721 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.730726 LLDP, length 82 [|LLDP] 16:55:07.730727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.730732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0969 52de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.730734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.730738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.730741 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.730745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.740706 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.740721 LLDP, length 82 [|LLDP] 16:55:07.740723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.740727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.740731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.740734 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.740738 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.740743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0970 f3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.740745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.740750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.750701 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.750715 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.750720 LLDP, length 82 [|LLDP] 16:55:07.750721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.750726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0978 951e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.750727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.750731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.750734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.750738 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.750743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.760703 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.760717 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.760721 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.760725 LLDP, length 82 [|LLDP] 16:55:07.760727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.760731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0980 363e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.760733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.760737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.760739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.760744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.770703 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.770715 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.770720 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.770724 LLDP, length 82 [|LLDP] 16:55:07.770726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.770730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0987 d75e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.770732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.770736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.770738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.770743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.780709 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.780726 LLDP, length 82 [|LLDP] 16:55:07.780728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.780732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.780736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.780739 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.780744 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.780748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 098f 787e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.780750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.780755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.790710 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.790724 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.790729 LLDP, length 82 [|LLDP] 16:55:07.790730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.790735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0997 199e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.790737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.790741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.790744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.790748 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.790753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.800701 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.800714 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.800718 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.800722 LLDP, length 82 [|LLDP] 16:55:07.800724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.800728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 099e babe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.800730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.800734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.800737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.800741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.810702 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.810718 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.810723 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.810727 LLDP, length 82 [|LLDP] 16:55:07.810728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.810733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09a6 5bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.810735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.810739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.810742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.810746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.820703 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.820723 LLDP, length 82 [|LLDP] 16:55:07.820725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.820729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.820733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.820736 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.820740 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.820745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ad fcfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.820747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.820752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.830704 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.830719 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.830724 LLDP, length 82 [|LLDP] 16:55:07.830725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.830730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09b5 9e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.830731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.830736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.830739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.830743 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.830748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.840703 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.840719 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.840724 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.840728 LLDP, length 82 [|LLDP] 16:55:07.840730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.840734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09bd 3f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.840736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.840740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.840743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.840748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.850699 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.850721 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.850726 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.850730 LLDP, length 82 [|LLDP] 16:55:07.850731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.850736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09c4 e05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.850738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.850742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.850745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.850749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.860700 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.860714 LLDP, length 82 [|LLDP] 16:55:07.860715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.860720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.860724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.860727 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.860731 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.860735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09cc 817e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.860737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.860742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.870701 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.870713 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.870718 LLDP, length 82 [|LLDP] 16:55:07.870720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.870724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09d4 229e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.870726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.870730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.870733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.870737 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.870742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.880701 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.880714 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.880718 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.880723 LLDP, length 82 [|LLDP] 16:55:07.880724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.880728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09db c3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.880730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.880734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.880737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.880742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.890699 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.890711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.890715 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.890720 LLDP, length 82 [|LLDP] 16:55:07.890721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.890725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e3 64de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.890727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.890732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.890734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.890739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.900696 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.900716 LLDP, length 82 [|LLDP] 16:55:07.900718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.900722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.900726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.900729 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.900733 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.900737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09eb 05fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.900739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.900744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.910697 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.910717 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.910722 LLDP, length 82 [|LLDP] 16:55:07.910723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.910728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f2 a71e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.910730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.910734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.910737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.910741 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.910746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.920700 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.920714 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.920718 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.920722 LLDP, length 82 [|LLDP] 16:55:07.920724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.920728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09fa 483e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.920730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.920734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.920737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.920741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.930695 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.930714 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.930719 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.930723 LLDP, length 82 [|LLDP] 16:55:07.930724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.930729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a01 e95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.930731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.930735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.930738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.930742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.940695 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.940714 LLDP, length 82 [|LLDP] 16:55:07.940716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.940720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.940724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.940727 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.940732 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.940736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a09 8a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.940738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.940742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.950697 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.950717 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.950722 LLDP, length 82 [|LLDP] 16:55:07.950723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.950728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a11 2b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.950730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.950734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.950736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.950741 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.950745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.960698 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.960711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.960716 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.960720 LLDP, length 82 [|LLDP] 16:55:07.960721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.960726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a18 ccbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.960728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.960732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.960734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.960739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.970698 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.970717 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.970722 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.970726 LLDP, length 82 [|LLDP] 16:55:07.970728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.970732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a20 6dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.970733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.970738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.970740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.970745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.980704 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.980716 LLDP, length 82 [|LLDP] 16:55:07.980717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.980722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.980726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.980728 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.980732 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.980737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a28 0efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.980739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.980743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:07.990698 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.990716 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:07.990720 LLDP, length 82 [|LLDP] 16:55:07.990722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:07.990726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a2f b01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:07.990728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:07.990732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:07.990734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:07.990739 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:07.990743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.000695 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.000707 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.000712 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.000716 LLDP, length 82 [|LLDP] 16:55:08.000717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.000722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a37 513e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.000723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.000727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.000730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.000734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.010693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.010706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.010711 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.010715 LLDP, length 82 [|LLDP] 16:55:08.010716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.010721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a3e f25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.010723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.010727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.010729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.010734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.020700 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.020713 LLDP, length 82 [|LLDP] 16:55:08.020715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.020719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.020723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.020726 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.020730 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.020734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a46 937e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.020736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.020741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.030694 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.030707 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.030712 LLDP, length 82 [|LLDP] 16:55:08.030713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.030717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a4e 349e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.030719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.030723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.030725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.030730 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.030734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.040697 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.040716 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.040720 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.040725 LLDP, length 82 [|LLDP] 16:55:08.040726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.040730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a55 d5be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.040732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.040736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.040739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.040744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.050694 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.050708 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.050713 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.050717 LLDP, length 82 [|LLDP] 16:55:08.050719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.050723 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a5d 76de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.050725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.050729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.050732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.050736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.060694 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.060708 LLDP, length 82 [|LLDP] 16:55:08.060709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.060714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.060718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.060720 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.060724 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.060728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a65 17fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.060730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.060735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.070696 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.070709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.070713 LLDP, length 82 [|LLDP] 16:55:08.070714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.070719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a6c b91e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.070720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.070725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.070727 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.070731 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.070736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.080693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.080705 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.080710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.080714 LLDP, length 82 [|LLDP] 16:55:08.080716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.080720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a74 5a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.080722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.080726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.080728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.080733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.090692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.090704 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.090708 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.090712 LLDP, length 82 [|LLDP] 16:55:08.090714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.090718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a7b fb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.090720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.090724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.090726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.090731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.100692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.100704 LLDP, length 82 [|LLDP] 16:55:08.100705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.100710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.100714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.100716 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.100721 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.100725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a83 9c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.100727 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.100732 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.110690 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.110703 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.110708 LLDP, length 82 [|LLDP] 16:55:08.110709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.110713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a8b 3d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.110715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.110719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.110722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.110726 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.110730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.120693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.120706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.120710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.120715 LLDP, length 82 [|LLDP] 16:55:08.120716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.120720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a92 debe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.120722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.120727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.120729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.120734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.130695 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.130709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.130713 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.130717 LLDP, length 82 [|LLDP] 16:55:08.130719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.130723 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a9a 7fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.130724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.130728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.130731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.130736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.140692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.140705 LLDP, length 82 [|LLDP] 16:55:08.140707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.140711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.140715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.140718 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.140722 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.140727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa2 20fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.140729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.140734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.150692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.150706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.150710 LLDP, length 82 [|LLDP] 16:55:08.150712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.150716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa9 c21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.150718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.150723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.150725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.150729 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.150734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.160707 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.160725 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.160729 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.160734 LLDP, length 82 [|LLDP] 16:55:08.160736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.160740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab1 633e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.160742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.160747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.160750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.160755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.170704 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.170724 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.170730 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.170734 LLDP, length 82 [|LLDP] 16:55:08.170735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.170740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab9 045e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.170742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.170747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.170750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.170755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.180699 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.180716 LLDP, length 82 [|LLDP] 16:55:08.180718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.180722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.180726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.180729 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.180733 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.180738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac0 a57e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.180740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.180745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.190699 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.190715 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.190720 LLDP, length 82 [|LLDP] 16:55:08.190721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.190726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac8 469e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.190728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.190732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.190735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.190739 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.190743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.200700 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.200715 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.200720 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.200724 LLDP, length 82 [|LLDP] 16:55:08.200725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.200730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0acf e7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.200732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.200736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.200739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.200743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.210694 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.210709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.210714 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.210718 LLDP, length 82 [|LLDP] 16:55:08.210719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.210724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad7 88de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.210725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.210729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.210732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.210737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.220696 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.220717 LLDP, length 82 [|LLDP] 16:55:08.220718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.220723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.220727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.220730 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.220734 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.220738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0adf 29fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.220740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.220745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.230694 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.230710 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.230714 LLDP, length 82 [|LLDP] 16:55:08.230716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.230720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ae6 cb1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.230722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.230726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.230729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.230733 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.230738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.240692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.240706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.240711 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.240715 LLDP, length 82 [|LLDP] 16:55:08.240716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.240720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aee 6c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.240722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.240726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.240729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.240734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.250699 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.250714 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.250718 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.250722 LLDP, length 82 [|LLDP] 16:55:08.250723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.250728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0af6 0d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.250730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.250734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.250737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.250741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.260692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.260709 LLDP, length 82 [|LLDP] 16:55:08.260710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.260715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.260719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.260722 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.260726 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.260730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0afd ae7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.260732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.260737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.270699 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.270715 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.270719 LLDP, length 82 [|LLDP] 16:55:08.270721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.270725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b05 4f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.270727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.270731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.270734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.270738 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.270742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.280700 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.280714 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.280719 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.280723 LLDP, length 82 [|LLDP] 16:55:08.280724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.280729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b0c f0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.280731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.280735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.280738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.280742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.290693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.290708 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.290712 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.290716 LLDP, length 82 [|LLDP] 16:55:08.290718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.290722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b14 91de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.290724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.290728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.290731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.290735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.300693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.300708 LLDP, length 82 [|LLDP] 16:55:08.300709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.300714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.300718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.300721 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.300725 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.300729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b1c 32fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.300731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.300736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.310693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.310707 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.310712 LLDP, length 82 [|LLDP] 16:55:08.310713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.310717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b23 d41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.310719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.310723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.310726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.310730 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.310734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.320694 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.320710 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.320715 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.320719 LLDP, length 82 [|LLDP] 16:55:08.320720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.320725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b2b 753e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.320727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.320731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.320734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.320739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.330691 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.330706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.330710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.330714 LLDP, length 82 [|LLDP] 16:55:08.330716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.330720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b33 165e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.330722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.330726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.330729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.330733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.340690 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.340705 LLDP, length 82 [|LLDP] 16:55:08.340707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.340711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.340715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.340718 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.340722 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.340726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b3a b77e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.340728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.340733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.350690 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.350711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.350715 LLDP, length 82 [|LLDP] 16:55:08.350717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.350721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b42 589e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.350723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.350727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.350730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.350734 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.350739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.360693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.360709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.360714 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.360718 LLDP, length 82 [|LLDP] 16:55:08.360719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.360724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b49 f9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.360726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.360730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.360733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.360738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.370695 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.370711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.370715 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.370719 LLDP, length 82 [|LLDP] 16:55:08.370721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.370725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b51 9ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.370727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.370731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.370734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.370739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.380693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.380709 LLDP, length 82 [|LLDP] 16:55:08.380710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.380714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.380719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.380721 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.380725 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.380730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b59 3bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.380732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.380736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.390690 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.390705 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.390710 LLDP, length 82 [|LLDP] 16:55:08.390711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.390716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b60 dd1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.390718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.390722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.390725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.390729 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.390734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.400692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.400706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.400710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.400714 LLDP, length 82 [|LLDP] 16:55:08.400716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.400720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b68 7e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.400722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.400726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.400729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.400733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.410733 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.410769 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.410774 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.410778 LLDP, length 82 [|LLDP] 16:55:08.410780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.410785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b70 1f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.410787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.410792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.410795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.410800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.420718 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.420750 LLDP, length 82 [|LLDP] 16:55:08.420752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.420757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.420762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.420765 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.420770 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.420775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b77 c07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.420777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.420782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.430688 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.430704 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.430709 LLDP, length 82 [|LLDP] 16:55:08.430711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.430715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b7f 619e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.430717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.430721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.430724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.430729 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.430733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.440693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.440711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.440716 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.440720 LLDP, length 82 [|LLDP] 16:55:08.440722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.440726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b87 02be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.440728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.440732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.440735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.440739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.450692 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.450706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.450710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.450715 LLDP, length 82 [|LLDP] 16:55:08.450716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.450720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b8e a3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.450722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.450727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.450729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.450734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.460685 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.460698 LLDP, length 82 [|LLDP] 16:55:08.460700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.460704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.460708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.460711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.460715 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.460719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b96 44fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.460721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.460726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.470694 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.470709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.470714 LLDP, length 82 [|LLDP] 16:55:08.470715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.470720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b9d e61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.470722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.470726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.470729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.470733 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.470737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.480687 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.480702 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.480706 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.480711 LLDP, length 82 [|LLDP] 16:55:08.480712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.480716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ba5 873e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.480718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.480722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.480725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.480730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.490686 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.490698 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.490703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.490707 LLDP, length 82 [|LLDP] 16:55:08.490709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.490713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bad 285e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.490715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.490719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.490722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.490726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.500685 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.500698 LLDP, length 82 [|LLDP] 16:55:08.500699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.500704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.500708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.500710 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.500714 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.500719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bb4 c97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.500721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.500726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.510687 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.510699 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.510703 LLDP, length 82 [|LLDP] 16:55:08.510705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.510709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bbc 6a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.510711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.510715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.510717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.510722 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.510726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.520686 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.520699 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.520703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.520707 LLDP, length 82 [|LLDP] 16:55:08.520709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.520713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bc4 0bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.520715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.520719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.520722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.520726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.530687 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.530706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.530711 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.530715 LLDP, length 82 [|LLDP] 16:55:08.530717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.530721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bcb acde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.530723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.530727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.530730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.530734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.540693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.540707 LLDP, length 82 [|LLDP] 16:55:08.540708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.540713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.540717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.540719 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.540723 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.540728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd3 4dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.540730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.540734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.550693 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.550712 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.550717 LLDP, length 82 [|LLDP] 16:55:08.550718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.550722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bda ef1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.550724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.550728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.550731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.550735 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.550739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.560682 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.560695 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.560699 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.560703 LLDP, length 82 [|LLDP] 16:55:08.560705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.560709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be2 903e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.560711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.560715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.560718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.560723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.570687 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.570700 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.570705 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.570709 LLDP, length 82 [|LLDP] 16:55:08.570710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.570715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bea 315e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.570717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.570722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.570724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.570729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.580683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.580698 LLDP, length 82 [|LLDP] 16:55:08.580700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.580704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.580708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.580711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.580715 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.580719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf1 d27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.580721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.580726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.590683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.590697 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.590702 LLDP, length 82 [|LLDP] 16:55:08.590703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.590707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf9 739e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.590709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.590713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.590716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.590721 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.590725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.600681 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.600694 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.600699 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.600703 LLDP, length 82 [|LLDP] 16:55:08.600704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.600709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c01 14be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.600710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.600714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.600717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.600722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.610682 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.610695 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.610700 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.610704 LLDP, length 82 [|LLDP] 16:55:08.610706 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.610710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c08 b5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.610712 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.610716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.610719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.610724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.620683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.620696 LLDP, length 82 [|LLDP] 16:55:08.620697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.620702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.620706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.620708 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.620712 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.620717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c10 56fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.620719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.620723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.630690 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.630704 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.630708 LLDP, length 82 [|LLDP] 16:55:08.630710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.630714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c17 f81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.630716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.630720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.630722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.630726 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.630731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.640684 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.640699 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.640703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.640707 LLDP, length 82 [|LLDP] 16:55:08.640709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.640713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c1f 993e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.640715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.640719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.640722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.640727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.650682 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.650701 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.650705 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.650709 LLDP, length 82 [|LLDP] 16:55:08.650711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.650715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c27 3a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.650717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.650721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.650724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.650728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.660679 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.660699 LLDP, length 82 [|LLDP] 16:55:08.660701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.660705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.660709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.660712 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.660716 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.660720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c2e db7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.660722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.660726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.670696 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.670709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.670714 LLDP, length 82 [|LLDP] 16:55:08.670715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.670719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c36 7c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.670721 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.670725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.670728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.670732 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.670736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.680689 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.680703 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.680708 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.680712 LLDP, length 82 [|LLDP] 16:55:08.680713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.680718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c3e 1dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.680720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.680724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.680726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.680731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.690681 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.690702 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.690706 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.690710 LLDP, length 82 [|LLDP] 16:55:08.690712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.690716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c45 bede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.690718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.690723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.690725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.690730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.700682 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.700695 LLDP, length 82 [|LLDP] 16:55:08.700697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.700701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.700705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.700708 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.700712 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.700717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c4d 5ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.700719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.700723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.710683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.710702 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.710706 LLDP, length 82 [|LLDP] 16:55:08.710708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.710713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c55 011e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.710715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.710719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.710721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.710726 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.710730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.720681 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.720694 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.720698 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.720702 LLDP, length 82 [|LLDP] 16:55:08.720704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.720708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c5c a23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.720710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.720714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.720717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.720721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.730680 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.730698 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.730703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.730707 LLDP, length 82 [|LLDP] 16:55:08.730709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.730713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c64 435e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.730715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.730719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.730722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.730726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.740678 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.740698 LLDP, length 82 [|LLDP] 16:55:08.740700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.740704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.740709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.740711 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.740715 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.740719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c6b e47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.740721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.740726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.750679 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.750693 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.750698 LLDP, length 82 [|LLDP] 16:55:08.750699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.750703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c73 859e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.750705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.750709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.750712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.750716 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.750721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.760679 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.760694 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.760698 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.760702 LLDP, length 82 [|LLDP] 16:55:08.760704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.760708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c7b 26be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.760710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.760714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.760717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.760722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.770684 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.770704 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.770708 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.770712 LLDP, length 82 [|LLDP] 16:55:08.770714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.770718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c82 c7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.770720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.770724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.770726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.770731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.780688 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.780706 LLDP, length 82 [|LLDP] 16:55:08.780708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.780712 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.780716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.780719 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.780723 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.780728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c8a 68fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.780729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.780734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.790686 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.790702 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.790706 LLDP, length 82 [|LLDP] 16:55:08.790708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.790713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c92 0a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.790715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.790719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.790722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.790726 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.790730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.800677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.800691 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.800695 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.800700 LLDP, length 82 [|LLDP] 16:55:08.800701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.800706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c99 ab3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.800708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.800712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.800714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.800719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.810677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.810697 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.810702 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.810706 LLDP, length 82 [|LLDP] 16:55:08.810707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.810712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca1 4c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.810714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.810718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.810720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.810725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.820677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.820697 LLDP, length 82 [|LLDP] 16:55:08.820698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.820703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.820707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.820709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.820713 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.820718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca8 ed7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.820720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.820724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.830686 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.830701 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.830706 LLDP, length 82 [|LLDP] 16:55:08.830707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.830712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb0 8e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.830714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.830718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.830720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.830724 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.830730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.840680 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.840694 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.840699 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.840703 LLDP, length 82 [|LLDP] 16:55:08.840704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.840709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb8 2fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.840711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.840715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.840718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.840723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.850683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.850697 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.850702 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.850706 LLDP, length 82 [|LLDP] 16:55:08.850707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.850711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cbf d0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.850713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.850717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.850720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.850724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.860677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.860698 LLDP, length 82 [|LLDP] 16:55:08.860699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.860704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.860708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.860710 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.860715 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.860719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cc7 71fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.860721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.860726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.870683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.870703 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.870708 LLDP, length 82 [|LLDP] 16:55:08.870709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.870714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ccf 131e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.870716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.870720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.870722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.870726 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.870731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.880674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.880688 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.880693 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.880697 LLDP, length 82 [|LLDP] 16:55:08.880698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.880702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cd6 b43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.880704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.880708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.880711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.880715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.890682 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.890696 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.890701 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.890706 LLDP, length 82 [|LLDP] 16:55:08.890707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.890712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cde 555e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.890714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.890718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.890721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.890725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.900677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.900691 LLDP, length 82 [|LLDP] 16:55:08.900693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.900697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.900701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.900703 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.900708 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.900712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ce5 f67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.900714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.900719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.910677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.910691 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.910695 LLDP, length 82 [|LLDP] 16:55:08.910697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.910701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ced 979e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.910703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.910708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.910710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.910714 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.910719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.920674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.920687 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.920692 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.920696 LLDP, length 82 [|LLDP] 16:55:08.920697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.920702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cf5 38be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.920704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.920708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.920711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.920715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.930677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.930690 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.930694 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.930699 LLDP, length 82 [|LLDP] 16:55:08.930701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.930705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cfc d9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.930707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.930711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.930714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.930718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.940675 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.940694 LLDP, length 82 [|LLDP] 16:55:08.940696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.940700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.940704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.940707 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.940711 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.940715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d04 7afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.940717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.940722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.950681 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.950694 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.950698 LLDP, length 82 [|LLDP] 16:55:08.950700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.950704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d0c 1c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.950706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.950710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.950713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.950717 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.950722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.960675 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.960695 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.960700 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.960704 LLDP, length 82 [|LLDP] 16:55:08.960706 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.960710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d13 bd3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.960712 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.960716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.960719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.960723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.970677 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.970698 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.970702 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.970707 LLDP, length 82 [|LLDP] 16:55:08.970708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.970712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d1b 5e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.970715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.970719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.970721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.970726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.980674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.980688 LLDP, length 82 [|LLDP] 16:55:08.980689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.980694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.980698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.980701 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.980705 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.980709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d22 ff7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.980711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.980716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:08.990674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.990688 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:08.990693 LLDP, length 82 [|LLDP] 16:55:08.990694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:08.990699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d2a a09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:08.990701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:08.990705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:08.990708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:08.990712 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:08.990717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.000674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.000689 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.000693 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.000698 LLDP, length 82 [|LLDP] 16:55:09.000699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.000703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d32 41be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.000705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.000709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.000713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.000717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.010674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.010688 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.010692 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.010697 LLDP, length 82 [|LLDP] 16:55:09.010698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.010702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d39 e2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.010704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.010708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.010711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.010716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.020670 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.020691 LLDP, length 82 [|LLDP] 16:55:09.020693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.020697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.020701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.020704 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.020708 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.020713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d41 83fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.020714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.020719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.030672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.030691 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.030695 LLDP, length 82 [|LLDP] 16:55:09.030697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.030701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d49 251e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.030703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.030707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.030710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.030714 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.030719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.040673 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.040685 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.040689 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.040693 LLDP, length 82 [|LLDP] 16:55:09.040695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.040700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d50 c63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.040702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.040705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.040708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.040712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.050675 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.050689 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.050694 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.050698 LLDP, length 82 [|LLDP] 16:55:09.050699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.050704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d58 675e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.050706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.050710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.050713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.050717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.060671 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.060691 LLDP, length 82 [|LLDP] 16:55:09.060693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.060697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.060701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.060704 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.060708 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.060712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d60 087e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.060714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.060719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.070683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.070697 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.070701 LLDP, length 82 [|LLDP] 16:55:09.070703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.070707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d67 a99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.070709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.070713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.070716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.070720 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.070725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.080675 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.080689 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.080693 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.080697 LLDP, length 82 [|LLDP] 16:55:09.080699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.080703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d6f 4abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.080705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.080709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.080711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.080716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.090678 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.090699 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.090703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.090707 LLDP, length 82 [|LLDP] 16:55:09.090708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.090712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d76 ebde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.090714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.090718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.090721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.090726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.100672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.100693 LLDP, length 82 [|LLDP] 16:55:09.100695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.100699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.100703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.100706 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.100710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.100714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d7e 8cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.100716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.100721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.110672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.110693 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.110697 LLDP, length 82 [|LLDP] 16:55:09.110699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.110703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d86 2e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.110705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.110709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.110712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.110716 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.110720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.120669 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.120683 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.120687 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.120691 LLDP, length 82 [|LLDP] 16:55:09.120692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.120697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d8d cf3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.120699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.120703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.120706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.120710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.130670 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.130683 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.130688 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.130692 LLDP, length 82 [|LLDP] 16:55:09.130694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.130698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d95 705e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.130700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.130704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.130707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.130711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.140669 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.140682 LLDP, length 82 [|LLDP] 16:55:09.140683 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.140688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.140692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.140694 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.140699 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.140703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d9d 117e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.140705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.140709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.150668 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.150691 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.150696 LLDP, length 82 [|LLDP] 16:55:09.150697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.150701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0da4 b29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.150703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.150707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.150710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.150714 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.150718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.160671 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.160686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.160691 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.160695 LLDP, length 82 [|LLDP] 16:55:09.160696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.160701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dac 53be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.160703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.160707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.160710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.160714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.170676 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.170690 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.170694 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.170698 LLDP, length 82 [|LLDP] 16:55:09.170699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.170704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0db3 f4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.170706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.170710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.170713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.170717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.180669 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.180683 LLDP, length 82 [|LLDP] 16:55:09.180684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.180689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.180693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.180695 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.180699 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.180704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dbb 95fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.180706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.180710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.190691 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.190709 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.190714 LLDP, length 82 [|LLDP] 16:55:09.190716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.190721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc3 371e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.190723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.190728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.190731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.190736 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.190740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.200681 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.200700 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.200705 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.200709 LLDP, length 82 [|LLDP] 16:55:09.200711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.200715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dca d83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.200717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.200722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.200725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.200730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.210675 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.210692 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.210697 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.210701 LLDP, length 82 [|LLDP] 16:55:09.210703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.210708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd2 795e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.210709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.210714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.210716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.210721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.220675 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.220690 LLDP, length 82 [|LLDP] 16:55:09.220692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.220697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.220701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.220703 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.220708 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.220712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dda 1a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.220714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.220719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.230672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.230687 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.230692 LLDP, length 82 [|LLDP] 16:55:09.230693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.230697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de1 bb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.230699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.230703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.230706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.230710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.230715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.240672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.240686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.240690 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.240695 LLDP, length 82 [|LLDP] 16:55:09.240696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.240700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de9 5cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.240702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.240706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.240709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.240713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.250676 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.250690 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.250695 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.250700 LLDP, length 82 [|LLDP] 16:55:09.250701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.250706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df0 fdde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.250708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.250712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.250715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.250719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.260669 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.260684 LLDP, length 82 [|LLDP] 16:55:09.260685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.260690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.260694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.260697 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.260701 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.260706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df8 9efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.260708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.260712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.270670 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.270686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.270690 LLDP, length 82 [|LLDP] 16:55:09.270691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.270696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e00 401e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.270698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.270702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.270705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.270710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.270714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.280674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.280689 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.280694 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.280698 LLDP, length 82 [|LLDP] 16:55:09.280700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.280704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e07 e13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.280706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.280710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.280713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.280717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.290669 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.290686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.290690 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.290694 LLDP, length 82 [|LLDP] 16:55:09.290696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.290700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e0f 825e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.290702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.290706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.290709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.290714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.300672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.300688 LLDP, length 82 [|LLDP] 16:55:09.300690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.300694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.300698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.300701 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.300705 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.300710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e17 237e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.300712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.300716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.310680 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.310699 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.310703 LLDP, length 82 [|LLDP] 16:55:09.310705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.310709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e1e c49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.310711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.310716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.310719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.310723 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.310727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.320671 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.320686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.320691 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.320695 LLDP, length 82 [|LLDP] 16:55:09.320697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.320701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e26 65be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.320703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.320707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.320710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.320714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.330670 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.330685 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.330690 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.330694 LLDP, length 82 [|LLDP] 16:55:09.330695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.330699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e2e 06de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.330701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.330705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.330708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.330712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.340674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.340689 LLDP, length 82 [|LLDP] 16:55:09.340691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.340696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.340700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.340702 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.340707 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.340712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e35 a7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.340714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.340718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.350670 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.350685 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.350690 LLDP, length 82 [|LLDP] 16:55:09.350691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.350696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e3d 491e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.350698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.350702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.350705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.350709 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.350714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.360672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.360689 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.360693 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.360698 LLDP, length 82 [|LLDP] 16:55:09.360699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.360704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e44 ea3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.360706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.360710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.360713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.360717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.370676 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.370692 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.370696 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.370700 LLDP, length 82 [|LLDP] 16:55:09.370702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.370706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e4c 8b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.370708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.370713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.370716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.370720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.380670 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.380686 LLDP, length 82 [|LLDP] 16:55:09.380687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.380692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.380696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.380699 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.380703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.380707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e54 2c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.380709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.380714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.390672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.390686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.390691 LLDP, length 82 [|LLDP] 16:55:09.390692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.390697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e5b cd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.390699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.390703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.390706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.390710 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.390714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.400667 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.400689 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.400694 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.400698 LLDP, length 82 [|LLDP] 16:55:09.400699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.400704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e63 6ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.400706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.400710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.400713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.400717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.410667 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.410683 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.410688 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.410692 LLDP, length 82 [|LLDP] 16:55:09.410694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.410698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e6b 0fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.410700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.410704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.410707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.410711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.420668 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.420684 LLDP, length 82 [|LLDP] 16:55:09.420686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.420691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.420695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.420698 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.420702 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.420707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e72 b0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.420709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.420713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.430668 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.430689 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.430694 LLDP, length 82 [|LLDP] 16:55:09.430695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.430700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e7a 521e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.430701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.430706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.430708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.430712 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.430717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.440664 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.440685 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.440689 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.440694 LLDP, length 82 [|LLDP] 16:55:09.440695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.440700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e81 f33e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.440701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.440706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.440708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.440713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.450668 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.450682 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.450686 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.450690 LLDP, length 82 [|LLDP] 16:55:09.450692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.450697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e89 945e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.450699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.450703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.450706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.450710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.460663 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.460678 LLDP, length 82 [|LLDP] 16:55:09.460680 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.460684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.460688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.460690 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.460695 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.460699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e91 357e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.460701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.460705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.470672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.470694 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.470699 LLDP, length 82 [|LLDP] 16:55:09.470700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.470704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e98 d69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.470706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.470710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.470713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.470717 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.470722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.480667 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.480683 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.480688 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.480692 LLDP, length 82 [|LLDP] 16:55:09.480694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.480698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea0 77be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.480700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.480704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.480707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.480711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.490667 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.490682 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.490686 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.490691 LLDP, length 82 [|LLDP] 16:55:09.490692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.490697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea8 18de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.490699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.490703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.490705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.490710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.500672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.500687 LLDP, length 82 [|LLDP] 16:55:09.500689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.500693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.500697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.500700 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.500705 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.500709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eaf b9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.500711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.500716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.510666 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.510682 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.510687 LLDP, length 82 [|LLDP] 16:55:09.510688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.510692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eb7 5b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.510694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.510698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.510701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.510705 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.510710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.520664 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.520680 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.520684 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.520688 LLDP, length 82 [|LLDP] 16:55:09.520690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.520694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ebe fc3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.520696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.520700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.520703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.520708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.530667 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.530682 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.530687 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.530691 LLDP, length 82 [|LLDP] 16:55:09.530693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.530697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ec6 9d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.530700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.530704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.530707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.530711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.540665 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.540680 LLDP, length 82 [|LLDP] 16:55:09.540682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.540686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.540690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.540693 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.540697 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.540701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ece 3e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.540703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.540707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.550662 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.550677 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.550681 LLDP, length 82 [|LLDP] 16:55:09.550683 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.550687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ed5 df9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.550689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.550693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.550696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.550700 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.550704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.560664 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.560678 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.560682 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.560686 LLDP, length 82 [|LLDP] 16:55:09.560688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.560692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0edd 80be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.560694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.560698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.560701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.560705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.570667 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.570682 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.570686 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.570690 LLDP, length 82 [|LLDP] 16:55:09.570692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.570696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ee5 21de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.570698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.570702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.570705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.570709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.580665 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.580680 LLDP, length 82 [|LLDP] 16:55:09.580682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.580686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.580690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.580693 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.580697 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.580701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eec c2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.580703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.580707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.590664 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.590679 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.590684 LLDP, length 82 [|LLDP] 16:55:09.590685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.590690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ef4 641e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.590692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.590696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.590699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.590703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.590708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.600661 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.600676 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.600681 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.600685 LLDP, length 82 [|LLDP] 16:55:09.600687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.600691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0efc 053e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.600693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.600697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.600700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.600705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.610665 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.610681 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.610686 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.610690 LLDP, length 82 [|LLDP] 16:55:09.610692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.610696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f03 a65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.610698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.610702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.610705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.610709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.620662 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.620678 LLDP, length 82 [|LLDP] 16:55:09.620680 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.620684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.620688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.620691 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.620696 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.620700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f0b 477e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.620702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.620707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.630672 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.630696 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.630700 LLDP, length 82 [|LLDP] 16:55:09.630702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.630706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f12 e89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.630708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.630712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.630715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.630719 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.630724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.640664 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.640679 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.640683 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.640688 LLDP, length 82 [|LLDP] 16:55:09.640689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.640693 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f1a 89be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.640696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.640700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.640702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.640707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.650659 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.650674 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.650678 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.650683 LLDP, length 82 [|LLDP] 16:55:09.650684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.650689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f22 2ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.650691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.650695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.650698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.650702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.660674 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.660689 LLDP, length 82 [|LLDP] 16:55:09.660690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.660694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.660698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.660702 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.660706 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.660710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f29 cbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.660712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.660717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.670660 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.670682 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.670687 LLDP, length 82 [|LLDP] 16:55:09.670689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.670693 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f31 6d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.670695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.670699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.670702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.670706 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.670711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.680661 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.680677 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.680681 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.680686 LLDP, length 82 [|LLDP] 16:55:09.680687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.680691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f39 0e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.680693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.680697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.680700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.680705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.690660 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.690676 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.690680 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.690685 LLDP, length 82 [|LLDP] 16:55:09.690686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.690691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f40 af5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.690693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.690697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.690699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.690704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.700659 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.700674 LLDP, length 82 [|LLDP] 16:55:09.700675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.700680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.700684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.700687 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.700691 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.700695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f48 507e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.700697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.700701 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.710664 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.710680 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.710684 LLDP, length 82 [|LLDP] 16:55:09.710686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.710690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f4f f19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.710692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.710696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.710699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.710703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.710708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.720661 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.720676 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.720680 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.720685 LLDP, length 82 [|LLDP] 16:55:09.720686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.720690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f57 92be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.720692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.720696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.720699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.720704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.730669 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.730686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.730690 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.730694 LLDP, length 82 [|LLDP] 16:55:09.730696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.730700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f5f 33de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.730702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.730706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.730709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.730713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.740661 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.740675 LLDP, length 82 [|LLDP] 16:55:09.740677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.740681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.740685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.740688 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.740692 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.740697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f66 d4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.740698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.740703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.750657 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.750671 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.750676 LLDP, length 82 [|LLDP] 16:55:09.750677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.750682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f6e 761e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.750683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.750687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.750690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.750694 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.750699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.760661 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.760677 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.760681 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.760685 LLDP, length 82 [|LLDP] 16:55:09.760687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.760691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f76 173e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.760693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.760697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.760700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.760705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.770661 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.770676 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.770680 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.770685 LLDP, length 82 [|LLDP] 16:55:09.770686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.770690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f7d b85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.770692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.770697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.770699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.770704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.780665 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.780682 LLDP, length 82 [|LLDP] 16:55:09.780684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.780689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.780693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.780696 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.780700 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.780704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f85 597e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.780706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.780711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.790663 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.790679 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.790684 LLDP, length 82 [|LLDP] 16:55:09.790685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.790690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f8c fa9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.790692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.790696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.790699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.790703 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.790708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.800660 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.800674 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.800679 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.800683 LLDP, length 82 [|LLDP] 16:55:09.800685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.800689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f94 9bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.800691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.800695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.800697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.800702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.810683 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.810708 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.810713 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.810718 LLDP, length 82 [|LLDP] 16:55:09.810719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.810724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f9c 3cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.810726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.810731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.810734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.810739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.820679 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.820702 LLDP, length 82 [|LLDP] 16:55:09.820704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.820709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.820713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.820716 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.820721 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.820725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fa3 ddfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.820728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.820733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.830668 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.830685 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.830689 LLDP, length 82 [|LLDP] 16:55:09.830691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.830696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fab 7f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.830698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.830702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.830705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.830709 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.830714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.840660 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.840677 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.840681 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.840685 LLDP, length 82 [|LLDP] 16:55:09.840687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.840691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb3 203e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.840693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.840697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.840699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.840704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.850652 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.850664 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.850669 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.850673 LLDP, length 82 [|LLDP] 16:55:09.850675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.850679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fba c15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.850681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.850685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.850688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.850693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.860652 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.860663 LLDP, length 82 [|LLDP] 16:55:09.860664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.860668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.860672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.860675 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.860679 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.860683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc2 627e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.860685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.860690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.870647 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.870657 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.870662 LLDP, length 82 [|LLDP] 16:55:09.870663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.870667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fca 039e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.870669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.870674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.870676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.870680 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.870684 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.880656 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.880667 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.880672 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.880676 LLDP, length 82 [|LLDP] 16:55:09.880677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.880681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd1 a4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.880683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.880687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.880690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.880694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.890650 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.890673 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.890678 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.890682 LLDP, length 82 [|LLDP] 16:55:09.890683 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.890687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd9 45de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.890689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.890693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.890696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.890700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.900662 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.900673 LLDP, length 82 [|LLDP] 16:55:09.900674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.900679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.900683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.900685 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.900690 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.900694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe0 e6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.900696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.900700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.910649 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.910659 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.910663 LLDP, length 82 [|LLDP] 16:55:09.910665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.910669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe8 881e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.910671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.910675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.910677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.910681 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.910685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.920650 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.920667 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.920672 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.920676 LLDP, length 82 [|LLDP] 16:55:09.920678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.920682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff0 293e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.920684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.920688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.920691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.920695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.930651 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.930664 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.930668 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.930672 LLDP, length 82 [|LLDP] 16:55:09.930674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.930678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff7 ca5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.930680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.930684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.930687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.930691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.940649 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.940667 LLDP, length 82 [|LLDP] 16:55:09.940669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.940673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.940677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.940680 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.940684 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.940688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fff 6b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.940690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.940694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.950651 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.950670 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.950675 LLDP, length 82 [|LLDP] 16:55:09.950676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.950680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1007 0c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.950682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.950686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.950689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.950693 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.950698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.960646 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.960663 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.960668 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.960672 LLDP, length 82 [|LLDP] 16:55:09.960674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.960678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 100e adbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.960680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.960683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.960686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.960691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.970647 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.970656 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.970661 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.970665 LLDP, length 82 [|LLDP] 16:55:09.970666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.970670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1016 4ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.970672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.970676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.970678 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.970683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.980648 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.980664 LLDP, length 82 [|LLDP] 16:55:09.980666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.980670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.980674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.980677 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.980681 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.980685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 101d effe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.980687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.980692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:09.990648 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.990665 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:09.990669 LLDP, length 82 [|LLDP] 16:55:09.990671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:09.990675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1025 911e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:09.990677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:09.990681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:09.990683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:09.990687 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:09.990692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.000646 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.000663 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.000667 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.000671 LLDP, length 82 [|LLDP] 16:55:10.000673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.000677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 102d 323e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.000679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.000683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.000685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.000690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.010644 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.010661 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.010666 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.010670 LLDP, length 82 [|LLDP] 16:55:10.010672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.010676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1034 d35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.010677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.010681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.010684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.010689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.020645 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.020661 LLDP, length 82 [|LLDP] 16:55:10.020663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.020667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.020671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.020674 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.020678 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.020682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 103c 747e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.020684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.020688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.030644 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.030654 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.030659 LLDP, length 82 [|LLDP] 16:55:10.030660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.030665 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1044 159e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.030673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.030679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.030681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.030685 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.030690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.040646 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.040664 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.040668 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.040673 LLDP, length 82 [|LLDP] 16:55:10.040674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.040678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 104b b6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.040680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.040684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.040687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.040691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.050667 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.050680 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.050684 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.050688 LLDP, length 82 [|LLDP] 16:55:10.050690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.050694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1053 57de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.050696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.050700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.050703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.050707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.060656 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.060673 LLDP, length 82 [|LLDP] 16:55:10.060675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.060680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.060684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.060686 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.060690 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.060695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 105a f8fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.060697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.060702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.070649 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.070662 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.070666 LLDP, length 82 [|LLDP] 16:55:10.070668 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.070672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1062 9a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.070674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.070678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.070681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.070685 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.070690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.080649 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.080662 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.080666 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.080670 LLDP, length 82 [|LLDP] 16:55:10.080672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.080676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 106a 3b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.080678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.080682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.080684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.080689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.090645 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.090665 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.090676 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.090681 LLDP, length 82 [|LLDP] 16:55:10.090682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.090686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1071 dc5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.090688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.090692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.090695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.090699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.100648 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.100668 LLDP, length 82 [|LLDP] 16:55:10.100670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.100674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.100678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.100680 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.100684 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.100689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1079 7d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.100691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.100695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.110645 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.110665 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.110670 LLDP, length 82 [|LLDP] 16:55:10.110672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.110676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1081 1e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.110678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.110682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.110685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.110689 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.110693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.120647 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.120667 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.120671 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.120675 LLDP, length 82 [|LLDP] 16:55:10.120677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.120681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1088 bfbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.120683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.120687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.120689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.120694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.130647 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.130666 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.130671 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.130675 LLDP, length 82 [|LLDP] 16:55:10.130677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.130681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1090 60de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.130683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.130687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.130690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.130694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.140652 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.140666 LLDP, length 82 [|LLDP] 16:55:10.140668 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.140672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.140676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.140679 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.140683 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.140687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1098 01fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.140689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.140693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:10.150646 IP 1.1.1.2.42664 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.150661 IP 192.168.1.1.33870 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:55:10.150665 LLDP, length 82 [|LLDP] 16:55:10.150666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:55:10.150671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 109f a31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:55:10.150673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:55:10.150677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:55:10.150679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:55:10.150683 IP 1.1.1.2.1855 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:55:10.150688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:55:14.268140 IP6 fe80::36ef:b6ff:feec:3807 > ff02::2: ICMP6, router solicitation, length 16 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 4491 packets captured 4491 packets received by filter 0 packets dropped by kernel 449 packets dropped by interface -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:55:18 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=43, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=43, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=14] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=16] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":75,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=43, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=18] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=43, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:55:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=43, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:55:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=43, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":75,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=26] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_with_rif | 266.31 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_with_rif">Starting testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2235' coro=<test_bridging_bum_traffic_port_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:49> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=44] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=44] Local address: 172.17.0.4, port 34544 INFO asyncssh:logging.py:92 [conn=44] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=44] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=44] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:55:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=44, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip address add 100.1.1.253/24 dev swp1 && ip address add 101.1.1.253/24 dev swp2 INFO asyncssh:logging.py:92 [conn=44, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=2] Command: ip address add 100.1.1.253/24 dev swp1 && ip address add 101.1.1.253/24 dev swp2 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=4] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=44, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=6] Command: ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=6] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 15 tcpdump -i swp1 -n on agg1... INFO asyncssh:logging.py:92 [conn=44, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=7] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO asyncssh:logging.py:92 [conn=44, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=8] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a276f340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI BridgedLLDP SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI LACPDU SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4ToMe SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Request_BC SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Reply SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Broadcast SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_SSH SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_Telnet SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_VRRP SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_IGMP SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_BGP SIP-DIP N/A Tx 448 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=8] Channel closed DEBUG agg1:Logger.py:156 16:59:32.328065 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.328068 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.328069 LLDP, length 82 [|LLDP] 16:59:32.328133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.328146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.328161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.328162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0342 a19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.328163 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.328164 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.328165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.328166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.328168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.328202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.328204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.328207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.338048 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.338050 LLDP, length 82 [|LLDP] 16:59:32.338103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.338120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.338134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.338136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 034a 42be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.338137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.338138 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.338139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.338140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.338142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.338179 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.338181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.338190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.338192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.348047 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.348050 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.348051 LLDP, length 82 [|LLDP] 16:59:32.348136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.348150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.348168 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.348168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0351 e3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.348170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.348171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.348174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.348226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.348229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.348231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.348234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.348236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.358049 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.358052 LLDP, length 82 [|LLDP] 16:59:32.358111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.358128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.358144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.358145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0359 84fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.358147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.358148 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.358150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.358151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.358152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.358195 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.358198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.358208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.358209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.368043 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.368046 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.368047 LLDP, length 82 [|LLDP] 16:59:32.368121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.368134 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.368135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.368137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.368138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.368191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.368197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.368198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0361 261e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.368200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.368201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.368204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.368206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.378043 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.378045 LLDP, length 82 [|LLDP] 16:59:32.378099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.378112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.378126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.378127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0368 c73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.378129 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.378130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.378131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.378132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.378170 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.378173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.378174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.378185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.378188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.388047 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.388049 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.388050 LLDP, length 82 [|LLDP] 16:59:32.388120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.388135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.388150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.388151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0370 685e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.388153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.388154 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.388155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.388156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.388157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.388181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.388182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.388185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.398040 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.398042 LLDP, length 82 [|LLDP] 16:59:32.398098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.398111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.398112 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.398113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.398114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.398116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.398154 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.398164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.398166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0378 097e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.398167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.398168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.398171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.398174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.408037 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.408040 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.408041 LLDP, length 82 [|LLDP] 16:59:32.408114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.408128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.408143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.408144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 037f aa9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.408146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.408147 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.408148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.408149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.408150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.408175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.408176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.408179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.418011 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.418013 LLDP, length 82 [|LLDP] 16:59:32.418050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.418061 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.418073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.418074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0387 4bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.418076 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.418077 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.418078 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.418079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.418080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.418097 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.418099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.418106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.418108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.428012 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.428021 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.428022 LLDP, length 82 [|LLDP] 16:59:32.428060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.428070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.428083 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.428084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 038e ecde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.428085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.428087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.428087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.428114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.428117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.428118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.428120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.428123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.438009 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.438011 LLDP, length 82 [|LLDP] 16:59:32.438043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.438052 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.438065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.438065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0396 8dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.438067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.438068 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.438069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.438070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.438071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.438086 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.438087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.438093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.438095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.448016 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.448018 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.448019 LLDP, length 82 [|LLDP] 16:59:32.448053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.448062 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.448063 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.448064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.448065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.448088 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.448091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.448092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 039e 2f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.448094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.448094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.448097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.448107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.458006 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.458007 LLDP, length 82 [|LLDP] 16:59:32.458037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.458046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.458059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.458060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a5 d03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.458061 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.458062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.458063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.458064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.458078 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.458080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.458081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.458086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.458089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.468007 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.468008 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.468009 LLDP, length 82 [|LLDP] 16:59:32.468041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.468050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.468063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.468063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ad 715e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.468065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.468066 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.468067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.468068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.468069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.468084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.468086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.468088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.478005 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.478007 LLDP, length 82 [|LLDP] 16:59:32.478040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.478049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.478050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.478052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.478053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.478054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.478078 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.478085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.478085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b5 127e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.478087 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.478088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.478091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.478093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.488004 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.488006 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.488007 LLDP, length 82 [|LLDP] 16:59:32.488040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.488049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.488061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.488062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03bc b39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.488063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.488064 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.488065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.488066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.488067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.488082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.488083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.488085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.498002 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.498004 LLDP, length 82 [|LLDP] 16:59:32.498032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.498041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.498053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.498053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03c4 54be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.498055 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.498056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.498057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.498058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.498072 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.498074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.498075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.498081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.498083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.508010 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.508012 LLDP, length 82 [|LLDP] 16:59:32.508042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.508051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.508063 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.508064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03cb f5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.508065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.508066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.508067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.508079 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.508081 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.508082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.508083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.508090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.508092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.518001 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.518003 LLDP, length 82 [|LLDP] 16:59:32.518032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.518041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.518053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.518054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03d3 96fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.518055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.518056 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.518057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.518058 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.518059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.518073 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.518074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.518080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.518082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.528004 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.528005 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.528007 LLDP, length 82 [|LLDP] 16:59:32.528041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.528050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.528051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.528052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.528053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.528075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.528078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.528079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03db 381e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.528081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.528082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.528084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.528086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.538013 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.538021 LLDP, length 82 [|LLDP] 16:59:32.538053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.538064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.538077 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.538078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03e2 d93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.538080 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.538081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.538082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.538083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.538098 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.538100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.538101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.538108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.538110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.548006 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.548007 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.548008 LLDP, length 82 [|LLDP] 16:59:32.548043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.548053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.548065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.548066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ea 7a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.548067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.548068 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.548069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.548070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.548071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.548085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.548086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.548089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.558013 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.558021 LLDP, length 82 [|LLDP] 16:59:32.558053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.558064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.558065 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.558066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.558067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.558068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.558093 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.558100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.558101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03f2 1b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.558102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.558103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.558106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.558107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.568013 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.568015 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.568016 LLDP, length 82 [|LLDP] 16:59:32.568073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.568084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.568097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.568108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03f9 bc9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.568110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.568111 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.568112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.568112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.568113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.568129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.568130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.568132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.578011 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.578012 LLDP, length 82 [|LLDP] 16:59:32.578049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.578058 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.578072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.578073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0401 5dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.578074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.578075 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.578076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.578077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.578078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.578094 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.578096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.578102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.578103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.588007 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.588009 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.588010 LLDP, length 82 [|LLDP] 16:59:32.588047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.588056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.588069 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.588070 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0408 fede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.588071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.588072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.588073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.588087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.588089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.588090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.588093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.588095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.598005 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.598007 LLDP, length 82 [|LLDP] 16:59:32.598039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.598049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.598062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.598063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0410 9ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.598064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.598065 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.598066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.598067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.598068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.598083 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.598084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.598090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.598092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.608005 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.608007 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.608008 LLDP, length 82 [|LLDP] 16:59:32.608039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.608049 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.608050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.608051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.608052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.608076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.608079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.608080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0418 411e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.608082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.608083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.608086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.608088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.618006 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.618008 LLDP, length 82 [|LLDP] 16:59:32.618045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.618054 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.618067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.618068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 041f e23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.618069 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.618070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.618071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.618072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.618087 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.618088 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.618089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.618096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.618098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.628000 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.628001 LLDP, length 82 [|LLDP] 16:59:32.628032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.628040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.628052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.628053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0427 835e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.628054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.628055 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.628056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.628057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.628058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.628072 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.628074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.628079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.628081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.638001 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.638003 LLDP, length 82 [|LLDP] 16:59:32.638036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.638045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.638046 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.638047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.638048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.638049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.638073 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.638080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.638081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 042f 247e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.638082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.638083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.638086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.638088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.648002 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.648003 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.648004 LLDP, length 82 [|LLDP] 16:59:32.648036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.648045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.648058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.648059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0436 c59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.648060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.648061 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.648062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.648063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.648064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.648077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.648079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.648081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.657999 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.658001 LLDP, length 82 [|LLDP] 16:59:32.658029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.658037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.658049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.658050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 043e 66be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.658052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.658053 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.658054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.658055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.658056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.658070 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.658072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.658077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.658079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.667998 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.668000 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.668001 LLDP, length 82 [|LLDP] 16:59:32.668030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.668039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.668052 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.668053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0446 07de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.668054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.668055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.668056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.668068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.668070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.668071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.668074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.668076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.678012 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.678013 LLDP, length 82 [|LLDP] 16:59:32.678053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.678064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.678078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.678079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 044d a8fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.678081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.678082 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.678083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.678084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.678085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.678100 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.678102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.678108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.678110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.688001 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.688003 LLDP, length 82 [|LLDP] 16:59:32.688035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.688044 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.688045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.688046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.688047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.688070 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.688071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.688079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.688080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0455 4a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.688081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.688082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.688085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.688087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.697999 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.698001 LLDP, length 82 [|LLDP] 16:59:32.698030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.698038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.698050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.698051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 045c eb3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.698052 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.698054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.698055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.698056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.698070 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.698071 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.698072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.698079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.698080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.707996 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.707998 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.707998 LLDP, length 82 [|LLDP] 16:59:32.708027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.708035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.708047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.708048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0464 8c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.708050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.708051 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.708052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.708053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.708054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.708067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.708068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.708070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.718009 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.718011 LLDP, length 82 [|LLDP] 16:59:32.718050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.718060 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.718061 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.718062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.718063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.718064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.718091 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.718099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.718100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 046c 2d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.718101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.718102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.718105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.718107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.728000 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.728002 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.728003 LLDP, length 82 [|LLDP] 16:59:32.728031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.728040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.728053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.728053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0473 ce9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.728055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.728056 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.728057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.728058 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.728059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.728074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.728075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.728078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.738007 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.738008 LLDP, length 82 [|LLDP] 16:59:32.738052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.738062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.738075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.738075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 047b 6fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.738077 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.738078 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.738079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.738080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.738081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.738097 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.738099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.738106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.738108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.747998 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.748000 LLDP, length 82 [|LLDP] 16:59:32.748031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.748040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.748052 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.748053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0483 10de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.748054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.748056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.748057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.748069 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.748071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.748072 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.748073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.748080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.748082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.757998 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.758000 LLDP, length 82 [|LLDP] 16:59:32.758029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.758038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.758050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.758051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 048a b1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.758053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.758054 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.758055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.758056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.758057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.758070 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.758072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.758077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.758079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.768005 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.768007 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.768008 LLDP, length 82 [|LLDP] 16:59:32.768041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.768054 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.768056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.768057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.768058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.768084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.768089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.768089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0492 531e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.768091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.768092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.768094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.768096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.778013 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.778015 LLDP, length 82 [|LLDP] 16:59:32.778057 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.778068 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.778082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.778083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0499 f43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.778085 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.778086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.778087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.778088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.778106 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.778108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.778108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.778116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.778118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.788003 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.788005 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.788012 LLDP, length 82 [|LLDP] 16:59:32.788047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.788055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.788068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.788070 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04a1 955e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.788071 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.788072 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.788073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.788074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.788075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.788091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.788092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.788095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.798002 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.798004 LLDP, length 82 [|LLDP] 16:59:32.798041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.798049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.798050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.798051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.798052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.798054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.798079 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.798087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.798088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04a9 367e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.798090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.798091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.798094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.798095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.808009 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.808017 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.808018 LLDP, length 82 [|LLDP] 16:59:32.808051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.808063 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.808077 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.808078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04b0 d79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.808079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.808080 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.808081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.808082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.808083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.808108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.808109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.808112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.818002 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.818004 LLDP, length 82 [|LLDP] 16:59:32.818040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.818048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.818061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.818062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04b8 78be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.818064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.818065 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.818066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.818067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.818068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.818083 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.818085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.818091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.818093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.828002 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.828004 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.828011 LLDP, length 82 [|LLDP] 16:59:32.828053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.828062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.828077 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.828077 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c0 19de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.828079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.828080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.828081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.828094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.828096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.828097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.828111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.828113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.838001 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.838003 LLDP, length 82 [|LLDP] 16:59:32.838039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.838048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.838061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.838062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c7 bafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.838064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.838064 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.838065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.838066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.838068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.838083 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.838085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.838092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.838093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.848001 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.848003 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.848011 LLDP, length 82 [|LLDP] 16:59:32.848046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.848055 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.848056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.848057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.848058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.848083 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.848087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.848088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04cf 5c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.848090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.848091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.848094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.848096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.858003 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.858005 LLDP, length 82 [|LLDP] 16:59:32.858041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.858050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.858063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.858064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d6 fd3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.858066 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.858067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.858068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.858070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.858085 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.858086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.858087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.858094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.858096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.868000 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.868001 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.868002 LLDP, length 82 [|LLDP] 16:59:32.868039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.868050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.868063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.868064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04de 9e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.868065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.868066 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.868067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.868068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.868069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.868084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.868086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.868088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.877999 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.878001 LLDP, length 82 [|LLDP] 16:59:32.878032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.878039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.878040 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.878041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.878043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.878044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.878068 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.878076 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.878077 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e6 3f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.878078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.878079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.878082 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.878083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.887996 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.887998 LLDP, length 82 [|LLDP] 16:59:32.888029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.888036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.888049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.888050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ed e09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.888052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.888053 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.888054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.888054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.888056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.888070 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.888071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.888076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.888078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.897999 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.898001 LLDP, length 82 [|LLDP] 16:59:32.898035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.898042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.898055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.898056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f5 81be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.898058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.898059 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.898060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.898061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.898062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.898076 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.898078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.898092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.898094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.908009 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.908018 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.908019 LLDP, length 82 [|LLDP] 16:59:32.908058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.908069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.908082 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.908083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04fd 22de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.908084 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.908085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.908086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.908114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.908116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.908117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.908120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.908122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.917996 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.917998 LLDP, length 82 [|LLDP] 16:59:32.918032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.918040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.918053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.918054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0504 c3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.918056 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.918057 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.918058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.918059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.918060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.918075 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.918076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.918083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.918085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.927995 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.927996 LLDP, length 82 [|LLDP] 16:59:32.928043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.928051 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.928052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.928053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.928054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.928078 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.928080 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.928088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.928089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 050c 651e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.928091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.928092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.928094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.928097 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.937997 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.937999 LLDP, length 82 [|LLDP] 16:59:32.938026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.938034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.938047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.938048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0514 063e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.938050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.938051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.938052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.938053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.938068 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.938069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.938070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.938077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.938078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.947995 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.947997 LLDP, length 82 [|LLDP] 16:59:32.948031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.948039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.948052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.948053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 051b a75e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.948054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.948055 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.948056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.948057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.948058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.948073 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.948075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.948081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.948083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.958002 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.958010 LLDP, length 82 [|LLDP] 16:59:32.958044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.958054 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.958055 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.958056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.958057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.958058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.958085 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.958093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.958094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0523 487e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.958096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.958097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.958099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.958102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.967998 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.968000 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.968001 LLDP, length 82 [|LLDP] 16:59:32.968037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.968046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.968059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.968060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 052a e99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.968061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.968062 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.968063 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.968064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.968065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.968080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.968081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.968083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.977995 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.977997 LLDP, length 82 [|LLDP] 16:59:32.978028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.978036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.978049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.978050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0532 8abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.978051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.978052 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.978053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.978054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.978055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.978069 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.978071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.978077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.978079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.987993 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.987995 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.987996 LLDP, length 82 [|LLDP] 16:59:32.988029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.988038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.988050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.988051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 053a 2bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.988053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.988054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.988055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.988068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.988069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.988070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.988073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.988075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.997995 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.997996 LLDP, length 82 [|LLDP] 16:59:32.998030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.998038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.998051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.998052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0541 ccfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.998054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.998055 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.998056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.998057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.998058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.998073 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.998075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.998081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.998083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.007998 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.008000 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.008001 LLDP, length 82 [|LLDP] 16:59:33.008035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.008045 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.008046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.008047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.008048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.008071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.008074 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.008075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0549 6e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.008077 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.008078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.008080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.008082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.017992 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.017994 LLDP, length 82 [|LLDP] 16:59:33.018025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.018032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.018045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.018046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0551 0f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.018047 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.018048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.018049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.018051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.018065 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.018067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.018068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.018074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.018077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.027990 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.027992 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.027993 LLDP, length 82 [|LLDP] 16:59:33.028027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.028036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.028050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.028051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0558 b05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.028052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.028053 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.028054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.028055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.028056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.028070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.028071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.028073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.037993 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.037995 LLDP, length 82 [|LLDP] 16:59:33.038028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.038036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.038037 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.038038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.038039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.038040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.038065 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.038072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.038073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0560 517e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.038075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.038076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.038087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.038090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.047992 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.047993 LLDP, length 82 [|LLDP] 16:59:33.048024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.048032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.048045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.048046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0567 f29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.048047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.048048 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.048049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.048050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.048051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.048066 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.048068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.048074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.048076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.057994 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.057996 LLDP, length 82 [|LLDP] 16:59:33.058032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.058041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.058053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.058054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 056f 93be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.058056 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.058057 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.058058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.058059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.058060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.058084 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.058086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.058092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.058094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.067992 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.067994 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.067995 LLDP, length 82 [|LLDP] 16:59:33.068031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.068040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.068053 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.068053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0577 34de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.068055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.068056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.068057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.068071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.068072 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.068073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.068076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.068078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.077991 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.077993 LLDP, length 82 [|LLDP] 16:59:33.078026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.078035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.078047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.078048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 057e d5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.078050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.078051 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.078052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.078053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.078054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.078068 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.078070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.078075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.078077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.087990 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.087992 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.087993 LLDP, length 82 [|LLDP] 16:59:33.088024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.088033 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.088034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.088035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.088036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.088058 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.088062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.088063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0586 771e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.088064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.088065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.088068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.088070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.097990 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.097991 LLDP, length 82 [|LLDP] 16:59:33.098021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.098029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.098042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.098042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 058e 183e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.098044 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.098045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.098046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.098047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.098061 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.098063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.098064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.098070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.098072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.107990 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.107991 LLDP, length 82 [|LLDP] 16:59:33.108023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.108031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.108044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.108045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0595 b95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.108046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.108048 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.108049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.108050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.108051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.108066 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.108067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.108073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.108075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.118000 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.118008 LLDP, length 82 [|LLDP] 16:59:33.118043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.118052 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.118053 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.118054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.118055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.118056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.118084 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.118091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.118092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 059d 5a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.118094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.118095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.118098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.118100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.127991 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.127994 LLDP, length 82 [|LLDP] 16:59:33.128025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.128034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.128046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.128047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a4 fb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.128049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.128050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.128051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.128052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.128053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.128068 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.128070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.128076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.128078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.137990 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.137992 LLDP, length 82 [|LLDP] 16:59:33.138026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.138034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.138047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.138048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ac 9cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.138049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.138051 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.138051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.138053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.138054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.138069 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.138070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.138076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.138078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.147991 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.147993 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.147994 LLDP, length 82 [|LLDP] 16:59:33.148031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.148039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.148051 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.148052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05b4 3dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.148054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.148055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.148056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.148070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.148072 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.148073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.148075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.148077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.157989 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.157990 LLDP, length 82 [|LLDP] 16:59:33.158023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.158031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.158043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.158044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05bb defe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.158045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.158046 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.158047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.158049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.158050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.158065 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.158066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.158072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.158074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.167991 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.167993 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.167994 LLDP, length 82 [|LLDP] 16:59:33.168032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.168041 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.168042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.168043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.168044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.168068 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.168072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.168073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05c3 801e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.168075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.168076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.168078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.168080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.177991 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.177992 LLDP, length 82 [|LLDP] 16:59:33.178023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.178031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.178044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.178045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05cb 213e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.178047 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.178048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.178049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.178050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.178064 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.178066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.178067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.178072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.178075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.187992 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.187993 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.187994 LLDP, length 82 [|LLDP] 16:59:33.188027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.188035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.188048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.188049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05d2 c25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.188050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.188051 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.188052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.188053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.188054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.188068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.188069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.188072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.197988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.197990 LLDP, length 82 [|LLDP] 16:59:33.198020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.198028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.198029 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.198030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.198031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.198032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.198056 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.198063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.198064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05da 637e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.198065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.198066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.198069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.198071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.207989 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.207991 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.207992 LLDP, length 82 [|LLDP] 16:59:33.208027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.208035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.208047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.208048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05e2 049e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.208050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.208051 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.208052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.208053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.208054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.208069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.208070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.208072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.217988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.217989 LLDP, length 82 [|LLDP] 16:59:33.218021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.218029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.218042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.218043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05e9 a5be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.218044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.218046 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.218047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.218048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.218049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.218063 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.218065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.218071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.218073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.227987 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.227989 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.227990 LLDP, length 82 [|LLDP] 16:59:33.228038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.228047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.228061 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.228061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05f1 46de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.228063 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.228064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.228065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.228079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.228080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.228081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.228084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.228086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.237987 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.237989 LLDP, length 82 [|LLDP] 16:59:33.238021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.238029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.238042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.238043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05f8 e7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.238044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.238045 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.238046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.238047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.238048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.238063 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.238065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.238071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.238072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.247987 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.247989 LLDP, length 82 [|LLDP] 16:59:33.248021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.248028 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.248029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.248030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.248031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.248055 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.248057 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.248063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.248064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0600 891e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.248066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.248067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.248069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.248072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.257985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.257987 LLDP, length 82 [|LLDP] 16:59:33.258020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.258029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.258041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.258042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0608 2a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.258044 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.258045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.258046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.258047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.258061 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.258063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.258064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.258070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.258080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.267989 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.267991 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.267998 LLDP, length 82 [|LLDP] 16:59:33.268031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.268039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.268052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.268053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 060f cb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.268054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.268055 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.268056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.268057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.268058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.268074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.268075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.268078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.277988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.277990 LLDP, length 82 [|LLDP] 16:59:33.278020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.278029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.278030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.278031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.278032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.278033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.278060 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.278068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.278069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0617 6c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.278070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.278071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.278074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.278076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.287988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.287990 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.287991 LLDP, length 82 [|LLDP] 16:59:33.288029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.288038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.288050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.288051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 061f 0d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.288053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.288054 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.288055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.288056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.288057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.288071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.288072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.288075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.297998 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.298006 LLDP, length 82 [|LLDP] 16:59:33.298038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.298047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.298061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.298061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0626 aebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.298063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.298064 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.298066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.298067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.298068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.298084 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.298086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.298092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.298094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.307988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.307990 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.307991 LLDP, length 82 [|LLDP] 16:59:33.308026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.308035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.308048 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.308049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 062e 4fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.308050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.308051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.308052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.308066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.308068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.308069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.308071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.308073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.317991 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.317993 LLDP, length 82 [|LLDP] 16:59:33.318033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.318041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.318054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.318055 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0635 f0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.318057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.318058 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.318059 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.318060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.318061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.318077 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.318079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.318086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.318088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.327984 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.327986 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.327987 LLDP, length 82 [|LLDP] 16:59:33.328021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.328029 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.328030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.328031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.328032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.328068 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.328072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.328073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 063d 921e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.328074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.328075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.328078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.328080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.337985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.337987 LLDP, length 82 [|LLDP] 16:59:33.338018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.338026 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.338039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.338040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0645 333e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.338041 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.338042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.338043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.338044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.338058 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.338059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.338060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.338066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.338068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.347985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.347987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.347987 LLDP, length 82 [|LLDP] 16:59:33.348024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.348032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.348044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.348045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 064c d45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.348047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.348048 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.348049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.348050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.348051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.348066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.348067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.348070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.357985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.357986 LLDP, length 82 [|LLDP] 16:59:33.358016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.358024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.358025 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.358026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.358027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.358028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.358052 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.358059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.358060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0654 757e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.358061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.358063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.358066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.358067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.367988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.367990 LLDP, length 82 [|LLDP] 16:59:33.368022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.368030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.368043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.368044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 065c 169e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.368045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.368046 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.368047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.368048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.368049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.368063 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.368065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.368070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.368072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.377986 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.377988 LLDP, length 82 [|LLDP] 16:59:33.378024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.378033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.378045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.378046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0663 b7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.378048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.378049 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.378050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.378051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.378052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.378068 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.378069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.378076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.378078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.387984 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.387986 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.387987 LLDP, length 82 [|LLDP] 16:59:33.388021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.388028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.388041 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.388042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 066b 58de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.388043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.388044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.388045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.388058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.388059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.388060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.388063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.388065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.397983 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.397985 LLDP, length 82 [|LLDP] 16:59:33.398016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.398023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.398036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.398037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0672 f9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.398038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.398039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.398040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.398041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.398042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.398056 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.398058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.398064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.398066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.407999 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.408001 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.408002 LLDP, length 82 [|LLDP] 16:59:33.408047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.408058 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.408059 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.408060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.408061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.408088 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.408093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.408095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 067a 9b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.408097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.408115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.408118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.408120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.418038 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.418041 LLDP, length 82 [|LLDP] 16:59:33.418107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.418120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.418134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.418135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0682 3c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.418137 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.418139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.418140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.418141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.418168 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.418171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.418172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.418183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.418186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.428024 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.428026 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.428027 LLDP, length 82 [|LLDP] 16:59:33.428088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.428110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.428126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.428127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0689 dd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.428129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.428130 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.428131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.428132 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.428133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.428156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.428157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.428160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.437989 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.437991 LLDP, length 82 [|LLDP] 16:59:33.438030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.438039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.438040 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.438041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.438042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.438044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.438070 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.438078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.438079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0691 7e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.438081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.438082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.438084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.438086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.447986 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.447988 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.447989 LLDP, length 82 [|LLDP] 16:59:33.448026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.448036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.448049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.448050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0699 1f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.448051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.448052 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.448053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.448054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.448055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.448070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.448072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.448074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.457985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.457987 LLDP, length 82 [|LLDP] 16:59:33.458022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.458031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.458043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.458044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a0 c0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.458046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.458047 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.458048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.458049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.458050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.458065 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.458067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.458074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.458076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.467983 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.467984 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.467985 LLDP, length 82 [|LLDP] 16:59:33.468022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.468030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.468043 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.468044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a8 61de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.468045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.468046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.468047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.468060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.468062 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.468063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.468066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.468068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.477983 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.477985 LLDP, length 82 [|LLDP] 16:59:33.478020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.478029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.478041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.478042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b0 02fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.478044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.478045 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.478046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.478047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.478048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.478063 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.478064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.478070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.478072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.487992 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.488001 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.488002 LLDP, length 82 [|LLDP] 16:59:33.488038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.488047 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.488048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.488049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.488050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.488075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.488079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.488080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b7 a41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.488082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.488083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.488085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.488087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.497985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.497987 LLDP, length 82 [|LLDP] 16:59:33.498023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.498032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.498046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.498047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06bf 453e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.498048 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.498049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.498050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.498051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.498065 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.498067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.498068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.498075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.498077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.507981 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.507982 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.507983 LLDP, length 82 [|LLDP] 16:59:33.508017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.508025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.508037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.508038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c6 e65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.508039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.508040 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.508042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.508042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.508043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.508058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.508059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.508061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.517980 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.517982 LLDP, length 82 [|LLDP] 16:59:33.518012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.518020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.518021 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.518022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.518023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.518024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.518049 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.518056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.518057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ce 877e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.518058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.518059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.518062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.518064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.527979 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.527981 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.527982 LLDP, length 82 [|LLDP] 16:59:33.528017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.528024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.528036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.528037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d6 289e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.528038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.528039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.528041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.528042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.528042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.528058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.528059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.528061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.537980 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.537982 LLDP, length 82 [|LLDP] 16:59:33.538015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.538022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.538035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.538036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06dd c9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.538037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.538039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.538040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.538041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.538042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.538056 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.538058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.538064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.538066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.547980 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.547982 LLDP, length 82 [|LLDP] 16:59:33.548013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.548020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.548032 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.548033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e5 6ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.548035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.548035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.548036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.548049 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.548051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.548052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.548053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.548060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.548062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.557988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.557990 LLDP, length 82 [|LLDP] 16:59:33.558028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.558037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.558051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.558052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ed 0bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.558053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.558054 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.558055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.558056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.558057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.558073 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.558075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.558090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.558092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.567988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.567997 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.567998 LLDP, length 82 [|LLDP] 16:59:33.568036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.568047 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.568048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.568049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.568050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.568075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.568079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.568080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f4 ad1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.568081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.568082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.568085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.568087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.577984 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.577986 LLDP, length 82 [|LLDP] 16:59:33.578022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.578031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.578044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.578045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06fc 4e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.578047 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.578048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.578049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.578050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.578064 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.578066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.578067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.578074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.578085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.587985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.587987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.587988 LLDP, length 82 [|LLDP] 16:59:33.588031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.588040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.588053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.588054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0703 ef5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.588055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.588056 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.588057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.588058 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.588059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.588075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.588076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.588079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.597985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.597987 LLDP, length 82 [|LLDP] 16:59:33.598024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.598032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.598033 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.598034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.598035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.598036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.598060 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.598068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.598069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 070b 907e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.598070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.598071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.598074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.598076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.607980 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.607981 LLDP, length 82 [|LLDP] 16:59:33.608011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.608020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.608033 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.608033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0713 319e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.608035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.608036 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.608037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.608038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.608039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.608054 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.608056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.608061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.608064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.617978 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.617979 LLDP, length 82 [|LLDP] 16:59:33.618009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.618017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.618030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.618031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 071a d2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.618032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.618034 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.618035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.618036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.618037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.618053 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.618054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.618060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.618062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.627980 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.627982 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.627983 LLDP, length 82 [|LLDP] 16:59:33.628031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.628037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.628050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.628052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0722 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.628053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.628054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.628055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.628069 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.628071 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.628072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.628075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.628077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.637999 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.638001 LLDP, length 82 [|LLDP] 16:59:33.638033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.638042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.638056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.638057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 072a 14fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.638059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.638060 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.638061 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.638062 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.638063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.638085 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.638087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.638094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.638096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.647986 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.647987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.647988 LLDP, length 82 [|LLDP] 16:59:33.648023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.648030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.648031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.648032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.648033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.648059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.648063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.648064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0731 b61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.648065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.648067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.648069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.648071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.657980 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.657982 LLDP, length 82 [|LLDP] 16:59:33.658017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.658025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.658037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.658038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0739 573e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.658039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.658040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.658041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.658043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.658058 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.658059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.658060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.658067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.658069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.667983 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.667985 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.667986 LLDP, length 82 [|LLDP] 16:59:33.668021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.668029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.668041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.668042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0740 f85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.668044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.668045 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.668045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.668046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.668047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.668062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.668063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.668066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.677988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.677997 LLDP, length 82 [|LLDP] 16:59:33.678031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.678041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.678042 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.678043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.678044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.678045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.678072 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.678080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.678081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0748 997e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.678083 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.678084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.678087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.678089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.687982 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.687983 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.687991 LLDP, length 82 [|LLDP] 16:59:33.688025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.688034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.688047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.688048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0750 3a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.688049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.688050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.688051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.688052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.688053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.688069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.688070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.688073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.697982 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.697984 LLDP, length 82 [|LLDP] 16:59:33.698022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.698030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.698043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.698044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0757 dbbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.698045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.698046 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.698047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.698048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.698049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.698066 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.698067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.698074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.698076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.707978 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.707980 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.707981 LLDP, length 82 [|LLDP] 16:59:33.708014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.708022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.708034 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.708035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 075f 7cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.708037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.708038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.708038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.708051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.708053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.708054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.708057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.708058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.717975 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.717977 LLDP, length 82 [|LLDP] 16:59:33.718006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.718014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.718026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.718027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0767 1dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.718028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.718029 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.718030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.718031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.718032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.718046 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.718048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.718055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.718057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.727976 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.727977 LLDP, length 82 [|LLDP] 16:59:33.728008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.728016 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.728017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.728018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.728018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.728041 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.728042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.728049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.728050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 076e bf1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.728051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.728052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.728055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.728056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.737975 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.737978 LLDP, length 82 [|LLDP] 16:59:33.738009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.738016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.738028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.738029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0776 603e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.738031 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.738032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.738033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.738033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.738047 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.738048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.738049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.738056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.738057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.747976 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.747978 LLDP, length 82 [|LLDP] 16:59:33.748007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.748014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.748027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.748028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 077e 015e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.748029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.748030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.748032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.748033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.748034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.748047 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.748049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.748055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.748057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.757975 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.757976 LLDP, length 82 [|LLDP] 16:59:33.758006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.758014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.758015 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.758016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.758017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.758017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.758042 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.758048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.758049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0785 a27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.758050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.758052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.758055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.758056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.767973 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.767975 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.767976 LLDP, length 82 [|LLDP] 16:59:33.768010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.768017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.768030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.768031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 078d 439e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.768032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.768033 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.768034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.768035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.768036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.768050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.768051 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.768054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.777975 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.777977 LLDP, length 82 [|LLDP] 16:59:33.778010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.778019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.778031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.778032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0794 e4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.778034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.778035 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.778036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.778037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.778038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.778053 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.778055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.778061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.778062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.787974 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.787976 LLDP, length 82 [|LLDP] 16:59:33.788008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.788016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.788027 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.788028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 079c 85de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.788038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.788039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.788040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.788054 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.788055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.788056 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.788057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.788065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.788066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.797976 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.797977 LLDP, length 82 [|LLDP] 16:59:33.798021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.798032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.798045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.798046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07a4 26fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.798047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.798048 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.798049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.798050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.798051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.798067 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.798069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.798074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.798077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.807985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.807987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.807994 LLDP, length 82 [|LLDP] 16:59:33.808029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.808041 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.808042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.808042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.808044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.808067 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.808071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.808072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ab c81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.808074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.808075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.808077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.808079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.817983 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.817984 LLDP, length 82 [|LLDP] 16:59:33.818018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.818028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.818040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.818041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07b3 693e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.818043 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.818044 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.818045 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.818046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.818060 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.818062 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.818063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.818069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.818071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.827975 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.827976 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.827977 LLDP, length 82 [|LLDP] 16:59:33.828009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.828019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.828032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.828033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07bb 0a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.828034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.828036 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.828037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.828038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.828039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.828053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.828055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.828057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.837975 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.837977 LLDP, length 82 [|LLDP] 16:59:33.838009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.838018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.838019 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.838020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.838021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.838022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.838045 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.838053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.838054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07c2 ab7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.838055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.838056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.838059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.838061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.847974 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.847976 LLDP, length 82 [|LLDP] 16:59:33.848008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.848017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.848029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.848029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ca 4c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.848031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.848032 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.848033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.848034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.848035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.848050 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.848052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.848057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.848059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.857984 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.857992 LLDP, length 82 [|LLDP] 16:59:33.858027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.858037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.858050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.858051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07d1 edbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.858052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.858053 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.858054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.858055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.858056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.858073 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.858074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.858081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.858083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.867981 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.867982 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.867990 LLDP, length 82 [|LLDP] 16:59:33.868024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.868034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.868047 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.868048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07d9 8ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.868049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.868050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.868051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.868066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.868068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.868069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.868071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.868073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.877973 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.877975 LLDP, length 82 [|LLDP] 16:59:33.878008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.878018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.878030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.878030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07e1 2ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.878032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.878033 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.878034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.878035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.878036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.878050 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.878052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.878058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.878059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.887973 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.887975 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.887976 LLDP, length 82 [|LLDP] 16:59:33.888012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.888022 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.888023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.888024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.888025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.888047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.888050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.888051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07e8 d11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.888053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.888054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.888056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.888058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.897974 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.897976 LLDP, length 82 [|LLDP] 16:59:33.898011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.898020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.898039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.898040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f0 723e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.898042 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.898043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.898044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.898045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.898060 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.898062 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.898063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.898069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.898071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.907976 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.907978 LLDP, length 82 [|LLDP] 16:59:33.908014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.908024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.908036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.908037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f8 135e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.908038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.908039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.908041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.908042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.908042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.908068 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.908069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.908076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.908078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.917981 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.917983 LLDP, length 82 [|LLDP] 16:59:33.918020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.918029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.918030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.918031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.918032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.918033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.918058 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.918065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.918066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ff b47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.918067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.918068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.918071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.918073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.927969 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.927971 LLDP, length 82 [|LLDP] 16:59:33.927999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.928007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.928020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.928021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0807 559e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.928022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.928023 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.928025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.928026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.928027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.928041 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.928042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.928048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.928050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.937972 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.937974 LLDP, length 82 [|LLDP] 16:59:33.938006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.938015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.938027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.938027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 080e f6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.938029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.938030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.938031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.938032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.938033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.938047 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.938049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.938054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.938056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.947988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.947990 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.947991 LLDP, length 82 [|LLDP] 16:59:33.948037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.948051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.948065 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.948066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0816 97de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.948067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.948068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.948069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.948088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.948090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.948091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.948094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.948096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.957993 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.957995 LLDP, length 82 [|LLDP] 16:59:33.958040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.958051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.958064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.958065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 081e 38fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.958067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.958068 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.958069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.958070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.958071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.958092 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.958094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.958102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.958104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.967976 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.967978 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.967979 LLDP, length 82 [|LLDP] 16:59:33.968015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.968024 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.968025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.968026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.968027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.968051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.968055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.968056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0825 da1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.968057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.968058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.968060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.968063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.977977 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.977979 LLDP, length 82 [|LLDP] 16:59:33.978015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.978024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.978037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.978038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 082d 7b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.978039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.978040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.978041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.978042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.978057 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.978059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.978060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.978067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.978069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.987972 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.987974 LLDP, length 82 [|LLDP] 16:59:33.988008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.988016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.988028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.988029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0835 1c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.988031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.988032 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.988033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.988034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.988035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.988049 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.988051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.988056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.988058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.997982 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.997984 LLDP, length 82 [|LLDP] 16:59:33.998023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.998033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.998034 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.998035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.998036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.998037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.998062 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.998070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.998071 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 083c bd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.998072 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.998073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.998076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.998077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.007972 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.007975 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.007982 LLDP, length 82 [|LLDP] 16:59:34.008014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.008023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.008035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.008036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0844 5e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.008038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.008039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.008040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.008041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.008042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.008056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.008057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.008060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.017974 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.017976 LLDP, length 82 [|LLDP] 16:59:34.018013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.018022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.018034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.018035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 084b ffbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.018036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.018037 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.018038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.018039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.018040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.018054 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.018056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.018062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.018064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.027975 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.027977 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.027978 LLDP, length 82 [|LLDP] 16:59:34.028014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.028023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.028036 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.028036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0853 a0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.028038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.028039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.028040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.028053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.028054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.028055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.028057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.028060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.037970 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.037972 LLDP, length 82 [|LLDP] 16:59:34.038006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.038014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.038026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.038027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 085b 41fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.038029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.038030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.038031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.038031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.038032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.038046 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.038048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.038054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.038055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.047974 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.047976 LLDP, length 82 [|LLDP] 16:59:34.048010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.048020 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.048021 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.048022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.048023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.048045 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.048047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.048054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.048055 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0862 e31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.048056 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.048057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.048060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.048061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.057970 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.057971 LLDP, length 82 [|LLDP] 16:59:34.058005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.058014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.058026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.058027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 086a 843e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.058029 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.058030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.058031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.058032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.058045 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.058047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.058048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.058054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.058056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.067973 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.067974 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.067975 LLDP, length 82 [|LLDP] 16:59:34.068007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.068016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.068028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.068029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0872 255e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.068030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.068031 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.068032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.068033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.068034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.068048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.068050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.068052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.077973 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.077975 LLDP, length 82 [|LLDP] 16:59:34.078008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.078016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.078017 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.078018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.078019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.078020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.078044 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.078051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.078051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0879 c67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.078053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.078054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.078056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.078058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.087970 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.087971 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.087973 LLDP, length 82 [|LLDP] 16:59:34.088007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.088017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.088029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.088030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0881 679e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.088032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.088033 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.088034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.088035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.088036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.088050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.088051 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.088053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.097969 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.097972 LLDP, length 82 [|LLDP] 16:59:34.098005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.098015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.098027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.098028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0889 08be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.098029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.098030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.098031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.098032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.098033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.098048 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.098049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.098055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.098057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.107968 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.107969 LLDP, length 82 [|LLDP] 16:59:34.108003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.108012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.108032 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.108033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0890 a9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.108034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.108036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.108037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.108051 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.108052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.108054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.108055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.108062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.108064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.117973 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.117975 LLDP, length 82 [|LLDP] 16:59:34.118014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.118023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.118036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.118037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0898 4afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.118038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.118039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.118040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.118041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.118042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.118058 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.118060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.118066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.118068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.127972 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.127974 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.127981 LLDP, length 82 [|LLDP] 16:59:34.128012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.128022 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.128023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.128024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.128025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.128048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.128051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.128052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 089f ec1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.128054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.128055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.128057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.128059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.137973 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.137974 LLDP, length 82 [|LLDP] 16:59:34.138007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.138017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.138029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.138030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a7 8d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.138032 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.138033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.138033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.138034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.138048 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.138050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.138051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.138058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.138060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.147970 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.147971 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.147972 LLDP, length 82 [|LLDP] 16:59:34.148009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.148019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.148030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.148031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08af 2e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.148033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.148034 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.148035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.148036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.148037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.148052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.148053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.148056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.157972 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.157974 LLDP, length 82 [|LLDP] 16:59:34.158011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.158020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.158021 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.158022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.158023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.158024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.158048 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.158055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.158055 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b6 cf7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.158057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.158058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.158060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.158062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.167977 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.167979 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.167986 LLDP, length 82 [|LLDP] 16:59:34.168018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.168027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.168038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.168039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08be 709e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.168041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.168042 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.168042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.168043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.168044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.168059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.168060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.168063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.177971 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.177973 LLDP, length 82 [|LLDP] 16:59:34.178007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.178016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.178028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.178029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c6 11be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.178031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.178032 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.178032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.178033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.178034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.178049 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.178050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.178057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.178058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.187970 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.187971 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.187972 LLDP, length 82 [|LLDP] 16:59:34.188008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.188018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.188031 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.188031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08cd b2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.188033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.188034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.188035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.188048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.188049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.188050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.188053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.188055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.197966 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.197968 LLDP, length 82 [|LLDP] 16:59:34.198001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.198010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.198022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.198023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d5 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.198025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.198026 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.198027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.198028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.198029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.198043 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.198045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.198051 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.198053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.207968 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.207970 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.207971 LLDP, length 82 [|LLDP] 16:59:34.207999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.208008 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.208009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.208010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.208011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.208033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.208036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.208037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08dc f51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.208039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.208039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.208042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.208044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.217969 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.217971 LLDP, length 82 [|LLDP] 16:59:34.218005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.218014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.218026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.218027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e4 963e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.218028 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.218029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.218030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.218031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.218046 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.218047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.218048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.218055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.218056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.227968 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.227970 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.227971 LLDP, length 82 [|LLDP] 16:59:34.228011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.228020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.228033 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.228034 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08ec 375e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.228035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.228036 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.228037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.228038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.228039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.228054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.228055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.228057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.237967 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.237969 LLDP, length 82 [|LLDP] 16:59:34.238002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.238012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.238013 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.238014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.238015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.238016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.238040 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.238046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.238047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08f3 d87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.238049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.238050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.238052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.238054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.247970 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.247972 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.247973 LLDP, length 82 [|LLDP] 16:59:34.248008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.248019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.248031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.248032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08fb 799e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.248033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.248034 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.248035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.248036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.248037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.248051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.248052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.248055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.257967 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.257968 LLDP, length 82 [|LLDP] 16:59:34.258002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.258012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.258024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.258025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0903 1abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.258026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.258027 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.258028 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.258029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.258030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.258046 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.258047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.258053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.258055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.267965 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.267967 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.267968 LLDP, length 82 [|LLDP] 16:59:34.268004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.268014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.268026 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.268027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 090a bbde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.268028 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.268029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.268030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.268043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.268045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.268046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.268048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.268050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.277965 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.277967 LLDP, length 82 [|LLDP] 16:59:34.277999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.278008 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.278020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.278021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0912 5cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.278022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.278023 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.278024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.278026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.278027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.278041 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.278043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.278049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.278051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.287965 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.287967 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.287968 LLDP, length 82 [|LLDP] 16:59:34.288004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.288013 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.288014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.288015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.288016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.288038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.288042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.288043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0919 fe1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.288044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.288045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.288047 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.288049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.297964 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.297966 LLDP, length 82 [|LLDP] 16:59:34.297999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.298008 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.298020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.298021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0921 9f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.298022 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.298023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.298024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.298025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.298039 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.298041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.298042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.298049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.298051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.307968 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.307970 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.307977 LLDP, length 82 [|LLDP] 16:59:34.308014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.308024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.308036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.308037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0929 405e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.308038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.308039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.308041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.308042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.308043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.308059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.308060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.308064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.317966 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.317968 LLDP, length 82 [|LLDP] 16:59:34.318001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.318010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.318011 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.318012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.318013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.318014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.318038 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.318046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.318047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0930 e17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.318048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.318049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.318052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.318054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.327965 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.327967 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.327968 LLDP, length 82 [|LLDP] 16:59:34.328008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.328018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.328030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.328031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0938 829e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.328033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.328034 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.328035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.328036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.328037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.328065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.328066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.328068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.337968 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.337970 LLDP, length 82 [|LLDP] 16:59:34.338005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.338014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.338026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.338027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0940 23be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.338028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.338029 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.338030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.338032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.338033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.338049 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.338050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.338057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.338059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.347965 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.347967 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.347968 LLDP, length 82 [|LLDP] 16:59:34.348004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.348014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.348027 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.348028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0947 c4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.348029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.348031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.348032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.348044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.348046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.348047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.348050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.348051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.357965 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.357967 LLDP, length 82 [|LLDP] 16:59:34.358007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.358016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.358029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.358030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 094f 65fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.358032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.358033 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.358034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.358035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.358036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.358052 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.358054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.358061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.358063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.367967 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.367969 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.367970 LLDP, length 82 [|LLDP] 16:59:34.368007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.368018 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.368019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.368020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.368021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.368044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.368047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.368048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0957 071e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.368050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.368051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.368054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.368055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.377964 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.377966 LLDP, length 82 [|LLDP] 16:59:34.378003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.378013 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.378025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.378026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 095e a83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.378028 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.378029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.378030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.378031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.378046 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.378048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.378048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.378055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.378057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.387964 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.387966 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.387967 LLDP, length 82 [|LLDP] 16:59:34.388004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.388014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.388026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.388027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0966 495e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.388028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.388030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.388031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.388032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.388033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.388046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.388047 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.388050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.397965 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.397967 LLDP, length 82 [|LLDP] 16:59:34.398000 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.398010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.398011 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.398012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.398013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.398014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.398039 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.398046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.398047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 096d ea7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.398048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.398049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.398052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.398054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.407964 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.407966 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.407967 LLDP, length 82 [|LLDP] 16:59:34.407997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.408006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.408018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.408019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0975 8b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.408020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.408021 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.408022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.408023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.408024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.408038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.408039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.408041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.417962 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.417964 LLDP, length 82 [|LLDP] 16:59:34.417998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.418007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.418019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.418020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 097d 2cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.418021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.418022 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.418023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.418024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.418025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.418039 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.418041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.418048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.418049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.427961 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.427963 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.427964 LLDP, length 82 [|LLDP] 16:59:34.428001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.428010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.428022 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.428023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0984 cdde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.428024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.428025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.428026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.428039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.428041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.428042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.428044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.428046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.437962 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.437964 LLDP, length 82 [|LLDP] 16:59:34.438000 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.438009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.438029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.438030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 098c 6efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.438032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.438033 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.438033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.438035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.438036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.438051 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.438053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.438059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.438061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.447961 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.447963 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.447965 LLDP, length 82 [|LLDP] 16:59:34.448000 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.448010 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.448011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.448012 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.448013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.448035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.448039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.448040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0994 101e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.448041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.448042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.448045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.448047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.457959 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.457960 LLDP, length 82 [|LLDP] 16:59:34.458002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.458011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.458023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.458024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 099b b13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.458026 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.458027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.458028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.458029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.458044 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.458045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.458046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.458053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.458055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.467960 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.467961 LLDP, length 82 [|LLDP] 16:59:34.467994 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.468003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.468016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.468017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09a3 525e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.468018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.468019 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.468020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.468021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.468022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.468036 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.468038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.468043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.468045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.477959 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.477961 LLDP, length 82 [|LLDP] 16:59:34.477993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.478003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.478004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.478005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.478006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.478007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.478030 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.478037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.478038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09aa f37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.478039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.478040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.478043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.478045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.487960 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.487962 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.487963 LLDP, length 82 [|LLDP] 16:59:34.487998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.488008 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.488020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.488033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09b2 949e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.488035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.488036 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.488037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.488038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.488039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.488053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.488054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.488057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.497979 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.497987 LLDP, length 82 [|LLDP] 16:59:34.498023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.498036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.498051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.498052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ba 35be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.498053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.498054 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.498055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.498057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.498058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.498082 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.498084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.498091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.498093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.507957 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.507959 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.507960 LLDP, length 82 [|LLDP] 16:59:34.507993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.508002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.508014 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.508015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09c1 d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.508017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.508018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.508019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.508033 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.508035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.508036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.508038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.508041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.517956 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.517957 LLDP, length 82 [|LLDP] 16:59:34.517987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.517996 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.518008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.518009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09c9 77fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.518011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.518012 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.518013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.518014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.518015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.518029 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.518031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.518036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.518038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.527955 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.527956 LLDP, length 82 [|LLDP] 16:59:34.527985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.527993 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.527994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.527995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.527996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.528017 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.528019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.528025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.528026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09d1 191e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.528028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.528029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.528031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.528032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.537959 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.537961 LLDP, length 82 [|LLDP] 16:59:34.537993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.538001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.538014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.538015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09d8 ba3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.538016 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.538018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.538019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.538020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.538034 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.538036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.538037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.538043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.538044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.547958 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.547960 LLDP, length 82 [|LLDP] 16:59:34.547993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.548002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.548015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.548016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e0 5b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.548017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.548018 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.548019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.548020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.548021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.548036 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.548037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.548043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.548045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.557955 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.557957 LLDP, length 82 [|LLDP] 16:59:34.557985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.557995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.557996 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.557997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.557998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.557999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.558022 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.558028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.558029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e7 fc7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.558030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.558031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.558034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.558036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.567970 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.567978 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.567979 LLDP, length 82 [|LLDP] 16:59:34.568015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.568027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.568041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.568042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ef 9d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.568043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.568044 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.568046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.568047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.568048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.568063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.568064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.568066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.577964 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.577965 LLDP, length 82 [|LLDP] 16:59:34.578004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.578015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.578028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.578028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f7 3ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.578030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.578031 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.578032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.578033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.578034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.578050 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.578052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.578058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.578060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.587956 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.587958 LLDP, length 82 [|LLDP] 16:59:34.587989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.587998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.588010 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.588011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09fe dfde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.588013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.588014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.588015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.588027 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.588029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.588030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.588031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.588038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.588040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.597956 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.597958 LLDP, length 82 [|LLDP] 16:59:34.597989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.597997 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.598009 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.598010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a06 80fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.598012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.598013 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.598014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.598015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.598016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.598030 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.598032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.598037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.598039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.607955 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.607957 LLDP, length 82 [|LLDP] 16:59:34.607986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.607995 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.607996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.607997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.607998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.608019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.608021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.608027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.608028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a0e 221e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.608029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.608030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.608033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.608034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.617952 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.617954 LLDP, length 82 [|LLDP] 16:59:34.617983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.617992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.618005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.618006 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a15 c33e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.618007 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.618008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.618009 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.618010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.618024 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.618025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.618026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.618032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.618034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.627953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.627954 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.627955 LLDP, length 82 [|LLDP] 16:59:34.627989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.627997 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.628009 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.628010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a1d 645e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.628012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.628013 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.628014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.628015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.628016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.628030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.628031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.628033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.637951 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.637953 LLDP, length 82 [|LLDP] 16:59:34.637982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.637990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.637991 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.637992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.637993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.637994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.638017 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.638023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.638024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a25 057e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.638025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.638026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.638029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.638031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.647953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.647955 LLDP, length 82 [|LLDP] 16:59:34.647987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.647996 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.648008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.648009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a2c a69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.648010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.648012 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.648013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.648014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.648015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.648029 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.648031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.648037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.648039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.657952 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.657953 LLDP, length 82 [|LLDP] 16:59:34.657978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.657986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.657999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.657999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a34 47be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.658001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.658002 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.658003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.658004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.658005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.658019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.658020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.658025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.658028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.667953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.667954 LLDP, length 82 [|LLDP] 16:59:34.667983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.667990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.668002 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.668003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a3b e8de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.668004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.668005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.668006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.668019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.668020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.668021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.668022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.668029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.668030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.677951 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.677953 LLDP, length 82 [|LLDP] 16:59:34.677982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.677989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.678001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.678002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a43 89fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.678004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.678005 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.678006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.678007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.678008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.678022 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.678024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.678029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.678031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.687950 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.687951 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.687952 LLDP, length 82 [|LLDP] 16:59:34.687983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.687991 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.687992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.687993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.687994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.688015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.688018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.688019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a4b 2b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.688021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.688022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.688024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.688026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.697958 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.697960 LLDP, length 82 [|LLDP] 16:59:34.697996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.698006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.698019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.698020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a52 cc3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.698021 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.698022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.698023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.698025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.698039 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.698041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.698042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.698048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.698050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.707953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.707955 LLDP, length 82 [|LLDP] 16:59:34.707986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.707994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.708007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.708008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a5a 6d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.708009 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.708010 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.708011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.708012 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.708013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.708027 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.708029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.708034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.708036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.717957 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.717958 LLDP, length 82 [|LLDP] 16:59:34.717993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.718002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.718003 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.718004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.718005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.718006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.718030 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.718038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.718039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a62 0e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.718040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.718041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.718044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.718047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.727953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.727954 LLDP, length 82 [|LLDP] 16:59:34.727984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.727992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.728005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.728006 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a69 af9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.728007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.728008 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.728009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.728010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.728012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.728025 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.728027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.728033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.728034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.737950 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.737952 LLDP, length 82 [|LLDP] 16:59:34.737975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.737983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.737995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.737996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a71 50be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.737997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.737998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.737999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.738000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.738001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.738016 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.738018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.738023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.738025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.747957 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.747958 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.747959 LLDP, length 82 [|LLDP] 16:59:34.747994 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.748003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.748015 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.748016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a78 f1de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.748018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.748019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.748020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.748032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.748034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.748035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.748038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.748039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.757956 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.757958 LLDP, length 82 [|LLDP] 16:59:34.757991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.758000 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.758012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.758013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a80 92fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.758015 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.758016 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.758017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.758017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.758018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.758033 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.758035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.758041 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.758043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.767953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.767955 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.767956 LLDP, length 82 [|LLDP] 16:59:34.767990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.767999 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.768000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.768001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.768002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.768025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.768028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.768029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a88 341e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.768031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.768032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.768034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.768036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.777954 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.777956 LLDP, length 82 [|LLDP] 16:59:34.777987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.777998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.778010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.778011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a8f d53e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.778012 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.778013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.778014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.778015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.778029 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.778031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.778032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.778038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.778040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.787952 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.787953 LLDP, length 82 [|LLDP] 16:59:34.787984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.787993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.788006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.788007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a97 765e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.788008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.788009 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.788010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.788011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.788012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.788027 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.788029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.788034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.788036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.797953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.797954 LLDP, length 82 [|LLDP] 16:59:34.797987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.797996 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.797996 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.797997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.797998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.797999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.798023 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.798031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.798031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a9f 177e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.798033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.798034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.798036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.798038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.807960 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.807962 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.807963 LLDP, length 82 [|LLDP] 16:59:34.807999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.808009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.808022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.808023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa6 b89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.808024 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.808025 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.808026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.808028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.808029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.808044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.808045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.808048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.817957 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.817959 LLDP, length 82 [|LLDP] 16:59:34.817993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.818003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.818015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.818016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aae 59be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.818018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.818019 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.818020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.818021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.818022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.818037 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.818039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.818045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.818046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.827951 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.827952 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.827953 LLDP, length 82 [|LLDP] 16:59:34.827990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.827999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.828011 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.828012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab5 fade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.828014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.828015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.828016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.828029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.828031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.828032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.828035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.828037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.837952 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.837954 LLDP, length 82 [|LLDP] 16:59:34.837986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.837995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.838008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.838009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0abd 9bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.838010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.838011 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.838012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.838013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.838014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.838029 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.838030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.838036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.838038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.847952 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.847954 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.847955 LLDP, length 82 [|LLDP] 16:59:34.847990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.847998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.847999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.848000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.848001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.848024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.848028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.848028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac5 3d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.848030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.848031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.848033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.848036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.857958 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.857960 LLDP, length 82 [|LLDP] 16:59:34.857998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.858009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.858022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.858023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0acc de3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.858024 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.858025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.858026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.858027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.858043 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.858045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.858046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.858053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.858054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.867954 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.867956 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.867957 LLDP, length 82 [|LLDP] 16:59:34.867993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.868004 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.868018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.868019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad4 7f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.868020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.868021 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.868022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.868023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.868024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.868038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.868039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.868042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.877951 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.877953 LLDP, length 82 [|LLDP] 16:59:34.877985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.877994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.877995 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.877996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.877997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.877998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.878022 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.878029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.878030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0adc 207e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.878032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.878033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.878036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.878038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.887949 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.887951 LLDP, length 82 [|LLDP] 16:59:34.887982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.887992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.888005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.888005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ae3 c19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.888007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.888008 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.888009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.888010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.888011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.888025 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.888027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.888032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.888034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.897951 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.897953 LLDP, length 82 [|LLDP] 16:59:34.897985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.897994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.898006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.898007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aeb 62be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.898009 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.898010 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.898011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.898011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.898012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.898027 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.898029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.898035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.898036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.907950 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.907951 LLDP, length 82 [|LLDP] 16:59:34.907983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.907993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.908005 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.908006 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0af3 03de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.908007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.908009 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.908009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.908022 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.908024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.908025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.908026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.908033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.908035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.917958 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.917960 LLDP, length 82 [|LLDP] 16:59:34.917999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.918011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.918024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.918025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0afa a4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.918026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.918027 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.918028 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.918029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.918030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.918046 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.918048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.918055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.918057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.927953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.927955 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.927956 LLDP, length 82 [|LLDP] 16:59:34.927992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.928003 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.928004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.928005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.928006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.928029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.928033 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.928034 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b02 461e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.928035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.928036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.928039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.928040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.937951 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.937953 LLDP, length 82 [|LLDP] 16:59:34.937985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.937994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.938008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.938008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b09 e73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.938010 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.938011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.938012 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.938013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.938027 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.938029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.938030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.938037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.938039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.947948 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.947949 LLDP, length 82 [|LLDP] 16:59:34.947980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.947989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.948002 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.948003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b11 885e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.948004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.948005 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.948006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.948007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.948008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.948023 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.948025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.948031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.948032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.957949 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.957951 LLDP, length 82 [|LLDP] 16:59:34.957984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.957993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.957994 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.957995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.957996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.957997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.958030 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.958037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.958038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b19 297e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.958040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.958041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.958043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.958045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.967951 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.967953 LLDP, length 82 [|LLDP] 16:59:34.967985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.967994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.968007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.968007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b20 ca9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.968009 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.968010 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.968011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.968012 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.968013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.968028 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.968030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.968035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.968038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.977947 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.977949 LLDP, length 82 [|LLDP] 16:59:34.977980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.977989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.978001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.978002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b28 6bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.978003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.978004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.978005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.978006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.978007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.978022 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.978023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.978029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.978031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.987947 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.987949 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.987950 LLDP, length 82 [|LLDP] 16:59:34.987985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.987995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.988007 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.988008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b30 0cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.988010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.988011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.988012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.988024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.988026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.988027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.988029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.988031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.997947 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.997949 LLDP, length 82 [|LLDP] 16:59:34.997981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.997990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.998003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.998004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b37 adfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.998005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.998006 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.998007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.998008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.998009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.998025 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.998026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.998032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.998034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.007946 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.007948 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.007949 LLDP, length 82 [|LLDP] 16:59:35.007983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.007991 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.007992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.007993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.007994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.008016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.008019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.008020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b3f 4f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.008022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.008023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.008025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.008027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.017946 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.017948 LLDP, length 82 [|LLDP] 16:59:35.017980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.017989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.018001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.018002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b46 f03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.018004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.018005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.018006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.018007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.018021 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.018022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.018023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.018030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.018032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.027946 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.027947 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.027948 LLDP, length 82 [|LLDP] 16:59:35.027983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.027992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.028005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.028005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b4e 915e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.028007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.028008 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.028009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.028009 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.028010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.028025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.028026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.028029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.037946 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.037948 LLDP, length 82 [|LLDP] 16:59:35.037980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.037990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.037991 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.037992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.037993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.037994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.038017 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.038024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.038025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b56 327e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.038027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.038028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.038030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.038033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.047947 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.047948 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.047949 LLDP, length 82 [|LLDP] 16:59:35.047977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.047986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.047998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.047999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b5d d39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.048000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.048001 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.048003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.048004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.048005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.048019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.048020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.048022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.057945 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.057946 LLDP, length 82 [|LLDP] 16:59:35.057978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.057987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.057999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.058000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b65 74be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.058001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.058002 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.058003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.058004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.058005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.058019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.058021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.058027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.058029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.067946 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.067948 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.067949 LLDP, length 82 [|LLDP] 16:59:35.067986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.067995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.068007 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.068009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b6d 15de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.068010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.068011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.068012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.068025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.068027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.068028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.068030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.068032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.077945 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.077947 LLDP, length 82 [|LLDP] 16:59:35.077978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.077988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.078000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.078001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b74 b6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.078003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.078004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.078005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.078005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.078006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.078021 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.078022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.078028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.078030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.087945 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.087946 LLDP, length 82 [|LLDP] 16:59:35.087978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.087987 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.087988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.087989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.087990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.088012 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.088014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.088021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.088022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b7c 581e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.088023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.088024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.088026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.088028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.097945 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.097947 LLDP, length 82 [|LLDP] 16:59:35.097979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.097988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.098001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.098001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b83 f93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.098003 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.098004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.098005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.098006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.098019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.098021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.098022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.098028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.098030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.107942 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.107944 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.107945 LLDP, length 82 [|LLDP] 16:59:35.107972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.107980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.107993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.107994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b8b 9a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.107996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.107997 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.107998 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.107999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.108000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.108014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.108015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.108018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.117945 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.117947 LLDP, length 82 [|LLDP] 16:59:35.117978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.117986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.117987 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.117988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.117989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.117990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.118015 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.118022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.118023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b93 3b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.118025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.118026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.118028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.118030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.127943 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.127945 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.127946 LLDP, length 82 [|LLDP] 16:59:35.127979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.127988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.128001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.128002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b9a dc9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.128004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.128005 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.128006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.128006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.128008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.128022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.128023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.128026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.137944 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.137946 LLDP, length 82 [|LLDP] 16:59:35.137977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.137987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.138000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.138001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ba2 7dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.138002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.138003 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.138004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.138005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.138006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.138020 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.138022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.138027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.138029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.147944 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.147946 LLDP, length 82 [|LLDP] 16:59:35.147977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.147986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.147998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.147999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0baa 1ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.148001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.148002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.148003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.148016 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.148018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.148019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.148020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.148027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.148028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.157943 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.157944 LLDP, length 82 [|LLDP] 16:59:35.157978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.157986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.157999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.158000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bb1 bffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.158001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.158002 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.158003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.158004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.158005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.158029 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.158031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.158038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.158040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.167944 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.167946 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.167947 LLDP, length 82 [|LLDP] 16:59:35.167984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.167993 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.167994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.167995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.167996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.168019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.168023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.168023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bb9 611e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.168025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.168026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.168028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.168031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.177946 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.177948 LLDP, length 82 [|LLDP] 16:59:35.177980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.177990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.178003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.178004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bc1 023e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.178006 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.178007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.178008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.178009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.178024 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.178025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.178026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.178033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.178035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.187941 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.187943 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.187944 LLDP, length 82 [|LLDP] 16:59:35.187979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.187988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.188000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.188001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bc8 a35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.188003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.188004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.188005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.188006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.188007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.188021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.188022 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.188025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.197941 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.197943 LLDP, length 82 [|LLDP] 16:59:35.197975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.197984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.197985 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.197986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.197987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.197988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.198013 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.198020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.198021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd0 447e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.198022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.198023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.198026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.198028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.207948 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.207950 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.207951 LLDP, length 82 [|LLDP] 16:59:35.207985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.207994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.208007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.208008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd7 e59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.208009 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.208010 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.208012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.208013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.208014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.208028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.208029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.208032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.217941 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.217943 LLDP, length 82 [|LLDP] 16:59:35.217977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.217986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.217998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.217999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bdf 86be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.218000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.218001 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.218002 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.218004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.218004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.218019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.218021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.218027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.218029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.227941 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.227943 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.227944 LLDP, length 82 [|LLDP] 16:59:35.227979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.227988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.228001 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.228002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be7 27de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.228004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.228005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.228006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.228019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.228021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.228022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.228024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.228026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.237940 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.237942 LLDP, length 82 [|LLDP] 16:59:35.237973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.237983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.237995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.237996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bee c8fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.237997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.237998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.237999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.238000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.238001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.238016 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.238017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.238023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.238025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.247940 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.247942 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.247943 LLDP, length 82 [|LLDP] 16:59:35.247975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.247985 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.247986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.247987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.247988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.248010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.248014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.248014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf6 6a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.248016 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.248017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.248019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.248021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.257947 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.257948 LLDP, length 82 [|LLDP] 16:59:35.257981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.257989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.258002 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.258003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bfe 0b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.258004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.258005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.258006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.258007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.258021 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.258023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.258024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.258030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.258032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.267941 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.267943 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.267944 LLDP, length 82 [|LLDP] 16:59:35.267983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.267992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.268005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.268006 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c05 ac5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.268007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.268009 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.268010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.268011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.268012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.268027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.268028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.268031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.277945 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.277947 LLDP, length 82 [|LLDP] 16:59:35.277984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.277994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.277995 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.277996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.277997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.277997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.278022 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.278030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.278031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c0d 4d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.278032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.278033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.278036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.278038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.287940 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.287942 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.287943 LLDP, length 82 [|LLDP] 16:59:35.287978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.287987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.288000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.288001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c14 ee9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.288003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.288004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.288005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.288006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.288007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.288021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.288022 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.288025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.297939 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.297941 LLDP, length 82 [|LLDP] 16:59:35.297974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.297983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.297995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.297996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c1c 8fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.297997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.297998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.297999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.298000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.298001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.298017 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.298018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.298024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.298027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.307936 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.307938 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.307939 LLDP, length 82 [|LLDP] 16:59:35.307973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.307982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.307994 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.307995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c24 30de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.307997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.307998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.307999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.308011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.308013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.308014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.308017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.308019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.317936 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.317938 LLDP, length 82 [|LLDP] 16:59:35.317970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.317978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.317991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.317991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c2b d1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.317993 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.317994 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.317995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.317996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.317997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.318012 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.318013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.318019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.318021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.327942 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.327944 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.327951 LLDP, length 82 [|LLDP] 16:59:35.327981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.327992 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.327993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.327994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.327995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.328029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.328033 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.328034 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c33 731e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.328035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.328036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.328039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.328041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.337939 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.337940 LLDP, length 82 [|LLDP] 16:59:35.337970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.337978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.337991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.337992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c3b 143e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.337993 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.337994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.337995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.337996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.338009 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.338011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.338012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.338019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.338021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.347935 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.347937 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.347938 LLDP, length 82 [|LLDP] 16:59:35.347968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.347976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.347988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.347989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c42 b55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.347991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.347992 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.348005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.348007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.348008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.348022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.348023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.348026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.357959 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.357968 LLDP, length 82 [|LLDP] 16:59:35.358002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.358015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.358016 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.358017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.358018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.358019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.358053 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.358061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.358062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c4a 567e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.358064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.358065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.358067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.358070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.367938 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.367940 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.367941 LLDP, length 82 [|LLDP] 16:59:35.367979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.367988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.368000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.368001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c51 f79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.368003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.368004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.368005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.368006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.368007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.368022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.368023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.368026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.377948 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.377956 LLDP, length 82 [|LLDP] 16:59:35.377991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.378002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.378014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.378015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c59 98be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.378017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.378018 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.378019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.378019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.378021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.378037 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.378039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.378046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.378047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.387949 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.387950 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.387951 LLDP, length 82 [|LLDP] 16:59:35.387991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.388001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.388013 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.388014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c61 39de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.388016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.388017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.388018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.388032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.388033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.388034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.388037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.388039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.397941 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.397943 LLDP, length 82 [|LLDP] 16:59:35.397976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.397986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.397999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.398000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c68 dafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.398001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.398002 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.398003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.398004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.398005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.398019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.398021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.398027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.398028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.407939 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.407941 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.407942 LLDP, length 82 [|LLDP] 16:59:35.407977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.407986 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.407987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.407988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.407989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.408012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.408015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.408016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c70 7c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.408017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.408018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.408021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.408023 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.417938 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.417939 LLDP, length 82 [|LLDP] 16:59:35.417963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.417973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.417985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.417986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c78 1d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.417987 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.417989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.417989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.417990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.418004 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.418006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.418007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.418013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.418015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.427937 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.427939 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.427940 LLDP, length 82 [|LLDP] 16:59:35.427976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.427985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.427997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.427998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c7f be5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.427999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.428000 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.428001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.428002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.428003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.428018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.428019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.428022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.437937 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.437938 LLDP, length 82 [|LLDP] 16:59:35.437970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.437979 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.437980 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.437981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.437982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.437983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.438007 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.438014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.438015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c87 5f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.438016 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.438017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.438020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.438022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.447939 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.447940 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.447941 LLDP, length 82 [|LLDP] 16:59:35.447977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.447986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.447999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.448000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c8f 009e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.448001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.448003 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.448004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.448005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.448006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.448020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.448021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.448024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.457937 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.457939 LLDP, length 82 [|LLDP] 16:59:35.457971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.457980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.457993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.457994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c96 a1be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.457995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.457996 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.457997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.457998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.457999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.458013 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.458015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.458021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.458023 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.467936 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.467938 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.467939 LLDP, length 82 [|LLDP] 16:59:35.467974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.467983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.467995 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.467996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c9e 42de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.467997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.467998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.468000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.468012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.468014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.468015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.468018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.468020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.477937 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.477939 LLDP, length 82 [|LLDP] 16:59:35.477974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.477984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.477997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.477997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca5 e3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.477999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.478000 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.478001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.478002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.478003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.478017 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.478019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.478026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.478028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.487944 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.487945 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.487953 LLDP, length 82 [|LLDP] 16:59:35.487997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.488008 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.488009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.488011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.488012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.488036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.488040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.488041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cad 851e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.488043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.488044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.488046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.488048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.497938 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.497940 LLDP, length 82 [|LLDP] 16:59:35.497975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.497985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.497997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.497998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb5 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.498000 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.498001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.498002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.498003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.498018 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.498020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.498021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.498027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.498029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.507934 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.507935 LLDP, length 82 [|LLDP] 16:59:35.507965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.507974 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.507986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.507987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cbc c75e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.507988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.507989 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.507990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.507991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.507992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.508006 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.508008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.508013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.508015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.517931 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.517933 LLDP, length 82 [|LLDP] 16:59:35.517966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.517975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.517976 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.517977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.517978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.517979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.518001 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.518008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.518009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cc4 687e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.518010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.518011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.518014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.518016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.527930 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.527932 LLDP, length 82 [|LLDP] 16:59:35.527960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.527968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.527980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.527981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ccc 099e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.527982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.527984 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.527984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.527985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.527986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.528000 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.528001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.528007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.528009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.537932 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.537933 LLDP, length 82 [|LLDP] 16:59:35.537964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.537972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.537984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.537985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cd3 aabe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.537987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.537988 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.537989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.537990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.537991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.538005 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.538007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.538013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.538015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.547930 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.547932 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.547933 LLDP, length 82 [|LLDP] 16:59:35.547965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.547973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.547985 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.547986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cdb 4bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.547988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.547989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.547990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.548003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.548005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.548006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.548008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.548010 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.557931 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.557933 LLDP, length 82 [|LLDP] 16:59:35.557962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.557971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.557983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.557984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ce2 ecfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.557985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.557986 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.557987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.557988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.557989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.558002 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.558004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.558009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.558011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.567942 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.567944 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.567953 LLDP, length 82 [|LLDP] 16:59:35.567985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.567998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.567999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.568000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.568001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.568023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.568027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.568028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cea 8e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.568029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.568030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.568033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.568034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.577946 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.577947 LLDP, length 82 [|LLDP] 16:59:35.577986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.577995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.578008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.578009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cf2 2f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.578011 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.578012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.578013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.578014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.578030 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.578032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.578033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.578040 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.578042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.587931 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.587933 LLDP, length 82 [|LLDP] 16:59:35.587966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.587974 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.587986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.587987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cf9 d05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.587989 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.587990 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.587991 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.587992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.587993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.588007 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.588008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.588014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.588016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.597935 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.597937 LLDP, length 82 [|LLDP] 16:59:35.597971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.597982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.597983 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.597984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.597985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.597986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.598010 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.598017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.598018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d01 717e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.598020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.598021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.598024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.598026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.607933 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.607935 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.607936 LLDP, length 82 [|LLDP] 16:59:35.607972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.607981 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.607993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.607994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d09 129e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.607995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.607997 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.607998 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.607999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.608000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.608013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.608014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.608017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.617934 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.617936 LLDP, length 82 [|LLDP] 16:59:35.617968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.617977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.617989 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.617990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d10 b3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.617991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.617992 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.617993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.617994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.617995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.618010 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.618012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.618017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.618019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.627935 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.627936 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.627937 LLDP, length 82 [|LLDP] 16:59:35.627970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.627980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.627991 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.627992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d18 54de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.627994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.627995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.627996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.628009 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.628011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.628012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.628015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.628016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.637932 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.637933 LLDP, length 82 [|LLDP] 16:59:35.637966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.637975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.637987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.637988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d1f f5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.637990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.637991 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.637992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.637993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.637994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.638008 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.638010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.638016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.638017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.647934 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.647935 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.647936 LLDP, length 82 [|LLDP] 16:59:35.647972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.647981 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.647982 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.647983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.647984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.648006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.648009 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.648010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d27 971e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.648012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.648013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.648015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.648017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.657934 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.657935 LLDP, length 82 [|LLDP] 16:59:35.657967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.657978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.657990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.657991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d2f 383e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.657992 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.657993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.657994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.657995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.658009 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.658011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.658012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.658019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.658021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.667931 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.667934 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.667934 LLDP, length 82 [|LLDP] 16:59:35.667968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.667977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.667989 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.667990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d36 d95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.667992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.667993 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.667994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.667995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.667996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.668010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.668011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.668013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.677933 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.677935 LLDP, length 82 [|LLDP] 16:59:35.677967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.677975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.677976 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.677977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.677978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.677979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.678004 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.678011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.678012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d3e 7a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.678014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.678015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.678017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.678019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.687930 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.687932 LLDP, length 82 [|LLDP] 16:59:35.687962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.687971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.687983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.687984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d46 1b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.687985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.687986 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.687987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.687988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.687989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.688003 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.688004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.688018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.688019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.697930 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.697932 LLDP, length 82 [|LLDP] 16:59:35.697964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.697973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.697985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.697986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d4d bcbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.697987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.697988 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.697989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.697990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.697991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.698007 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.698009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.698015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.698017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.707927 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.707929 LLDP, length 82 [|LLDP] 16:59:35.707959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.707967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.707980 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.707981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d55 5dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.707982 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.707983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.707984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.707996 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.707998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.707999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.708000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.708008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.708009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.717929 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.717931 LLDP, length 82 [|LLDP] 16:59:35.717958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.717967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.717979 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.717980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d5c fefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.717981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.717982 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.717983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.717984 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.717985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.717998 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.718000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.718005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.718007 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.727927 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.727928 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.727929 LLDP, length 82 [|LLDP] 16:59:35.727961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.727969 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.727970 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.727971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.727972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.727993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.727996 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.727997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d64 a01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.727999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.728000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.728002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.728004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.737926 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.737927 LLDP, length 82 [|LLDP] 16:59:35.737955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.737962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.737974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.737975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d6c 413e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.737977 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.737978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.737979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.737980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.737993 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.737994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.737995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.738001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.738003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.747926 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.747928 LLDP, length 82 [|LLDP] 16:59:35.747957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.747965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.747977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.747978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d73 e25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.747979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.747980 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.747981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.747982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.747983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.747996 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.747998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.748004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.748005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.757926 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.757928 LLDP, length 82 [|LLDP] 16:59:35.757956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.757965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.757965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.757966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.757967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.757968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.757991 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.757998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.757999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d7b 837e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.758001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.758002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.758004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.758006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.767924 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.767926 LLDP, length 82 [|LLDP] 16:59:35.767953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.767961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.767972 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.767974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d83 249e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.767975 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.767976 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.767977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.767978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.767979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.767992 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.767994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.767999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.768001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.777924 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.777925 LLDP, length 82 [|LLDP] 16:59:35.777953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.777961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.777973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.777973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d8a c5be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.777975 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.777976 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.777977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.777978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.777979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.777991 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.777993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.777998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.778000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.787924 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.787925 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.787926 LLDP, length 82 [|LLDP] 16:59:35.787956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.787964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.787976 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.787977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d92 66de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.787979 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.787980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.787981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.787994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.787996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.787997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.788000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.788001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.797925 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.797927 LLDP, length 82 [|LLDP] 16:59:35.797959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.797968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.797980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.797980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d9a 07fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.797982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.797983 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.797984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.797985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.797986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.797999 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.798001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.798007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.798008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.807938 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.807946 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.807947 LLDP, length 82 [|LLDP] 16:59:35.807983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.807995 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.807996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.807997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.807998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.808022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.808026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.808027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0da1 a91e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.808028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.808029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.808032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.808034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.817927 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.817929 LLDP, length 82 [|LLDP] 16:59:35.817960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.817968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.817981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.817982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0da9 4a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.817984 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.817985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.817986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.817987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.818000 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.818002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.818003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.818010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.818012 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.827924 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.827925 LLDP, length 82 [|LLDP] 16:59:35.827954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.827962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.827974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.827975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0db0 eb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.827976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.827977 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.827978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.827980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.827981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.827993 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.827995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.828000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.828003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.837927 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.837928 LLDP, length 82 [|LLDP] 16:59:35.837956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.837964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.837965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.837966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.837967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.837968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.837991 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.837997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.837998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0db8 8c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.837999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.838000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.838003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.838004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.847924 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.847925 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.847926 LLDP, length 82 [|LLDP] 16:59:35.847956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.847964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.847976 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.847977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc0 2d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.847979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.847980 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.847981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.847982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.847983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.847996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.847997 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.847999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.857925 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.857927 LLDP, length 82 [|LLDP] 16:59:35.857955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.857964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.857976 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.857977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc7 cebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.857979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.857980 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.857981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.857982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.857983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.857996 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.857998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.858004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.858006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.867924 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.867926 LLDP, length 82 [|LLDP] 16:59:35.867953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.867961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.867974 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.867974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dcf 6fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.867976 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.867977 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.867978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.867990 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.867991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.867992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.867993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.868000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.868002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.877923 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.877924 LLDP, length 82 [|LLDP] 16:59:35.877952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.877961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.877973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.877974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd7 10fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.877975 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.877976 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.877978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.877979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.877979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.877993 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.877995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.878000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.878002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.887922 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.887924 LLDP, length 82 [|LLDP] 16:59:35.887951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.887959 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.887960 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.887961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.887962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.887983 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.887985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.887992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.887993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dde b21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.887994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.887995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.887998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.888000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.897929 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.897930 LLDP, length 82 [|LLDP] 16:59:35.897961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.897969 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.897982 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.897983 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de6 533e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.897984 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.897985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.897986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.897987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.898001 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.898003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.898004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.898010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.898012 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.907925 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.907926 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.907927 LLDP, length 82 [|LLDP] 16:59:35.907962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.907971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.907983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.907983 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ded f45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.907985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.907986 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.907987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.907988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.907989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.908003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.908004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.908006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.917932 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.917934 LLDP, length 82 [|LLDP] 16:59:35.917973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.917983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.917984 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.917985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.917986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.917986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.918013 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.918021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.918022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df5 957e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.918023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.918024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.918027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.918029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.927923 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.927925 LLDP, length 82 [|LLDP] 16:59:35.927953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.927962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.927974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.927975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dfd 369e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.927977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.927978 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.927979 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.927980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.927981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.927994 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.927996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.928000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.928002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.937924 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.937925 LLDP, length 82 [|LLDP] 16:59:35.937953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.937962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.937973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.937974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e04 d7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.937976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.937977 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.937978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.937979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.937980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.937993 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.937995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.938000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.938002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.947921 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.947923 LLDP, length 82 [|LLDP] 16:59:35.947949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.947958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.947969 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.947970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e0c 78de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.947972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.947973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.947974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.947985 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.947987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.947988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.947989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.947995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.947997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.957929 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.957931 LLDP, length 82 [|LLDP] 16:59:35.957971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.957982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.957994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.957995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e14 19fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.957997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.957998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.957999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.958000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.958001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.958019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.958021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.958028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.958030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.967923 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.967925 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.967926 LLDP, length 82 [|LLDP] 16:59:35.967958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.967966 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.967967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.967968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.967969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.967991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.967994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.967995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e1b bb1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.967997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.967998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.968000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.968002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.977921 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.977923 LLDP, length 82 [|LLDP] 16:59:35.977951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.977960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.977972 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.977973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e23 5c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.977974 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.977975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.977976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.977977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.977990 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.977992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.977993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.977999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.978000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.987922 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.987924 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.987925 LLDP, length 82 [|LLDP] 16:59:35.987958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.987966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.987978 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.987979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e2a fd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.987981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.987982 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.987983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.987984 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.987985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.987998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.987999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.988001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.997920 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.997922 LLDP, length 82 [|LLDP] 16:59:35.997952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.997961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.997962 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.997962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.997963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.997965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.997987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.997994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.997995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e32 9e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.997997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.997998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.998001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.998003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.007923 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.007925 LLDP, length 82 [|LLDP] 16:59:36.007954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.007963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.007974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.007975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e3a 3f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.007976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.007977 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.007978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.007980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.007981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.007995 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.007997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.008003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.008005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.017923 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.017925 LLDP, length 82 [|LLDP] 16:59:36.017957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.017965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.017978 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.017978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e41 e0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.017980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.017981 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.017982 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.017983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.017984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.017998 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.018000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.018006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.018016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.027921 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.027922 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.027923 LLDP, length 82 [|LLDP] 16:59:36.027956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.027963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.027976 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.027977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e49 81de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.027978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.027980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.027981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.027993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.027995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.027996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.027998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.028000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.037919 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.037920 LLDP, length 82 [|LLDP] 16:59:36.037947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.037955 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.037967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.037968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e51 22fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.037969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.037971 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.037972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.037973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.037974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.037987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.037989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.037994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.037996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.047920 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.047921 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.047922 LLDP, length 82 [|LLDP] 16:59:36.047952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.047961 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.047962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.047963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.047964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.047985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.047988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.047989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e58 c41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.047991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.047991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.047994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.047996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.057920 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.057922 LLDP, length 82 [|LLDP] 16:59:36.057950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.057958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.057970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.057971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e60 653e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.057973 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.057974 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.057975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.057976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.057989 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.057991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.057991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.057998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.057999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.067922 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.067924 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.067925 LLDP, length 82 [|LLDP] 16:59:36.067950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.067958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.067970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.067971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e68 065e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.067972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.067974 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.067974 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.067975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.067977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.067990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.067991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.067994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.077919 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.077921 LLDP, length 82 [|LLDP] 16:59:36.077949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.077957 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.077958 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.077959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.077960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.077961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.077983 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.077990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.077991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e6f a77e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.077992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.077994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.077996 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.077998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.087918 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.087919 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.087920 LLDP, length 82 [|LLDP] 16:59:36.087949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.087957 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.087969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.087970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e77 489e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.087972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.087973 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.087974 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.087975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.087976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.087989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.087990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.087993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.097916 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.097917 LLDP, length 82 [|LLDP] 16:59:36.097946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.097954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.097966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.097967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e7e e9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.097969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.097970 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.097971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.097972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.097973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.097986 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.097988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.097993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.097995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.107919 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.107920 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.107921 LLDP, length 82 [|LLDP] 16:59:36.107960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.107968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.107980 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.107980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e86 8ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.107982 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.107983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.107984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.107996 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.107998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.107999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.108002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.108004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.117918 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.117920 LLDP, length 82 [|LLDP] 16:59:36.117953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.117961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.117974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.117974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e8e 2bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.117976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.117977 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.117978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.117979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.117980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.117994 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.117996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.118001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.118003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.127919 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.127921 LLDP, length 82 [|LLDP] 16:59:36.127953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.127961 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.127962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.127963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.127964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.127986 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.127988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.127995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.127995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e95 cd1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.127997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.127998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.128000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.128002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.137919 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.137921 LLDP, length 82 [|LLDP] 16:59:36.137950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.137959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.137971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.137972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e9d 6e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.137973 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.137975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.137976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.137977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.137989 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.137991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.137992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.137998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.138000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.147915 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.147916 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.147917 LLDP, length 82 [|LLDP] 16:59:36.147946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.147955 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.147967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.147968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea5 0f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.147970 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.147971 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.147972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.147973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.147974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.147988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.147989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.147991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.157916 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.157917 LLDP, length 82 [|LLDP] 16:59:36.157944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.157953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.157954 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.157955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.157956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.157957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.157979 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.157985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.157986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eac b07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.157987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.157988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.157991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.157993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.167916 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.167918 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.167919 LLDP, length 82 [|LLDP] 16:59:36.167953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.167961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.167973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.167974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eb4 519e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.167976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.167977 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.167978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.167979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.167980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.167994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.167995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.167997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.177918 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.177919 LLDP, length 82 [|LLDP] 16:59:36.177947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.177956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.177968 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.177968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ebb f2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.177970 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.177971 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.177972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.177973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.177974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.177987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.177989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.177993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.177995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.187915 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.187917 LLDP, length 82 [|LLDP] 16:59:36.187944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.187952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.187964 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.187965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ec3 93de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.187966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.187967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.187968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.187980 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.187981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.187983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.187984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.187990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.187992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.197913 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.197915 LLDP, length 82 [|LLDP] 16:59:36.197944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.197952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.197964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.197964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ecb 34fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.197966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.197967 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.197968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.197969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.197970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.197983 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.197984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.197990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.197992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.207917 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.207918 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.207919 LLDP, length 82 [|LLDP] 16:59:36.207950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.207958 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.207959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.207960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.207961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.207983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.207986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.207987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ed2 d61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.207989 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.208001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.208005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.208007 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.217942 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.217956 LLDP, length 82 [|LLDP] 16:59:36.217993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.218006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.218020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.218021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eda 773e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.218022 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.218023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.218024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.218025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.218048 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.218051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.218052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.218060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.218061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.227922 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.227924 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.227925 LLDP, length 82 [|LLDP] 16:59:36.227967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.227977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.227988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.227989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ee2 185e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.227991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.227992 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.227993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.227994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.227995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.228012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.228013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.228016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.237921 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.237923 LLDP, length 82 [|LLDP] 16:59:36.237954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.237963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.237964 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.237965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.237966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.237967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.237990 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.237997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.237997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ee9 b97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.237999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.238000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.238003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.238005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.247913 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.247915 LLDP, length 82 [|LLDP] 16:59:36.247944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.247952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.247964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.247965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ef1 5a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.247966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.247967 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.247968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.247969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.247971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.247984 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.247986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.247991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.247993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.257914 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.257916 LLDP, length 82 [|LLDP] 16:59:36.257945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.257953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.257966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.257966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ef8 fbbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.257968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.257969 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.257970 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.257971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.257972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.257985 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.257987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.257992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.257994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.267913 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.267915 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.267916 LLDP, length 82 [|LLDP] 16:59:36.267949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.267956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.267968 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.267969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f00 9cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.267971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.267972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.267972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.267985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.267987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.267988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.267990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.267992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.277914 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.277916 LLDP, length 82 [|LLDP] 16:59:36.277946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.277954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.277966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.277967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f08 3dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.277968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.277969 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.277970 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.277971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.277972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.277985 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.277987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.277993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.277994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.287913 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.287915 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.287916 LLDP, length 82 [|LLDP] 16:59:36.287947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.287955 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.287956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.287957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.287958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.287980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.287983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.287984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f0f df1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.287986 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.287987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.287989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.287991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.297914 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.297915 LLDP, length 82 [|LLDP] 16:59:36.297943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.297951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.297963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.297964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f17 803e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.297965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.297966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.297967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.297969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.297982 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.297983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.297985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.297990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.297992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.307912 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.307913 LLDP, length 82 [|LLDP] 16:59:36.307941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.307949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.307962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.307962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f1f 215e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.307964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.307965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.307966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.307967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.307968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.307981 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.307983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.307988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.307990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.317918 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.317920 LLDP, length 82 [|LLDP] 16:59:36.317955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.317964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.317965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.317966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.317968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.317968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.317991 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.317998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.317999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f26 c27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.318000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.318001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.318004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.318006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.327914 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.327915 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.327916 LLDP, length 82 [|LLDP] 16:59:36.327949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.327957 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.327969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.327970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f2e 639e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.327972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.327973 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.327974 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.327975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.327976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.328001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.328002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.328005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.337925 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.337934 LLDP, length 82 [|LLDP] 16:59:36.337969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.337980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.337994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.337995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f36 04be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.337996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.337998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.337999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.338000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.338001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.338027 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.338029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.338036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.338038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.347918 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.347920 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.347921 LLDP, length 82 [|LLDP] 16:59:36.347957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.347967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.347979 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.347980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f3d a5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.347982 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.347983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.347984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.347998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.348000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.348001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.348003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.348005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.357915 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.357917 LLDP, length 82 [|LLDP] 16:59:36.357947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.357956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.357968 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.357969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f45 46fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.357971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.357972 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.357973 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.357974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.357975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.357989 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.357991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.357996 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.357998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.367912 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.367914 LLDP, length 82 [|LLDP] 16:59:36.367942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.367950 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.367951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.367952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.367953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.367974 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.367976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.367983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.367984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f4c e81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.367985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.367986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.367989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.367991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.377913 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.377914 LLDP, length 82 [|LLDP] 16:59:36.377943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.377951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.377964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.377965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f54 893e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.377966 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.377967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.377968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.377969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.377982 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.377984 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.377985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.377991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.377993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.387911 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.387913 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.387914 LLDP, length 82 [|LLDP] 16:59:36.387944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.387952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.387965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.387965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f5c 2a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.387967 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.387968 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.387968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.387969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.387970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.387984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.387985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.387987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.397910 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.397912 LLDP, length 82 [|LLDP] 16:59:36.397940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.397949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.397950 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.397951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.397952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.397953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.397975 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.397981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.397982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f63 cb7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.397983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.397984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.397987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.397989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.407911 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.407913 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.407914 LLDP, length 82 [|LLDP] 16:59:36.407944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.407952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.407965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.407966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f6b 6c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.407967 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.407968 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.407969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.407970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.407971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.407984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.407986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.407988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.417910 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.417912 LLDP, length 82 [|LLDP] 16:59:36.417943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.417952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.417964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.417965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f73 0dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.417966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.417967 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.417969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.417970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.417971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.417986 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.417988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.417993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.417995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.427910 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.427911 LLDP, length 82 [|LLDP] 16:59:36.427939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.427947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.427959 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.427960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f7a aede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.427962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.427963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.427964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.427976 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.427977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.427979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.427980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.427986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.427988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.437912 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.437914 LLDP, length 82 [|LLDP] 16:59:36.437950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.437958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.437971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.437971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f82 4ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.437973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.437974 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.437975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.437976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.437977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.437991 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.437993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.437998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.438000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.447915 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.447916 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.447917 LLDP, length 82 [|LLDP] 16:59:36.447952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.447960 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.447961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.447963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.447964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.447986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.447989 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.447990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f89 f11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.447991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.447992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.447995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.447997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.457909 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.457911 LLDP, length 82 [|LLDP] 16:59:36.457940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.457948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.457960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.457961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f91 923e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.457962 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.457963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.457964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.457965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.457978 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.457980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.457981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.457987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.457989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.467908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.467910 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.467911 LLDP, length 82 [|LLDP] 16:59:36.467941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.467949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.467961 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.467962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f99 335e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.467964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.467965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.467966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.467967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.467968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.467980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.467982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.467984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.477912 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.477914 LLDP, length 82 [|LLDP] 16:59:36.477944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.477954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.477955 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.477956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.477957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.477957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.477981 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.477988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.477988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fa0 d47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.477990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.477991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.477993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.477995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.487908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.487910 LLDP, length 82 [|LLDP] 16:59:36.487937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.487946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.487958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.487959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fa8 759e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.487960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.487961 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.487962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.487963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.487964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.487977 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.487979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.487985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.487986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.497910 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.497911 LLDP, length 82 [|LLDP] 16:59:36.497940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.497948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.497961 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.497962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb0 16be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.497964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.497965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.497966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.497967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.497968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.497981 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.497982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.497988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.497989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.507908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.507909 LLDP, length 82 [|LLDP] 16:59:36.507937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.507945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.507957 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.507958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb7 b7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.507959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.507960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.507961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.507973 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.507975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.507976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.507977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.507983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.507985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.517907 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.517909 LLDP, length 82 [|LLDP] 16:59:36.517937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.517945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.517957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.517958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fbf 58fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.517959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.517960 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.517962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.517963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.517964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.517977 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.517978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.517983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.517985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.527908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.527910 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.527911 LLDP, length 82 [|LLDP] 16:59:36.527943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.527951 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.527952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.527953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.527954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.527977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.527980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.527981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc6 fa1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.527983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.527984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.527987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.527989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.537907 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.537909 LLDP, length 82 [|LLDP] 16:59:36.537936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.537944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.537956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.537957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fce 9b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.537958 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.537959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.537960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.537961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.537974 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.537976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.537977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.537983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.537985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.547908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.547910 LLDP, length 82 [|LLDP] 16:59:36.547941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.547949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.547962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.547963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd6 3c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.547964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.547965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.547966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.547967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.547968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.547982 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.547984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.547989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.547991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.557913 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.557915 LLDP, length 82 [|LLDP] 16:59:36.557948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.557956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.557958 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.557959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.557960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.557961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.557986 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.557992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.557993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fdd dd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.557995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.557996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.557998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.558000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.567918 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.567920 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.567928 LLDP, length 82 [|LLDP] 16:59:36.567965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.567977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.567990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.567991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe5 7e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.567992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.567993 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.567994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.567995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.567997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.568013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.568015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.568017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.577919 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.577927 LLDP, length 82 [|LLDP] 16:59:36.577961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.577972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.577985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.577986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fed 1fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.577987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.577988 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.577989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.577990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.577991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.578008 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.578010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.578016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.578018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.587911 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.587913 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.587914 LLDP, length 82 [|LLDP] 16:59:36.587949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.587958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.587970 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.587971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff4 c0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.587973 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.587974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.587975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.587988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.587990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.587991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.587993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.587996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.597908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.597909 LLDP, length 82 [|LLDP] 16:59:36.597938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.597946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.597959 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.597959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ffc 61fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.597961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.597962 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.597963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.597964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.597965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.597978 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.597980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.597985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.597988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.607908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.607910 LLDP, length 82 [|LLDP] 16:59:36.607939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.607947 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.607948 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.607949 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.607950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.607972 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.607974 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.607981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.607982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1004 031e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.607983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.607984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.607987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.607989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.617906 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.617907 LLDP, length 82 [|LLDP] 16:59:36.617936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.617944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.617957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.617958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 100b a43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.617959 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.617960 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.617962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.617963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.617976 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.617978 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.617979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.617986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.617988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.627905 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.627907 LLDP, length 82 [|LLDP] 16:59:36.627938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.627946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.627958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.627959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1013 455e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.627960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.627961 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.627962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.627963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.627964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.627978 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.627980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.627985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.627988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.637905 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.637906 LLDP, length 82 [|LLDP] 16:59:36.637935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.637944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.637945 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.637946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.637947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.637948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.637970 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.637976 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.637977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 101a e67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.637979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.637980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.637983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.637985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.647905 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.647906 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.647907 LLDP, length 82 [|LLDP] 16:59:36.647947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.647954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.647967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.647968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1022 879e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.647969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.647971 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.647972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.647973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.647974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.647988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.647989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.647991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.657910 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.657912 LLDP, length 82 [|LLDP] 16:59:36.657944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.657955 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.657967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.657968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 102a 28be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.657970 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.657971 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.657972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.657973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.657974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.657987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.657989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.657995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.657998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.667905 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.667907 LLDP, length 82 [|LLDP] 16:59:36.667933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.667941 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.667954 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.667955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1031 c9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.667956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.667957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.667958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.667970 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.667972 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.667973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.667974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.667980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.667982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.677908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.677910 LLDP, length 82 [|LLDP] 16:59:36.677934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.677943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.677955 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.677956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1039 6afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.677958 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.677959 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.677960 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.677961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.677962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.677976 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.677978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.677983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.677985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.687906 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.687907 LLDP, length 82 [|LLDP] 16:59:36.687937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.687945 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.687946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.687947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.687948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.687970 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.687972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.687978 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.687979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1041 0c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.687980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.687982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.687984 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.687986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.697905 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.697906 LLDP, length 82 [|LLDP] 16:59:36.697934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.697942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.697954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.697955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1048 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.697956 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.697957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.697958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.697959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.697973 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.697974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.697976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.697981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.697983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.707906 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.707908 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.707909 LLDP, length 82 [|LLDP] 16:59:36.707937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.707946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.707958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.707959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1050 4e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.707960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.707961 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.707962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.707963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.707964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.707977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.707978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.707981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.717917 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.717919 LLDP, length 82 [|LLDP] 16:59:36.717941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.717951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.717952 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.717953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.717954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.717955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.717978 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.717984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.717985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1057 ef7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.717987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.717988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.717990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.717992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.727903 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.727905 LLDP, length 82 [|LLDP] 16:59:36.727934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.727942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.727954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.727955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 105f 909e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.727957 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.727958 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.727959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.727960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.727961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.727974 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.727976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.727982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.727984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.737903 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.737905 LLDP, length 82 [|LLDP] 16:59:36.737935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.737943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.737956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.737957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1067 31be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.737959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.737960 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.737961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.737962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.737963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.737978 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.737979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.737985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.737987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.747903 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.747905 LLDP, length 82 [|LLDP] 16:59:36.747934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.747942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.747954 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.747955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 106e d2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.747957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.747957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.747959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.747971 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.747973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.747974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.747975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.747982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.747984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.757905 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.757907 LLDP, length 82 [|LLDP] 16:59:36.757933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.757941 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.757954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.757954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1076 73fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.757956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.757957 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.757958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.757959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.757960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.757974 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.757976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.757981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.757983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.767913 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.767915 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.767922 LLDP, length 82 [|LLDP] 16:59:36.767956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.767968 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.767969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.767969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.767970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.767995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.767999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.768000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 107e 151e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.768001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.768002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.768005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.768006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.777905 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.777906 LLDP, length 82 [|LLDP] 16:59:36.777939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.777948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.777961 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.777962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1085 b63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.777963 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.777965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.777966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.777967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.777981 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.777983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.777984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.777990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.777992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.787904 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.787906 LLDP, length 82 [|LLDP] 16:59:36.787938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.787948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.787960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.787961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 108d 575e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.787963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.787964 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.787965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.787966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.787967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.787981 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.787983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.787989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.787990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.797907 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.797908 LLDP, length 82 [|LLDP] 16:59:36.797942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.797951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.797952 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.797953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.797954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.797955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.797979 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.797986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.797987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1094 f87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.797988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.797989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.797992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.797993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:38.460142 IP6 fe80::36ef:b6ff:feec:3807 > ff02::2: ICMP6, router solicitation, length 16 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 6721 packets captured 6721 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 15 tcpdump -i swp1 -n on agg1 with rc 0 and out 16:59:32.328065 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.328068 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.328069 LLDP, length 82 [|LLDP] 16:59:32.328133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.328146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.328161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.328162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0342 a19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.328163 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.328164 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.328165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.328166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.328168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.328202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.328204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.328207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.338048 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.338050 LLDP, length 82 [|LLDP] 16:59:32.338103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.338120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.338134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.338136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 034a 42be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.338137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.338138 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.338139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.338140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.338142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.338179 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.338181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.338190 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.338192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.348047 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.348050 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.348051 LLDP, length 82 [|LLDP] 16:59:32.348136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.348150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.348168 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.348168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0351 e3de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.348170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.348171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.348174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.348226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.348229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.348231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.348234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.348236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.358049 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.358052 LLDP, length 82 [|LLDP] 16:59:32.358111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.358128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.358144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.358145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0359 84fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.358147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.358148 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.358150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.358151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.358152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.358195 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.358198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.358208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.358209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.368043 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.368046 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.368047 LLDP, length 82 [|LLDP] 16:59:32.368121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.368134 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.368135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.368137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.368138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.368191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.368197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.368198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0361 261e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.368200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.368201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.368204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.368206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.378043 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.378045 LLDP, length 82 [|LLDP] 16:59:32.378099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.378112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.378126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.378127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0368 c73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.378129 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.378130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.378131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.378132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.378170 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.378173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.378174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.378185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.378188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.388047 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.388049 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.388050 LLDP, length 82 [|LLDP] 16:59:32.388120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.388135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.388150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.388151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0370 685e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.388153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.388154 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.388155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.388156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.388157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.388181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.388182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.388185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.398040 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.398042 LLDP, length 82 [|LLDP] 16:59:32.398098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.398111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.398112 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.398113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.398114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.398116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.398154 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.398164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.398166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0378 097e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.398167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.398168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.398171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.398174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.408037 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.408040 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.408041 LLDP, length 82 [|LLDP] 16:59:32.408114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.408128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.408143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.408144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 037f aa9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.408146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.408147 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.408148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.408149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.408150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.408175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.408176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.408179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.418011 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.418013 LLDP, length 82 [|LLDP] 16:59:32.418050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.418061 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.418073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.418074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0387 4bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.418076 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.418077 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.418078 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.418079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.418080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.418097 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.418099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.418106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.418108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.428012 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.428021 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.428022 LLDP, length 82 [|LLDP] 16:59:32.428060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.428070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.428083 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.428084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 038e ecde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.428085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.428087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.428087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.428114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.428117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.428118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.428120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.428123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.438009 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.438011 LLDP, length 82 [|LLDP] 16:59:32.438043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.438052 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.438065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.438065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0396 8dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.438067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.438068 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.438069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.438070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.438071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.438086 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.438087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.438093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.438095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.448016 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.448018 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.448019 LLDP, length 82 [|LLDP] 16:59:32.448053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.448062 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.448063 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.448064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.448065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.448088 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.448091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.448092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 039e 2f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.448094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.448094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.448097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.448107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.458006 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.458007 LLDP, length 82 [|LLDP] 16:59:32.458037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.458046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.458059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.458060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03a5 d03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.458061 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.458062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.458063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.458064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.458078 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.458080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.458081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.458086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.458089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.468007 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.468008 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.468009 LLDP, length 82 [|LLDP] 16:59:32.468041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.468050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.468063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.468063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ad 715e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.468065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.468066 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.468067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.468068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.468069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.468084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.468086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.468088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.478005 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.478007 LLDP, length 82 [|LLDP] 16:59:32.478040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.478049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.478050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.478052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.478053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.478054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.478078 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.478085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.478085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03b5 127e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.478087 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.478088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.478091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.478093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.488004 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.488006 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.488007 LLDP, length 82 [|LLDP] 16:59:32.488040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.488049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.488061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.488062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03bc b39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.488063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.488064 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.488065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.488066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.488067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.488082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.488083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.488085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.498002 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.498004 LLDP, length 82 [|LLDP] 16:59:32.498032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.498041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.498053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.498053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03c4 54be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.498055 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.498056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.498057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.498058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.498072 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.498074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.498075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.498081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.498083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.508010 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.508012 LLDP, length 82 [|LLDP] 16:59:32.508042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.508051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.508063 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.508064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03cb f5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.508065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.508066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.508067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.508079 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.508081 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.508082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.508083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.508090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.508092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.518001 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.518003 LLDP, length 82 [|LLDP] 16:59:32.518032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.518041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.518053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.518054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03d3 96fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.518055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.518056 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.518057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.518058 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.518059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.518073 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.518074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.518080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.518082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.528004 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.528005 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.528007 LLDP, length 82 [|LLDP] 16:59:32.528041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.528050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.528051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.528052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.528053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.528075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.528078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.528079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03db 381e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.528081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.528082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.528084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.528086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.538013 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.538021 LLDP, length 82 [|LLDP] 16:59:32.538053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.538064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.538077 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.538078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03e2 d93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.538080 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.538081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.538082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.538083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.538098 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.538100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.538101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.538108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.538110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.548006 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.548007 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.548008 LLDP, length 82 [|LLDP] 16:59:32.548043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.548053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.548065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.548066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03ea 7a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.548067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.548068 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.548069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.548070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.548071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.548085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.548086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.548089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.558013 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.558021 LLDP, length 82 [|LLDP] 16:59:32.558053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.558064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.558065 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.558066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.558067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.558068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.558093 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.558100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.558101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03f2 1b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.558102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.558103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.558106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.558107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.568013 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.568015 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.568016 LLDP, length 82 [|LLDP] 16:59:32.568073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.568084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.568097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.568108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 03f9 bc9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.568110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.568111 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.568112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.568112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.568113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.568129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.568130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.568132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.578011 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.578012 LLDP, length 82 [|LLDP] 16:59:32.578049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.578058 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.578072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.578073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0401 5dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.578074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.578075 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.578076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.578077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.578078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.578094 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.578096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.578102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.578103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.588007 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.588009 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.588010 LLDP, length 82 [|LLDP] 16:59:32.588047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.588056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.588069 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.588070 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0408 fede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.588071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.588072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.588073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.588087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.588089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.588090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.588093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.588095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.598005 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.598007 LLDP, length 82 [|LLDP] 16:59:32.598039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.598049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.598062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.598063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0410 9ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.598064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.598065 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.598066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.598067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.598068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.598083 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.598084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.598090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.598092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.608005 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.608007 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.608008 LLDP, length 82 [|LLDP] 16:59:32.608039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.608049 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.608050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.608051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.608052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.608076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.608079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.608080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0418 411e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.608082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.608083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.608086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.608088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.618006 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.618008 LLDP, length 82 [|LLDP] 16:59:32.618045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.618054 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.618067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.618068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 041f e23e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.618069 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.618070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.618071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.618072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.618087 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.618088 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.618089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.618096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.618098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.628000 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.628001 LLDP, length 82 [|LLDP] 16:59:32.628032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.628040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.628052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.628053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0427 835e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.628054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.628055 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.628056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.628057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.628058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.628072 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.628074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.628079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.628081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.638001 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.638003 LLDP, length 82 [|LLDP] 16:59:32.638036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.638045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.638046 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.638047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.638048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.638049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.638073 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.638080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.638081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 042f 247e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.638082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.638083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.638086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.638088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.648002 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.648003 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.648004 LLDP, length 82 [|LLDP] 16:59:32.648036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.648045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.648058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.648059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0436 c59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.648060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.648061 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.648062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.648063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.648064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.648077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.648079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.648081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.657999 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.658001 LLDP, length 82 [|LLDP] 16:59:32.658029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.658037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.658049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.658050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 043e 66be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.658052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.658053 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.658054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.658055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.658056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.658070 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.658072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.658077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.658079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.667998 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.668000 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.668001 LLDP, length 82 [|LLDP] 16:59:32.668030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.668039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.668052 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.668053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0446 07de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.668054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.668055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.668056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.668068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.668070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.668071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.668074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.668076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.678012 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.678013 LLDP, length 82 [|LLDP] 16:59:32.678053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.678064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.678078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.678079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 044d a8fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.678081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.678082 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.678083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.678084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.678085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.678100 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.678102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.678108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.678110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.688001 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.688003 LLDP, length 82 [|LLDP] 16:59:32.688035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.688044 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.688045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.688046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.688047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.688070 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.688071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.688079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.688080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0455 4a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.688081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.688082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.688085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.688087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.697999 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.698001 LLDP, length 82 [|LLDP] 16:59:32.698030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.698038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.698050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.698051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 045c eb3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.698052 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.698054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.698055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.698056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.698070 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.698071 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.698072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.698079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.698080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.707996 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.707998 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.707998 LLDP, length 82 [|LLDP] 16:59:32.708027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.708035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.708047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.708048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0464 8c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.708050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.708051 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.708052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.708053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.708054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.708067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.708068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.708070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.718009 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.718011 LLDP, length 82 [|LLDP] 16:59:32.718050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.718060 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.718061 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.718062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.718063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.718064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.718091 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.718099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.718100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 046c 2d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.718101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.718102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.718105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.718107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.728000 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.728002 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.728003 LLDP, length 82 [|LLDP] 16:59:32.728031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.728040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.728053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.728053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0473 ce9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.728055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.728056 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.728057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.728058 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.728059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.728074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.728075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.728078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.738007 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.738008 LLDP, length 82 [|LLDP] 16:59:32.738052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.738062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.738075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.738075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 047b 6fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.738077 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.738078 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.738079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.738080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.738081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.738097 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.738099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.738106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.738108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.747998 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.748000 LLDP, length 82 [|LLDP] 16:59:32.748031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.748040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.748052 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.748053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0483 10de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.748054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.748056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.748057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.748069 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.748071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.748072 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.748073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.748080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.748082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.757998 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.758000 LLDP, length 82 [|LLDP] 16:59:32.758029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.758038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.758050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.758051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 048a b1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.758053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.758054 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.758055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.758056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.758057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.758070 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.758072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.758077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.758079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.768005 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.768007 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.768008 LLDP, length 82 [|LLDP] 16:59:32.768041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.768054 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.768056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.768057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.768058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.768084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.768089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.768089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0492 531e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.768091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.768092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.768094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.768096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.778013 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.778015 LLDP, length 82 [|LLDP] 16:59:32.778057 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.778068 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.778082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.778083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0499 f43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.778085 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.778086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.778087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.778088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.778106 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.778108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.778108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.778116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.778118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.788003 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.788005 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.788012 LLDP, length 82 [|LLDP] 16:59:32.788047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.788055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.788068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.788070 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04a1 955e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.788071 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.788072 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.788073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.788074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.788075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.788091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.788092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.788095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.798002 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.798004 LLDP, length 82 [|LLDP] 16:59:32.798041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.798049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.798050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.798051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.798052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.798054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.798079 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.798087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.798088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04a9 367e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.798090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.798091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.798094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.798095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.808009 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.808017 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.808018 LLDP, length 82 [|LLDP] 16:59:32.808051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.808063 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.808077 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.808078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04b0 d79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.808079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.808080 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.808081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.808082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.808083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.808108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.808109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.808112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.818002 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.818004 LLDP, length 82 [|LLDP] 16:59:32.818040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.818048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.818061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.818062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04b8 78be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.818064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.818065 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.818066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.818067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.818068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.818083 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.818085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.818091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.818093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.828002 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.828004 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.828011 LLDP, length 82 [|LLDP] 16:59:32.828053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.828062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.828077 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.828077 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c0 19de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.828079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.828080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.828081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.828094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.828096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.828097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.828111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.828113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.838001 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.838003 LLDP, length 82 [|LLDP] 16:59:32.838039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.838048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.838061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.838062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04c7 bafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.838064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.838064 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.838065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.838066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.838068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.838083 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.838085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.838092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.838093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.848001 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.848003 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.848011 LLDP, length 82 [|LLDP] 16:59:32.848046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.848055 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.848056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.848057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.848058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.848083 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.848087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.848088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04cf 5c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.848090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.848091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.848094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.848096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.858003 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.858005 LLDP, length 82 [|LLDP] 16:59:32.858041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.858050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.858063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.858064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04d6 fd3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.858066 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.858067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.858068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.858070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.858085 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.858086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.858087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.858094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.858096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.868000 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.868001 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.868002 LLDP, length 82 [|LLDP] 16:59:32.868039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.868050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.868063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.868064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04de 9e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.868065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.868066 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.868067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.868068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.868069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.868084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.868086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.868088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.877999 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.878001 LLDP, length 82 [|LLDP] 16:59:32.878032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.878039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.878040 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.878041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.878043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.878044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.878068 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.878076 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.878077 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04e6 3f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.878078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.878079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.878082 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.878083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.887996 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.887998 LLDP, length 82 [|LLDP] 16:59:32.888029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.888036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.888049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.888050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04ed e09e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.888052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.888053 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.888054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.888054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.888056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.888070 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.888071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.888076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.888078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.897999 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.898001 LLDP, length 82 [|LLDP] 16:59:32.898035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.898042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.898055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.898056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04f5 81be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.898058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.898059 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.898060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.898061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.898062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.898076 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.898078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.898092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.898094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.908009 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.908018 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.908019 LLDP, length 82 [|LLDP] 16:59:32.908058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.908069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.908082 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.908083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 04fd 22de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.908084 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.908085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.908086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.908114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.908116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.908117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.908120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.908122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.917996 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.917998 LLDP, length 82 [|LLDP] 16:59:32.918032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.918040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.918053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.918054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0504 c3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.918056 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.918057 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.918058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.918059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.918060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.918075 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.918076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.918083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.918085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.927995 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.927996 LLDP, length 82 [|LLDP] 16:59:32.928043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.928051 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.928052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.928053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.928054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.928078 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.928080 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.928088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.928089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 050c 651e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.928091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.928092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.928094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.928097 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.937997 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.937999 LLDP, length 82 [|LLDP] 16:59:32.938026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.938034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.938047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.938048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0514 063e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.938050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.938051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.938052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.938053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.938068 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.938069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.938070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.938077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.938078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.947995 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.947997 LLDP, length 82 [|LLDP] 16:59:32.948031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.948039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.948052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.948053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 051b a75e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.948054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.948055 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.948056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.948057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.948058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.948073 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.948075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.948081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.948083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.958002 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.958010 LLDP, length 82 [|LLDP] 16:59:32.958044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.958054 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.958055 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.958056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.958057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.958058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.958085 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.958093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.958094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0523 487e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.958096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.958097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.958099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.958102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.967998 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.968000 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.968001 LLDP, length 82 [|LLDP] 16:59:32.968037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.968046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.968059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.968060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 052a e99e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.968061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.968062 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.968063 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.968064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.968065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.968080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.968081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.968083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.977995 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.977997 LLDP, length 82 [|LLDP] 16:59:32.978028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.978036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.978049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.978050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0532 8abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.978051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.978052 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.978053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.978054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.978055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.978069 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.978071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.978077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.978079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.987993 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.987995 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.987996 LLDP, length 82 [|LLDP] 16:59:32.988029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.988038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.988050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.988051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 053a 2bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.988053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.988054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.988055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.988068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.988069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.988070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.988073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.988075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:32.997995 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.997996 LLDP, length 82 [|LLDP] 16:59:32.998030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:32.998038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:32.998051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:32.998052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0541 ccfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:32.998054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:32.998055 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:32.998056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:32.998057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:32.998058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.998073 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:32.998075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:32.998081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:32.998083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.007998 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.008000 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.008001 LLDP, length 82 [|LLDP] 16:59:33.008035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.008045 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.008046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.008047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.008048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.008071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.008074 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.008075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0549 6e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.008077 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.008078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.008080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.008082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.017992 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.017994 LLDP, length 82 [|LLDP] 16:59:33.018025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.018032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.018045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.018046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0551 0f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.018047 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.018048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.018049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.018051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.018065 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.018067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.018068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.018074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.018077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.027990 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.027992 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.027993 LLDP, length 82 [|LLDP] 16:59:33.028027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.028036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.028050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.028051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0558 b05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.028052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.028053 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.028054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.028055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.028056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.028070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.028071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.028073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.037993 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.037995 LLDP, length 82 [|LLDP] 16:59:33.038028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.038036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.038037 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.038038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.038039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.038040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.038065 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.038072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.038073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0560 517e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.038075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.038076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.038087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.038090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.047992 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.047993 LLDP, length 82 [|LLDP] 16:59:33.048024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.048032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.048045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.048046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0567 f29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.048047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.048048 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.048049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.048050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.048051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.048066 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.048068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.048074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.048076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.057994 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.057996 LLDP, length 82 [|LLDP] 16:59:33.058032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.058041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.058053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.058054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 056f 93be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.058056 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.058057 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.058058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.058059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.058060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.058084 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.058086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.058092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.058094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.067992 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.067994 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.067995 LLDP, length 82 [|LLDP] 16:59:33.068031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.068040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.068053 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.068053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0577 34de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.068055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.068056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.068057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.068071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.068072 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.068073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.068076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.068078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.077991 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.077993 LLDP, length 82 [|LLDP] 16:59:33.078026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.078035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.078047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.078048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 057e d5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.078050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.078051 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.078052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.078053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.078054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.078068 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.078070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.078075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.078077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.087990 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.087992 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.087993 LLDP, length 82 [|LLDP] 16:59:33.088024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.088033 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.088034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.088035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.088036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.088058 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.088062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.088063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0586 771e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.088064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.088065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.088068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.088070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.097990 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.097991 LLDP, length 82 [|LLDP] 16:59:33.098021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.098029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.098042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.098042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 058e 183e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.098044 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.098045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.098046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.098047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.098061 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.098063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.098064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.098070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.098072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.107990 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.107991 LLDP, length 82 [|LLDP] 16:59:33.108023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.108031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.108044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.108045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0595 b95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.108046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.108048 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.108049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.108050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.108051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.108066 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.108067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.108073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.108075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.118000 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.118008 LLDP, length 82 [|LLDP] 16:59:33.118043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.118052 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.118053 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.118054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.118055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.118056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.118084 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.118091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.118092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 059d 5a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.118094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.118095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.118098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.118100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.127991 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.127994 LLDP, length 82 [|LLDP] 16:59:33.128025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.128034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.128046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.128047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05a4 fb9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.128049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.128050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.128051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.128052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.128053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.128068 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.128070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.128076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.128078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.137990 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.137992 LLDP, length 82 [|LLDP] 16:59:33.138026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.138034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.138047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.138048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05ac 9cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.138049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.138051 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.138051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.138053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.138054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.138069 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.138070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.138076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.138078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.147991 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.147993 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.147994 LLDP, length 82 [|LLDP] 16:59:33.148031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.148039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.148051 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.148052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05b4 3dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.148054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.148055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.148056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.148070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.148072 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.148073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.148075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.148077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.157989 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.157990 LLDP, length 82 [|LLDP] 16:59:33.158023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.158031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.158043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.158044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05bb defe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.158045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.158046 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.158047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.158049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.158050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.158065 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.158066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.158072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.158074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.167991 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.167993 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.167994 LLDP, length 82 [|LLDP] 16:59:33.168032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.168041 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.168042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.168043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.168044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.168068 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.168072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.168073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05c3 801e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.168075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.168076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.168078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.168080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.177991 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.177992 LLDP, length 82 [|LLDP] 16:59:33.178023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.178031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.178044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.178045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05cb 213e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.178047 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.178048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.178049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.178050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.178064 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.178066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.178067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.178072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.178075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.187992 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.187993 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.187994 LLDP, length 82 [|LLDP] 16:59:33.188027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.188035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.188048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.188049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05d2 c25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.188050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.188051 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.188052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.188053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.188054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.188068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.188069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.188072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.197988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.197990 LLDP, length 82 [|LLDP] 16:59:33.198020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.198028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.198029 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.198030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.198031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.198032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.198056 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.198063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.198064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05da 637e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.198065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.198066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.198069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.198071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.207989 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.207991 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.207992 LLDP, length 82 [|LLDP] 16:59:33.208027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.208035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.208047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.208048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05e2 049e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.208050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.208051 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.208052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.208053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.208054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.208069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.208070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.208072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.217988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.217989 LLDP, length 82 [|LLDP] 16:59:33.218021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.218029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.218042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.218043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05e9 a5be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.218044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.218046 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.218047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.218048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.218049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.218063 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.218065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.218071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.218073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.227987 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.227989 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.227990 LLDP, length 82 [|LLDP] 16:59:33.228038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.228047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.228061 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.228061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05f1 46de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.228063 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.228064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.228065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.228079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.228080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.228081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.228084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.228086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.237987 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.237989 LLDP, length 82 [|LLDP] 16:59:33.238021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.238029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.238042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.238043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 05f8 e7fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.238044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.238045 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.238046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.238047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.238048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.238063 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.238065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.238071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.238072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.247987 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.247989 LLDP, length 82 [|LLDP] 16:59:33.248021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.248028 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.248029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.248030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.248031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.248055 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.248057 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.248063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.248064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0600 891e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.248066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.248067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.248069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.248072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.257985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.257987 LLDP, length 82 [|LLDP] 16:59:33.258020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.258029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.258041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.258042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0608 2a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.258044 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.258045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.258046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.258047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.258061 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.258063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.258064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.258070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.258080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.267989 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.267991 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.267998 LLDP, length 82 [|LLDP] 16:59:33.268031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.268039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.268052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.268053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 060f cb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.268054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.268055 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.268056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.268057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.268058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.268074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.268075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.268078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.277988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.277990 LLDP, length 82 [|LLDP] 16:59:33.278020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.278029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.278030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.278031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.278032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.278033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.278060 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.278068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.278069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0617 6c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.278070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.278071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.278074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.278076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.287988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.287990 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.287991 LLDP, length 82 [|LLDP] 16:59:33.288029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.288038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.288050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.288051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 061f 0d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.288053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.288054 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.288055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.288056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.288057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.288071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.288072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.288075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.297998 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.298006 LLDP, length 82 [|LLDP] 16:59:33.298038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.298047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.298061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.298061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0626 aebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.298063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.298064 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.298066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.298067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.298068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.298084 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.298086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.298092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.298094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.307988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.307990 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.307991 LLDP, length 82 [|LLDP] 16:59:33.308026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.308035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.308048 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.308049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 062e 4fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.308050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.308051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.308052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.308066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.308068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.308069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.308071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.308073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.317991 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.317993 LLDP, length 82 [|LLDP] 16:59:33.318033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.318041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.318054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.318055 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0635 f0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.318057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.318058 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.318059 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.318060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.318061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.318077 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.318079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.318086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.318088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.327984 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.327986 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.327987 LLDP, length 82 [|LLDP] 16:59:33.328021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.328029 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.328030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.328031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.328032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.328068 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.328072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.328073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 063d 921e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.328074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.328075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.328078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.328080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.337985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.337987 LLDP, length 82 [|LLDP] 16:59:33.338018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.338026 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.338039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.338040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0645 333e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.338041 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.338042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.338043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.338044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.338058 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.338059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.338060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.338066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.338068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.347985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.347987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.347987 LLDP, length 82 [|LLDP] 16:59:33.348024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.348032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.348044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.348045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 064c d45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.348047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.348048 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.348049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.348050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.348051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.348066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.348067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.348070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.357985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.357986 LLDP, length 82 [|LLDP] 16:59:33.358016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.358024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.358025 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.358026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.358027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.358028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.358052 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.358059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.358060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0654 757e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.358061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.358063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.358066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.358067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.367988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.367990 LLDP, length 82 [|LLDP] 16:59:33.368022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.368030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.368043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.368044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 065c 169e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.368045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.368046 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.368047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.368048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.368049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.368063 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.368065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.368070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.368072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.377986 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.377988 LLDP, length 82 [|LLDP] 16:59:33.378024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.378033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.378045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.378046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0663 b7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.378048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.378049 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.378050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.378051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.378052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.378068 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.378069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.378076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.378078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.387984 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.387986 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.387987 LLDP, length 82 [|LLDP] 16:59:33.388021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.388028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.388041 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.388042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 066b 58de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.388043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.388044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.388045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.388058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.388059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.388060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.388063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.388065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.397983 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.397985 LLDP, length 82 [|LLDP] 16:59:33.398016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.398023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.398036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.398037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0672 f9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.398038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.398039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.398040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.398041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.398042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.398056 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.398058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.398064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.398066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.407999 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.408001 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.408002 LLDP, length 82 [|LLDP] 16:59:33.408047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.408058 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.408059 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.408060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.408061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.408088 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.408093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.408095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 067a 9b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.408097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.408115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.408118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.408120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.418038 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.418041 LLDP, length 82 [|LLDP] 16:59:33.418107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.418120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.418134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.418135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0682 3c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.418137 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.418139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.418140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.418141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.418168 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.418171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.418172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.418183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.418186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.428024 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.428026 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.428027 LLDP, length 82 [|LLDP] 16:59:33.428088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.428110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.428126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.428127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0689 dd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.428129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.428130 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.428131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.428132 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.428133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.428156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.428157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.428160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.437989 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.437991 LLDP, length 82 [|LLDP] 16:59:33.438030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.438039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.438040 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.438041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.438042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.438044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.438070 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.438078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.438079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0691 7e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.438081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.438082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.438084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.438086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.447986 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.447988 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.447989 LLDP, length 82 [|LLDP] 16:59:33.448026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.448036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.448049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.448050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0699 1f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.448051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.448052 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.448053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.448054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.448055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.448070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.448072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.448074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.457985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.457987 LLDP, length 82 [|LLDP] 16:59:33.458022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.458031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.458043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.458044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a0 c0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.458046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.458047 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.458048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.458049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.458050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.458065 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.458067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.458074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.458076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.467983 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.467984 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.467985 LLDP, length 82 [|LLDP] 16:59:33.468022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.468030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.468043 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.468044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06a8 61de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.468045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.468046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.468047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.468060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.468062 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.468063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.468066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.468068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.477983 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.477985 LLDP, length 82 [|LLDP] 16:59:33.478020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.478029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.478041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.478042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b0 02fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.478044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.478045 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.478046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.478047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.478048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.478063 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.478064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.478070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.478072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.487992 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.488001 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.488002 LLDP, length 82 [|LLDP] 16:59:33.488038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.488047 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.488048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.488049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.488050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.488075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.488079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.488080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06b7 a41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.488082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.488083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.488085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.488087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.497985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.497987 LLDP, length 82 [|LLDP] 16:59:33.498023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.498032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.498046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.498047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06bf 453e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.498048 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.498049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.498050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.498051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.498065 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.498067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.498068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.498075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.498077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.507981 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.507982 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.507983 LLDP, length 82 [|LLDP] 16:59:33.508017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.508025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.508037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.508038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06c6 e65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.508039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.508040 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.508042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.508042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.508043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.508058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.508059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.508061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.517980 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.517982 LLDP, length 82 [|LLDP] 16:59:33.518012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.518020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.518021 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.518022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.518023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.518024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.518049 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.518056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.518057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ce 877e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.518058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.518059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.518062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.518064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.527979 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.527981 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.527982 LLDP, length 82 [|LLDP] 16:59:33.528017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.528024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.528036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.528037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06d6 289e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.528038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.528039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.528041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.528042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.528042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.528058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.528059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.528061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.537980 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.537982 LLDP, length 82 [|LLDP] 16:59:33.538015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.538022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.538035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.538036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06dd c9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.538037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.538039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.538040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.538041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.538042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.538056 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.538058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.538064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.538066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.547980 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.547982 LLDP, length 82 [|LLDP] 16:59:33.548013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.548020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.548032 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.548033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06e5 6ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.548035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.548035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.548036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.548049 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.548051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.548052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.548053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.548060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.548062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.557988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.557990 LLDP, length 82 [|LLDP] 16:59:33.558028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.558037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.558051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.558052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06ed 0bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.558053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.558054 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.558055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.558056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.558057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.558073 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.558075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.558090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.558092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.567988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.567997 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.567998 LLDP, length 82 [|LLDP] 16:59:33.568036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.568047 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.568048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.568049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.568050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.568075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.568079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.568080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06f4 ad1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.568081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.568082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.568085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.568087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.577984 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.577986 LLDP, length 82 [|LLDP] 16:59:33.578022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.578031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.578044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.578045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 06fc 4e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.578047 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.578048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.578049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.578050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.578064 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.578066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.578067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.578074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.578085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.587985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.587987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.587988 LLDP, length 82 [|LLDP] 16:59:33.588031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.588040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.588053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.588054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0703 ef5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.588055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.588056 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.588057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.588058 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.588059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.588075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.588076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.588079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.597985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.597987 LLDP, length 82 [|LLDP] 16:59:33.598024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.598032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.598033 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.598034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.598035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.598036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.598060 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.598068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.598069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 070b 907e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.598070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.598071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.598074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.598076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.607980 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.607981 LLDP, length 82 [|LLDP] 16:59:33.608011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.608020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.608033 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.608033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0713 319e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.608035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.608036 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.608037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.608038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.608039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.608054 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.608056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.608061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.608064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.617978 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.617979 LLDP, length 82 [|LLDP] 16:59:33.618009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.618017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.618030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.618031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 071a d2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.618032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.618034 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.618035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.618036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.618037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.618053 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.618054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.618060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.618062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.627980 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.627982 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.627983 LLDP, length 82 [|LLDP] 16:59:33.628031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.628037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.628050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.628052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0722 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.628053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.628054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.628055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.628069 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.628071 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.628072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.628075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.628077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.637999 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.638001 LLDP, length 82 [|LLDP] 16:59:33.638033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.638042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.638056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.638057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 072a 14fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.638059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.638060 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.638061 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.638062 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.638063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.638085 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.638087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.638094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.638096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.647986 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.647987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.647988 LLDP, length 82 [|LLDP] 16:59:33.648023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.648030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.648031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.648032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.648033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.648059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.648063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.648064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0731 b61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.648065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.648067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.648069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.648071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.657980 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.657982 LLDP, length 82 [|LLDP] 16:59:33.658017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.658025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.658037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.658038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0739 573e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.658039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.658040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.658041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.658043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.658058 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.658059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.658060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.658067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.658069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.667983 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.667985 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.667986 LLDP, length 82 [|LLDP] 16:59:33.668021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.668029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.668041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.668042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0740 f85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.668044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.668045 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.668045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.668046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.668047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.668062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.668063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.668066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.677988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.677997 LLDP, length 82 [|LLDP] 16:59:33.678031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.678041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.678042 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.678043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.678044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.678045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.678072 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.678080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.678081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0748 997e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.678083 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.678084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.678087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.678089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.687982 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.687983 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.687991 LLDP, length 82 [|LLDP] 16:59:33.688025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.688034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.688047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.688048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0750 3a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.688049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.688050 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.688051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.688052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.688053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.688069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.688070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.688073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.697982 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.697984 LLDP, length 82 [|LLDP] 16:59:33.698022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.698030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.698043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.698044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0757 dbbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.698045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.698046 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.698047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.698048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.698049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.698066 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.698067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.698074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.698076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.707978 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.707980 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.707981 LLDP, length 82 [|LLDP] 16:59:33.708014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.708022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.708034 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.708035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 075f 7cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.708037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.708038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.708038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.708051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.708053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.708054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.708057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.708058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.717975 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.717977 LLDP, length 82 [|LLDP] 16:59:33.718006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.718014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.718026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.718027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0767 1dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.718028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.718029 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.718030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.718031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.718032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.718046 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.718048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.718055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.718057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.727976 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.727977 LLDP, length 82 [|LLDP] 16:59:33.728008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.728016 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.728017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.728018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.728018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.728041 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.728042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.728049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.728050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 076e bf1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.728051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.728052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.728055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.728056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.737975 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.737978 LLDP, length 82 [|LLDP] 16:59:33.738009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.738016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.738028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.738029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0776 603e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.738031 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.738032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.738033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.738033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.738047 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.738048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.738049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.738056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.738057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.747976 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.747978 LLDP, length 82 [|LLDP] 16:59:33.748007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.748014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.748027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.748028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 077e 015e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.748029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.748030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.748032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.748033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.748034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.748047 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.748049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.748055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.748057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.757975 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.757976 LLDP, length 82 [|LLDP] 16:59:33.758006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.758014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.758015 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.758016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.758017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.758017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.758042 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.758048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.758049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0785 a27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.758050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.758052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.758055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.758056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.767973 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.767975 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.767976 LLDP, length 82 [|LLDP] 16:59:33.768010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.768017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.768030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.768031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 078d 439e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.768032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.768033 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.768034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.768035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.768036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.768050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.768051 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.768054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.777975 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.777977 LLDP, length 82 [|LLDP] 16:59:33.778010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.778019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.778031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.778032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0794 e4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.778034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.778035 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.778036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.778037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.778038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.778053 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.778055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.778061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.778062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.787974 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.787976 LLDP, length 82 [|LLDP] 16:59:33.788008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.788016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.788027 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.788028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 079c 85de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.788038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.788039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.788040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.788054 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.788055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.788056 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.788057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.788065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.788066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.797976 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.797977 LLDP, length 82 [|LLDP] 16:59:33.798021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.798032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.798045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.798046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07a4 26fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.798047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.798048 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.798049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.798050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.798051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.798067 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.798069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.798074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.798077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.807985 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.807987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.807994 LLDP, length 82 [|LLDP] 16:59:33.808029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.808041 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.808042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.808042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.808044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.808067 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.808071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.808072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ab c81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.808074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.808075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.808077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.808079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.817983 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.817984 LLDP, length 82 [|LLDP] 16:59:33.818018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.818028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.818040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.818041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07b3 693e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.818043 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.818044 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.818045 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.818046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.818060 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.818062 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.818063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.818069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.818071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.827975 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.827976 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.827977 LLDP, length 82 [|LLDP] 16:59:33.828009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.828019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.828032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.828033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07bb 0a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.828034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.828036 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.828037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.828038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.828039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.828053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.828055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.828057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.837975 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.837977 LLDP, length 82 [|LLDP] 16:59:33.838009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.838018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.838019 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.838020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.838021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.838022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.838045 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.838053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.838054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07c2 ab7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.838055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.838056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.838059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.838061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.847974 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.847976 LLDP, length 82 [|LLDP] 16:59:33.848008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.848017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.848029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.848029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ca 4c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.848031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.848032 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.848033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.848034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.848035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.848050 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.848052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.848057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.848059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.857984 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.857992 LLDP, length 82 [|LLDP] 16:59:33.858027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.858037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.858050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.858051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07d1 edbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.858052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.858053 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.858054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.858055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.858056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.858073 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.858074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.858081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.858083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.867981 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.867982 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.867990 LLDP, length 82 [|LLDP] 16:59:33.868024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.868034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.868047 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.868048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07d9 8ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.868049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.868050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.868051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.868066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.868068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.868069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.868071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.868073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.877973 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.877975 LLDP, length 82 [|LLDP] 16:59:33.878008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.878018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.878030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.878030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07e1 2ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.878032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.878033 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.878034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.878035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.878036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.878050 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.878052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.878058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.878059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.887973 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.887975 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.887976 LLDP, length 82 [|LLDP] 16:59:33.888012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.888022 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.888023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.888024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.888025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.888047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.888050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.888051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07e8 d11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.888053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.888054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.888056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.888058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.897974 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.897976 LLDP, length 82 [|LLDP] 16:59:33.898011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.898020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.898039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.898040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f0 723e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.898042 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.898043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.898044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.898045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.898060 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.898062 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.898063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.898069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.898071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.907976 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.907978 LLDP, length 82 [|LLDP] 16:59:33.908014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.908024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.908036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.908037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07f8 135e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.908038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.908039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.908041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.908042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.908042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.908068 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.908069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.908076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.908078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.917981 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.917983 LLDP, length 82 [|LLDP] 16:59:33.918020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.918029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.918030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.918031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.918032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.918033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.918058 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.918065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.918066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 07ff b47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.918067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.918068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.918071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.918073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.927969 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.927971 LLDP, length 82 [|LLDP] 16:59:33.927999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.928007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.928020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.928021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0807 559e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.928022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.928023 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.928025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.928026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.928027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.928041 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.928042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.928048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.928050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.937972 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.937974 LLDP, length 82 [|LLDP] 16:59:33.938006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.938015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.938027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.938027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 080e f6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.938029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.938030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.938031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.938032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.938033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.938047 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.938049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.938054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.938056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.947988 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.947990 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.947991 LLDP, length 82 [|LLDP] 16:59:33.948037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.948051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.948065 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.948066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0816 97de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.948067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.948068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.948069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.948088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.948090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.948091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.948094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.948096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.957993 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.957995 LLDP, length 82 [|LLDP] 16:59:33.958040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.958051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.958064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.958065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 081e 38fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.958067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.958068 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.958069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.958070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.958071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.958092 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.958094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.958102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.958104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.967976 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.967978 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.967979 LLDP, length 82 [|LLDP] 16:59:33.968015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.968024 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.968025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.968026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.968027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.968051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.968055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.968056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0825 da1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.968057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.968058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.968060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.968063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.977977 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.977979 LLDP, length 82 [|LLDP] 16:59:33.978015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.978024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.978037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.978038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 082d 7b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.978039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.978040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.978041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.978042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.978057 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.978059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.978060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.978067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.978069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.987972 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.987974 LLDP, length 82 [|LLDP] 16:59:33.988008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.988016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.988028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.988029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0835 1c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.988031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.988032 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.988033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.988034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.988035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.988049 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.988051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.988056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.988058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:33.997982 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.997984 LLDP, length 82 [|LLDP] 16:59:33.998023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:33.998033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:33.998034 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:33.998035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:33.998036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:33.998037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.998062 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:33.998070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:33.998071 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 083c bd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:33.998072 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:33.998073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:33.998076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:33.998077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.007972 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.007975 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.007982 LLDP, length 82 [|LLDP] 16:59:34.008014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.008023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.008035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.008036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0844 5e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.008038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.008039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.008040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.008041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.008042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.008056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.008057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.008060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.017974 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.017976 LLDP, length 82 [|LLDP] 16:59:34.018013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.018022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.018034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.018035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 084b ffbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.018036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.018037 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.018038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.018039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.018040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.018054 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.018056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.018062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.018064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.027975 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.027977 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.027978 LLDP, length 82 [|LLDP] 16:59:34.028014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.028023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.028036 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.028036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0853 a0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.028038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.028039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.028040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.028053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.028054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.028055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.028057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.028060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.037970 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.037972 LLDP, length 82 [|LLDP] 16:59:34.038006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.038014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.038026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.038027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 085b 41fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.038029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.038030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.038031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.038031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.038032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.038046 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.038048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.038054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.038055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.047974 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.047976 LLDP, length 82 [|LLDP] 16:59:34.048010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.048020 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.048021 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.048022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.048023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.048045 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.048047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.048054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.048055 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0862 e31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.048056 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.048057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.048060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.048061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.057970 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.057971 LLDP, length 82 [|LLDP] 16:59:34.058005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.058014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.058026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.058027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 086a 843e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.058029 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.058030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.058031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.058032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.058045 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.058047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.058048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.058054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.058056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.067973 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.067974 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.067975 LLDP, length 82 [|LLDP] 16:59:34.068007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.068016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.068028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.068029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0872 255e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.068030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.068031 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.068032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.068033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.068034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.068048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.068050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.068052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.077973 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.077975 LLDP, length 82 [|LLDP] 16:59:34.078008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.078016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.078017 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.078018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.078019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.078020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.078044 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.078051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.078051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0879 c67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.078053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.078054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.078056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.078058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.087970 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.087971 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.087973 LLDP, length 82 [|LLDP] 16:59:34.088007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.088017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.088029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.088030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0881 679e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.088032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.088033 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.088034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.088035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.088036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.088050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.088051 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.088053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.097969 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.097972 LLDP, length 82 [|LLDP] 16:59:34.098005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.098015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.098027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.098028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0889 08be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.098029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.098030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.098031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.098032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.098033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.098048 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.098049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.098055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.098057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.107968 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.107969 LLDP, length 82 [|LLDP] 16:59:34.108003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.108012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.108032 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.108033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0890 a9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.108034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.108036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.108037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.108051 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.108052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.108054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.108055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.108062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.108064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.117973 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.117975 LLDP, length 82 [|LLDP] 16:59:34.118014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.118023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.118036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.118037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0898 4afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.118038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.118039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.118040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.118041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.118042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.118058 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.118060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.118066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.118068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.127972 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.127974 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.127981 LLDP, length 82 [|LLDP] 16:59:34.128012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.128022 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.128023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.128024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.128025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.128048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.128051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.128052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 089f ec1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.128054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.128055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.128057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.128059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.137973 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.137974 LLDP, length 82 [|LLDP] 16:59:34.138007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.138017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.138029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.138030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08a7 8d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.138032 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.138033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.138033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.138034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.138048 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.138050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.138051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.138058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.138060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.147970 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.147971 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.147972 LLDP, length 82 [|LLDP] 16:59:34.148009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.148019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.148030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.148031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08af 2e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.148033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.148034 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.148035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.148036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.148037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.148052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.148053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.148056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.157972 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.157974 LLDP, length 82 [|LLDP] 16:59:34.158011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.158020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.158021 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.158022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.158023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.158024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.158048 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.158055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.158055 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08b6 cf7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.158057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.158058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.158060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.158062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.167977 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.167979 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.167986 LLDP, length 82 [|LLDP] 16:59:34.168018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.168027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.168038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.168039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08be 709e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.168041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.168042 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.168042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.168043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.168044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.168059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.168060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.168063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.177971 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.177973 LLDP, length 82 [|LLDP] 16:59:34.178007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.178016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.178028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.178029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08c6 11be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.178031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.178032 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.178032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.178033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.178034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.178049 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.178050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.178057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.178058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.187970 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.187971 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.187972 LLDP, length 82 [|LLDP] 16:59:34.188008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.188018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.188031 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.188031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08cd b2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.188033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.188034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.188035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.188048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.188049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.188050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.188053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.188055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.197966 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.197968 LLDP, length 82 [|LLDP] 16:59:34.198001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.198010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.198022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.198023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08d5 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.198025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.198026 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.198027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.198028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.198029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.198043 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.198045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.198051 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.198053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.207968 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.207970 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.207971 LLDP, length 82 [|LLDP] 16:59:34.207999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.208008 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.208009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.208010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.208011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.208033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.208036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.208037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08dc f51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.208039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.208039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.208042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.208044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.217969 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.217971 LLDP, length 82 [|LLDP] 16:59:34.218005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.218014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.218026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.218027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08e4 963e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.218028 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.218029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.218030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.218031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.218046 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.218047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.218048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.218055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.218056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.227968 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.227970 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.227971 LLDP, length 82 [|LLDP] 16:59:34.228011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.228020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.228033 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.228034 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08ec 375e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.228035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.228036 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.228037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.228038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.228039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.228054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.228055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.228057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.237967 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.237969 LLDP, length 82 [|LLDP] 16:59:34.238002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.238012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.238013 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.238014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.238015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.238016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.238040 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.238046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.238047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08f3 d87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.238049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.238050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.238052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.238054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.247970 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.247972 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.247973 LLDP, length 82 [|LLDP] 16:59:34.248008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.248019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.248031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.248032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 08fb 799e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.248033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.248034 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.248035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.248036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.248037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.248051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.248052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.248055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.257967 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.257968 LLDP, length 82 [|LLDP] 16:59:34.258002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.258012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.258024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.258025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0903 1abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.258026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.258027 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.258028 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.258029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.258030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.258046 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.258047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.258053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.258055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.267965 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.267967 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.267968 LLDP, length 82 [|LLDP] 16:59:34.268004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.268014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.268026 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.268027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 090a bbde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.268028 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.268029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.268030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.268043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.268045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.268046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.268048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.268050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.277965 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.277967 LLDP, length 82 [|LLDP] 16:59:34.277999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.278008 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.278020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.278021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0912 5cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.278022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.278023 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.278024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.278026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.278027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.278041 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.278043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.278049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.278051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.287965 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.287967 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.287968 LLDP, length 82 [|LLDP] 16:59:34.288004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.288013 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.288014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.288015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.288016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.288038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.288042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.288043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0919 fe1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.288044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.288045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.288047 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.288049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.297964 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.297966 LLDP, length 82 [|LLDP] 16:59:34.297999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.298008 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.298020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.298021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0921 9f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.298022 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.298023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.298024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.298025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.298039 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.298041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.298042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.298049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.298051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.307968 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.307970 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.307977 LLDP, length 82 [|LLDP] 16:59:34.308014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.308024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.308036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.308037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0929 405e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.308038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.308039 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.308041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.308042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.308043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.308059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.308060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.308064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.317966 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.317968 LLDP, length 82 [|LLDP] 16:59:34.318001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.318010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.318011 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.318012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.318013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.318014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.318038 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.318046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.318047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0930 e17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.318048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.318049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.318052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.318054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.327965 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.327967 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.327968 LLDP, length 82 [|LLDP] 16:59:34.328008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.328018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.328030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.328031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0938 829e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.328033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.328034 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.328035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.328036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.328037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.328065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.328066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.328068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.337968 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.337970 LLDP, length 82 [|LLDP] 16:59:34.338005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.338014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.338026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.338027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0940 23be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.338028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.338029 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.338030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.338032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.338033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.338049 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.338050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.338057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.338059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.347965 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.347967 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.347968 LLDP, length 82 [|LLDP] 16:59:34.348004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.348014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.348027 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.348028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0947 c4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.348029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.348031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.348032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.348044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.348046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.348047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.348050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.348051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.357965 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.357967 LLDP, length 82 [|LLDP] 16:59:34.358007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.358016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.358029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.358030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 094f 65fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.358032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.358033 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.358034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.358035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.358036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.358052 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.358054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.358061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.358063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.367967 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.367969 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.367970 LLDP, length 82 [|LLDP] 16:59:34.368007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.368018 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.368019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.368020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.368021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.368044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.368047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.368048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0957 071e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.368050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.368051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.368054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.368055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.377964 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.377966 LLDP, length 82 [|LLDP] 16:59:34.378003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.378013 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.378025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.378026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 095e a83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.378028 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.378029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.378030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.378031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.378046 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.378048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.378048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.378055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.378057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.387964 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.387966 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.387967 LLDP, length 82 [|LLDP] 16:59:34.388004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.388014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.388026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.388027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0966 495e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.388028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.388030 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.388031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.388032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.388033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.388046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.388047 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.388050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.397965 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.397967 LLDP, length 82 [|LLDP] 16:59:34.398000 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.398010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.398011 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.398012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.398013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.398014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.398039 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.398046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.398047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 096d ea7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.398048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.398049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.398052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.398054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.407964 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.407966 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.407967 LLDP, length 82 [|LLDP] 16:59:34.407997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.408006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.408018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.408019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0975 8b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.408020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.408021 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.408022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.408023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.408024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.408038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.408039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.408041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.417962 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.417964 LLDP, length 82 [|LLDP] 16:59:34.417998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.418007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.418019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.418020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 097d 2cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.418021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.418022 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.418023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.418024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.418025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.418039 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.418041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.418048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.418049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.427961 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.427963 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.427964 LLDP, length 82 [|LLDP] 16:59:34.428001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.428010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.428022 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.428023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0984 cdde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.428024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.428025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.428026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.428039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.428041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.428042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.428044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.428046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.437962 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.437964 LLDP, length 82 [|LLDP] 16:59:34.438000 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.438009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.438029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.438030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 098c 6efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.438032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.438033 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.438033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.438035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.438036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.438051 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.438053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.438059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.438061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.447961 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.447963 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.447965 LLDP, length 82 [|LLDP] 16:59:34.448000 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.448010 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.448011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.448012 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.448013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.448035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.448039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.448040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0994 101e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.448041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.448042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.448045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.448047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.457959 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.457960 LLDP, length 82 [|LLDP] 16:59:34.458002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.458011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.458023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.458024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 099b b13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.458026 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.458027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.458028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.458029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.458044 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.458045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.458046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.458053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.458055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.467960 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.467961 LLDP, length 82 [|LLDP] 16:59:34.467994 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.468003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.468016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.468017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09a3 525e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.468018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.468019 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.468020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.468021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.468022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.468036 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.468038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.468043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.468045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.477959 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.477961 LLDP, length 82 [|LLDP] 16:59:34.477993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.478003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.478004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.478005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.478006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.478007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.478030 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.478037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.478038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09aa f37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.478039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.478040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.478043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.478045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.487960 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.487962 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.487963 LLDP, length 82 [|LLDP] 16:59:34.487998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.488008 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.488020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.488033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09b2 949e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.488035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.488036 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.488037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.488038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.488039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.488053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.488054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.488057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.497979 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.497987 LLDP, length 82 [|LLDP] 16:59:34.498023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.498036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.498051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.498052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ba 35be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.498053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.498054 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.498055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.498057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.498058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.498082 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.498084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.498091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.498093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.507957 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.507959 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.507960 LLDP, length 82 [|LLDP] 16:59:34.507993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.508002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.508014 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.508015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09c1 d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.508017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.508018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.508019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.508033 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.508035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.508036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.508038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.508041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.517956 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.517957 LLDP, length 82 [|LLDP] 16:59:34.517987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.517996 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.518008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.518009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09c9 77fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.518011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.518012 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.518013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.518014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.518015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.518029 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.518031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.518036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.518038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.527955 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.527956 LLDP, length 82 [|LLDP] 16:59:34.527985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.527993 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.527994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.527995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.527996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.528017 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.528019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.528025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.528026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09d1 191e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.528028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.528029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.528031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.528032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.537959 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.537961 LLDP, length 82 [|LLDP] 16:59:34.537993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.538001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.538014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.538015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09d8 ba3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.538016 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.538018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.538019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.538020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.538034 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.538036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.538037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.538043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.538044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.547958 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.547960 LLDP, length 82 [|LLDP] 16:59:34.547993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.548002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.548015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.548016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e0 5b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.548017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.548018 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.548019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.548020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.548021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.548036 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.548037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.548043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.548045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.557955 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.557957 LLDP, length 82 [|LLDP] 16:59:34.557985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.557995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.557996 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.557997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.557998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.557999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.558022 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.558028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.558029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09e7 fc7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.558030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.558031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.558034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.558036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.567970 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.567978 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.567979 LLDP, length 82 [|LLDP] 16:59:34.568015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.568027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.568041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.568042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09ef 9d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.568043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.568044 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.568046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.568047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.568048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.568063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.568064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.568066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.577964 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.577965 LLDP, length 82 [|LLDP] 16:59:34.578004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.578015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.578028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.578028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09f7 3ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.578030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.578031 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.578032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.578033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.578034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.578050 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.578052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.578058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.578060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.587956 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.587958 LLDP, length 82 [|LLDP] 16:59:34.587989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.587998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.588010 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.588011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 09fe dfde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.588013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.588014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.588015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.588027 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.588029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.588030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.588031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.588038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.588040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.597956 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.597958 LLDP, length 82 [|LLDP] 16:59:34.597989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.597997 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.598009 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.598010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a06 80fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.598012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.598013 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.598014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.598015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.598016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.598030 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.598032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.598037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.598039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.607955 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.607957 LLDP, length 82 [|LLDP] 16:59:34.607986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.607995 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.607996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.607997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.607998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.608019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.608021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.608027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.608028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a0e 221e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.608029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.608030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.608033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.608034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.617952 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.617954 LLDP, length 82 [|LLDP] 16:59:34.617983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.617992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.618005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.618006 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a15 c33e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.618007 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.618008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.618009 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.618010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.618024 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.618025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.618026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.618032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.618034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.627953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.627954 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.627955 LLDP, length 82 [|LLDP] 16:59:34.627989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.627997 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.628009 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.628010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a1d 645e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.628012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.628013 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.628014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.628015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.628016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.628030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.628031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.628033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.637951 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.637953 LLDP, length 82 [|LLDP] 16:59:34.637982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.637990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.637991 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.637992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.637993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.637994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.638017 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.638023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.638024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a25 057e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.638025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.638026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.638029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.638031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.647953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.647955 LLDP, length 82 [|LLDP] 16:59:34.647987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.647996 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.648008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.648009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a2c a69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.648010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.648012 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.648013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.648014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.648015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.648029 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.648031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.648037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.648039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.657952 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.657953 LLDP, length 82 [|LLDP] 16:59:34.657978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.657986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.657999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.657999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a34 47be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.658001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.658002 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.658003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.658004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.658005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.658019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.658020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.658025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.658028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.667953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.667954 LLDP, length 82 [|LLDP] 16:59:34.667983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.667990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.668002 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.668003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a3b e8de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.668004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.668005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.668006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.668019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.668020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.668021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.668022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.668029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.668030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.677951 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.677953 LLDP, length 82 [|LLDP] 16:59:34.677982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.677989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.678001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.678002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a43 89fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.678004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.678005 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.678006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.678007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.678008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.678022 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.678024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.678029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.678031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.687950 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.687951 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.687952 LLDP, length 82 [|LLDP] 16:59:34.687983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.687991 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.687992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.687993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.687994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.688015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.688018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.688019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a4b 2b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.688021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.688022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.688024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.688026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.697958 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.697960 LLDP, length 82 [|LLDP] 16:59:34.697996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.698006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.698019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.698020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a52 cc3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.698021 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.698022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.698023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.698025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.698039 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.698041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.698042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.698048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.698050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.707953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.707955 LLDP, length 82 [|LLDP] 16:59:34.707986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.707994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.708007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.708008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a5a 6d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.708009 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.708010 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.708011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.708012 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.708013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.708027 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.708029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.708034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.708036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.717957 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.717958 LLDP, length 82 [|LLDP] 16:59:34.717993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.718002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.718003 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.718004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.718005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.718006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.718030 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.718038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.718039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a62 0e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.718040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.718041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.718044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.718047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.727953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.727954 LLDP, length 82 [|LLDP] 16:59:34.727984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.727992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.728005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.728006 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a69 af9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.728007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.728008 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.728009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.728010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.728012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.728025 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.728027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.728033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.728034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.737950 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.737952 LLDP, length 82 [|LLDP] 16:59:34.737975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.737983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.737995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.737996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a71 50be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.737997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.737998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.737999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.738000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.738001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.738016 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.738018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.738023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.738025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.747957 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.747958 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.747959 LLDP, length 82 [|LLDP] 16:59:34.747994 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.748003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.748015 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.748016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a78 f1de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.748018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.748019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.748020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.748032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.748034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.748035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.748038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.748039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.757956 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.757958 LLDP, length 82 [|LLDP] 16:59:34.757991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.758000 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.758012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.758013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a80 92fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.758015 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.758016 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.758017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.758017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.758018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.758033 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.758035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.758041 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.758043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.767953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.767955 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.767956 LLDP, length 82 [|LLDP] 16:59:34.767990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.767999 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.768000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.768001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.768002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.768025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.768028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.768029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a88 341e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.768031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.768032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.768034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.768036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.777954 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.777956 LLDP, length 82 [|LLDP] 16:59:34.777987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.777998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.778010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.778011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a8f d53e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.778012 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.778013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.778014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.778015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.778029 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.778031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.778032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.778038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.778040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.787952 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.787953 LLDP, length 82 [|LLDP] 16:59:34.787984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.787993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.788006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.788007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a97 765e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.788008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.788009 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.788010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.788011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.788012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.788027 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.788029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.788034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.788036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.797953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.797954 LLDP, length 82 [|LLDP] 16:59:34.797987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.797996 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.797996 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.797997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.797998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.797999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.798023 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.798031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.798031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0a9f 177e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.798033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.798034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.798036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.798038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.807960 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.807962 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.807963 LLDP, length 82 [|LLDP] 16:59:34.807999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.808009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.808022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.808023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aa6 b89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.808024 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.808025 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.808026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.808028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.808029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.808044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.808045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.808048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.817957 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.817959 LLDP, length 82 [|LLDP] 16:59:34.817993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.818003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.818015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.818016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aae 59be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.818018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.818019 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.818020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.818021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.818022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.818037 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.818039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.818045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.818046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.827951 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.827952 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.827953 LLDP, length 82 [|LLDP] 16:59:34.827990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.827999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.828011 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.828012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ab5 fade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.828014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.828015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.828016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.828029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.828031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.828032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.828035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.828037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.837952 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.837954 LLDP, length 82 [|LLDP] 16:59:34.837986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.837995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.838008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.838009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0abd 9bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.838010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.838011 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.838012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.838013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.838014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.838029 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.838030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.838036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.838038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.847952 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.847954 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.847955 LLDP, length 82 [|LLDP] 16:59:34.847990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.847998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.847999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.848000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.848001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.848024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.848028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.848028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ac5 3d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.848030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.848031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.848033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.848036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.857958 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.857960 LLDP, length 82 [|LLDP] 16:59:34.857998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.858009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.858022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.858023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0acc de3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.858024 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.858025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.858026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.858027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.858043 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.858045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.858046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.858053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.858054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.867954 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.867956 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.867957 LLDP, length 82 [|LLDP] 16:59:34.867993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.868004 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.868018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.868019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ad4 7f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.868020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.868021 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.868022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.868023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.868024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.868038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.868039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.868042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.877951 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.877953 LLDP, length 82 [|LLDP] 16:59:34.877985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.877994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.877995 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.877996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.877997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.877998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.878022 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.878029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.878030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0adc 207e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.878032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.878033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.878036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.878038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.887949 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.887951 LLDP, length 82 [|LLDP] 16:59:34.887982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.887992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.888005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.888005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ae3 c19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.888007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.888008 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.888009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.888010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.888011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.888025 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.888027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.888032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.888034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.897951 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.897953 LLDP, length 82 [|LLDP] 16:59:34.897985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.897994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.898006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.898007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0aeb 62be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.898009 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.898010 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.898011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.898011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.898012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.898027 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.898029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.898035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.898036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.907950 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.907951 LLDP, length 82 [|LLDP] 16:59:34.907983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.907993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.908005 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.908006 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0af3 03de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.908007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.908009 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.908009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.908022 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.908024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.908025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.908026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.908033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.908035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.917958 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.917960 LLDP, length 82 [|LLDP] 16:59:34.917999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.918011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.918024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.918025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0afa a4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.918026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.918027 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.918028 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.918029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.918030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.918046 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.918048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.918055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.918057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.927953 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.927955 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.927956 LLDP, length 82 [|LLDP] 16:59:34.927992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.928003 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.928004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.928005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.928006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.928029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.928033 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.928034 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b02 461e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.928035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.928036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.928039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.928040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.937951 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.937953 LLDP, length 82 [|LLDP] 16:59:34.937985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.937994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.938008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.938008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b09 e73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.938010 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.938011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.938012 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.938013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.938027 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.938029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.938030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.938037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.938039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.947948 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.947949 LLDP, length 82 [|LLDP] 16:59:34.947980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.947989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.948002 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.948003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b11 885e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.948004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.948005 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.948006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.948007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.948008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.948023 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.948025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.948031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.948032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.957949 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.957951 LLDP, length 82 [|LLDP] 16:59:34.957984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.957993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.957994 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.957995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.957996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.957997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.958030 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.958037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.958038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b19 297e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.958040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.958041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.958043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.958045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.967951 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.967953 LLDP, length 82 [|LLDP] 16:59:34.967985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.967994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.968007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.968007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b20 ca9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.968009 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.968010 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.968011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.968012 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.968013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.968028 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.968030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.968035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.968038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.977947 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.977949 LLDP, length 82 [|LLDP] 16:59:34.977980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.977989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.978001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.978002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b28 6bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.978003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.978004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.978005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.978006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.978007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.978022 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.978023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.978029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.978031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.987947 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.987949 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.987950 LLDP, length 82 [|LLDP] 16:59:34.987985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.987995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.988007 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.988008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b30 0cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.988010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.988011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.988012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.988024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.988026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.988027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.988029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.988031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:34.997947 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.997949 LLDP, length 82 [|LLDP] 16:59:34.997981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:34.997990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:34.998003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:34.998004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b37 adfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:34.998005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:34.998006 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:34.998007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:34.998008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:34.998009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.998025 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:34.998026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:34.998032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:34.998034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.007946 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.007948 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.007949 LLDP, length 82 [|LLDP] 16:59:35.007983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.007991 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.007992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.007993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.007994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.008016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.008019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.008020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b3f 4f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.008022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.008023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.008025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.008027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.017946 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.017948 LLDP, length 82 [|LLDP] 16:59:35.017980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.017989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.018001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.018002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b46 f03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.018004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.018005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.018006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.018007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.018021 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.018022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.018023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.018030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.018032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.027946 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.027947 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.027948 LLDP, length 82 [|LLDP] 16:59:35.027983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.027992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.028005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.028005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b4e 915e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.028007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.028008 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.028009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.028009 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.028010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.028025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.028026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.028029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.037946 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.037948 LLDP, length 82 [|LLDP] 16:59:35.037980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.037990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.037991 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.037992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.037993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.037994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.038017 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.038024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.038025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b56 327e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.038027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.038028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.038030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.038033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.047947 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.047948 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.047949 LLDP, length 82 [|LLDP] 16:59:35.047977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.047986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.047998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.047999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b5d d39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.048000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.048001 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.048003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.048004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.048005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.048019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.048020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.048022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.057945 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.057946 LLDP, length 82 [|LLDP] 16:59:35.057978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.057987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.057999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.058000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b65 74be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.058001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.058002 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.058003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.058004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.058005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.058019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.058021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.058027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.058029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.067946 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.067948 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.067949 LLDP, length 82 [|LLDP] 16:59:35.067986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.067995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.068007 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.068009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b6d 15de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.068010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.068011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.068012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.068025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.068027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.068028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.068030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.068032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.077945 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.077947 LLDP, length 82 [|LLDP] 16:59:35.077978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.077988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.078000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.078001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b74 b6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.078003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.078004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.078005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.078005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.078006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.078021 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.078022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.078028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.078030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.087945 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.087946 LLDP, length 82 [|LLDP] 16:59:35.087978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.087987 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.087988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.087989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.087990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.088012 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.088014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.088021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.088022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b7c 581e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.088023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.088024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.088026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.088028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.097945 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.097947 LLDP, length 82 [|LLDP] 16:59:35.097979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.097988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.098001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.098001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b83 f93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.098003 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.098004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.098005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.098006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.098019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.098021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.098022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.098028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.098030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.107942 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.107944 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.107945 LLDP, length 82 [|LLDP] 16:59:35.107972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.107980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.107993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.107994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b8b 9a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.107996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.107997 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.107998 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.107999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.108000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.108014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.108015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.108018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.117945 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.117947 LLDP, length 82 [|LLDP] 16:59:35.117978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.117986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.117987 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.117988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.117989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.117990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.118015 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.118022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.118023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b93 3b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.118025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.118026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.118028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.118030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.127943 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.127945 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.127946 LLDP, length 82 [|LLDP] 16:59:35.127979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.127988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.128001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.128002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0b9a dc9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.128004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.128005 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.128006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.128006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.128008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.128022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.128023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.128026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.137944 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.137946 LLDP, length 82 [|LLDP] 16:59:35.137977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.137987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.138000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.138001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ba2 7dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.138002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.138003 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.138004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.138005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.138006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.138020 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.138022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.138027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.138029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.147944 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.147946 LLDP, length 82 [|LLDP] 16:59:35.147977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.147986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.147998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.147999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0baa 1ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.148001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.148002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.148003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.148016 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.148018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.148019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.148020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.148027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.148028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.157943 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.157944 LLDP, length 82 [|LLDP] 16:59:35.157978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.157986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.157999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.158000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bb1 bffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.158001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.158002 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.158003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.158004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.158005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.158029 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.158031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.158038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.158040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.167944 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.167946 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.167947 LLDP, length 82 [|LLDP] 16:59:35.167984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.167993 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.167994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.167995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.167996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.168019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.168023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.168023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bb9 611e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.168025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.168026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.168028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.168031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.177946 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.177948 LLDP, length 82 [|LLDP] 16:59:35.177980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.177990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.178003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.178004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bc1 023e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.178006 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.178007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.178008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.178009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.178024 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.178025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.178026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.178033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.178035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.187941 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.187943 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.187944 LLDP, length 82 [|LLDP] 16:59:35.187979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.187988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.188000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.188001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bc8 a35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.188003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.188004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.188005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.188006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.188007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.188021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.188022 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.188025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.197941 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.197943 LLDP, length 82 [|LLDP] 16:59:35.197975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.197984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.197985 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.197986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.197987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.197988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.198013 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.198020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.198021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd0 447e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.198022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.198023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.198026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.198028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.207948 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.207950 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.207951 LLDP, length 82 [|LLDP] 16:59:35.207985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.207994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.208007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.208008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bd7 e59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.208009 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.208010 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.208012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.208013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.208014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.208028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.208029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.208032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.217941 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.217943 LLDP, length 82 [|LLDP] 16:59:35.217977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.217986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.217998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.217999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bdf 86be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.218000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.218001 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.218002 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.218004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.218004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.218019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.218021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.218027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.218029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.227941 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.227943 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.227944 LLDP, length 82 [|LLDP] 16:59:35.227979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.227988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.228001 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.228002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0be7 27de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.228004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.228005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.228006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.228019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.228021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.228022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.228024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.228026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.237940 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.237942 LLDP, length 82 [|LLDP] 16:59:35.237973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.237983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.237995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.237996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bee c8fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.237997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.237998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.237999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.238000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.238001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.238016 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.238017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.238023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.238025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.247940 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.247942 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.247943 LLDP, length 82 [|LLDP] 16:59:35.247975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.247985 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.247986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.247987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.247988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.248010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.248014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.248014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bf6 6a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.248016 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.248017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.248019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.248021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.257947 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.257948 LLDP, length 82 [|LLDP] 16:59:35.257981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.257989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.258002 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.258003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0bfe 0b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.258004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.258005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.258006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.258007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.258021 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.258023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.258024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.258030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.258032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.267941 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.267943 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.267944 LLDP, length 82 [|LLDP] 16:59:35.267983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.267992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.268005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.268006 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c05 ac5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.268007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.268009 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.268010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.268011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.268012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.268027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.268028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.268031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.277945 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.277947 LLDP, length 82 [|LLDP] 16:59:35.277984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.277994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.277995 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.277996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.277997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.277997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.278022 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.278030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.278031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c0d 4d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.278032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.278033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.278036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.278038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.287940 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.287942 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.287943 LLDP, length 82 [|LLDP] 16:59:35.287978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.287987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.288000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.288001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c14 ee9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.288003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.288004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.288005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.288006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.288007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.288021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.288022 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.288025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.297939 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.297941 LLDP, length 82 [|LLDP] 16:59:35.297974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.297983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.297995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.297996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c1c 8fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.297997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.297998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.297999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.298000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.298001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.298017 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.298018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.298024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.298027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.307936 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.307938 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.307939 LLDP, length 82 [|LLDP] 16:59:35.307973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.307982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.307994 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.307995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c24 30de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.307997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.307998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.307999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.308011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.308013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.308014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.308017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.308019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.317936 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.317938 LLDP, length 82 [|LLDP] 16:59:35.317970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.317978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.317991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.317991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c2b d1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.317993 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.317994 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.317995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.317996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.317997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.318012 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.318013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.318019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.318021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.327942 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.327944 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.327951 LLDP, length 82 [|LLDP] 16:59:35.327981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.327992 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.327993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.327994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.327995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.328029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.328033 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.328034 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c33 731e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.328035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.328036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.328039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.328041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.337939 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.337940 LLDP, length 82 [|LLDP] 16:59:35.337970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.337978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.337991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.337992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c3b 143e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.337993 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.337994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.337995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.337996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.338009 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.338011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.338012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.338019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.338021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.347935 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.347937 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.347938 LLDP, length 82 [|LLDP] 16:59:35.347968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.347976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.347988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.347989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c42 b55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.347991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.347992 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.348005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.348007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.348008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.348022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.348023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.348026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.357959 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.357968 LLDP, length 82 [|LLDP] 16:59:35.358002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.358015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.358016 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.358017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.358018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.358019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.358053 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.358061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.358062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c4a 567e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.358064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.358065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.358067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.358070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.367938 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.367940 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.367941 LLDP, length 82 [|LLDP] 16:59:35.367979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.367988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.368000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.368001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c51 f79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.368003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.368004 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.368005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.368006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.368007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.368022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.368023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.368026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.377948 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.377956 LLDP, length 82 [|LLDP] 16:59:35.377991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.378002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.378014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.378015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c59 98be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.378017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.378018 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.378019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.378019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.378021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.378037 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.378039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.378046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.378047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.387949 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.387950 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.387951 LLDP, length 82 [|LLDP] 16:59:35.387991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.388001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.388013 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.388014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c61 39de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.388016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.388017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.388018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.388032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.388033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.388034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.388037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.388039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.397941 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.397943 LLDP, length 82 [|LLDP] 16:59:35.397976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.397986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.397999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.398000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c68 dafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.398001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.398002 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.398003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.398004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.398005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.398019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.398021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.398027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.398028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.407939 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.407941 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.407942 LLDP, length 82 [|LLDP] 16:59:35.407977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.407986 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.407987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.407988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.407989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.408012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.408015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.408016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c70 7c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.408017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.408018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.408021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.408023 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.417938 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.417939 LLDP, length 82 [|LLDP] 16:59:35.417963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.417973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.417985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.417986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c78 1d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.417987 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.417989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.417989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.417990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.418004 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.418006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.418007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.418013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.418015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.427937 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.427939 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.427940 LLDP, length 82 [|LLDP] 16:59:35.427976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.427985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.427997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.427998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c7f be5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.427999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.428000 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.428001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.428002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.428003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.428018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.428019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.428022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.437937 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.437938 LLDP, length 82 [|LLDP] 16:59:35.437970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.437979 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.437980 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.437981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.437982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.437983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.438007 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.438014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.438015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c87 5f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.438016 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.438017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.438020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.438022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.447939 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.447940 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.447941 LLDP, length 82 [|LLDP] 16:59:35.447977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.447986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.447999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.448000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c8f 009e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.448001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.448003 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.448004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.448005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.448006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.448020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.448021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.448024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.457937 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.457939 LLDP, length 82 [|LLDP] 16:59:35.457971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.457980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.457993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.457994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c96 a1be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.457995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.457996 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.457997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.457998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.457999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.458013 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.458015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.458021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.458023 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.467936 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.467938 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.467939 LLDP, length 82 [|LLDP] 16:59:35.467974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.467983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.467995 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.467996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0c9e 42de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.467997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.467998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.468000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.468012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.468014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.468015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.468018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.468020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.477937 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.477939 LLDP, length 82 [|LLDP] 16:59:35.477974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.477984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.477997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.477997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ca5 e3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.477999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.478000 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.478001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.478002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.478003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.478017 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.478019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.478026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.478028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.487944 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.487945 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.487953 LLDP, length 82 [|LLDP] 16:59:35.487997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.488008 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.488009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.488011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.488012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.488036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.488040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.488041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cad 851e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.488043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.488044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.488046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.488048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.497938 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.497940 LLDP, length 82 [|LLDP] 16:59:35.497975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.497985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.497997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.497998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cb5 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.498000 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.498001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.498002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.498003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.498018 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.498020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.498021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.498027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.498029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.507934 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.507935 LLDP, length 82 [|LLDP] 16:59:35.507965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.507974 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.507986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.507987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cbc c75e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.507988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.507989 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.507990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.507991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.507992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.508006 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.508008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.508013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.508015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.517931 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.517933 LLDP, length 82 [|LLDP] 16:59:35.517966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.517975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.517976 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.517977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.517978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.517979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.518001 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.518008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.518009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cc4 687e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.518010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.518011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.518014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.518016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.527930 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.527932 LLDP, length 82 [|LLDP] 16:59:35.527960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.527968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.527980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.527981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ccc 099e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.527982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.527984 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.527984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.527985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.527986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.528000 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.528001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.528007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.528009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.537932 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.537933 LLDP, length 82 [|LLDP] 16:59:35.537964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.537972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.537984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.537985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cd3 aabe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.537987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.537988 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.537989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.537990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.537991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.538005 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.538007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.538013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.538015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.547930 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.547932 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.547933 LLDP, length 82 [|LLDP] 16:59:35.547965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.547973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.547985 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.547986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cdb 4bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.547988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.547989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.547990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.548003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.548005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.548006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.548008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.548010 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.557931 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.557933 LLDP, length 82 [|LLDP] 16:59:35.557962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.557971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.557983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.557984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ce2 ecfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.557985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.557986 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.557987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.557988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.557989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.558002 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.558004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.558009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.558011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.567942 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.567944 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.567953 LLDP, length 82 [|LLDP] 16:59:35.567985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.567998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.567999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.568000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.568001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.568023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.568027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.568028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cea 8e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.568029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.568030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.568033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.568034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.577946 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.577947 LLDP, length 82 [|LLDP] 16:59:35.577986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.577995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.578008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.578009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cf2 2f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.578011 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.578012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.578013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.578014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.578030 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.578032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.578033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.578040 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.578042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.587931 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.587933 LLDP, length 82 [|LLDP] 16:59:35.587966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.587974 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.587986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.587987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0cf9 d05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.587989 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.587990 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.587991 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.587992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.587993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.588007 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.588008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.588014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.588016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.597935 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.597937 LLDP, length 82 [|LLDP] 16:59:35.597971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.597982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.597983 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.597984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.597985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.597986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.598010 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.598017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.598018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d01 717e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.598020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.598021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.598024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.598026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.607933 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.607935 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.607936 LLDP, length 82 [|LLDP] 16:59:35.607972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.607981 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.607993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.607994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d09 129e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.607995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.607997 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.607998 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.607999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.608000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.608013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.608014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.608017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.617934 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.617936 LLDP, length 82 [|LLDP] 16:59:35.617968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.617977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.617989 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.617990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d10 b3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.617991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.617992 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.617993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.617994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.617995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.618010 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.618012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.618017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.618019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.627935 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.627936 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.627937 LLDP, length 82 [|LLDP] 16:59:35.627970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.627980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.627991 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.627992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d18 54de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.627994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.627995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.627996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.628009 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.628011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.628012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.628015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.628016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.637932 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.637933 LLDP, length 82 [|LLDP] 16:59:35.637966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.637975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.637987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.637988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d1f f5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.637990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.637991 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.637992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.637993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.637994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.638008 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.638010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.638016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.638017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.647934 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.647935 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.647936 LLDP, length 82 [|LLDP] 16:59:35.647972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.647981 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.647982 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.647983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.647984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.648006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.648009 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.648010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d27 971e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.648012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.648013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.648015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.648017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.657934 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.657935 LLDP, length 82 [|LLDP] 16:59:35.657967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.657978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.657990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.657991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d2f 383e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.657992 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.657993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.657994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.657995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.658009 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.658011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.658012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.658019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.658021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.667931 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.667934 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.667934 LLDP, length 82 [|LLDP] 16:59:35.667968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.667977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.667989 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.667990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d36 d95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.667992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.667993 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.667994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.667995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.667996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.668010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.668011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.668013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.677933 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.677935 LLDP, length 82 [|LLDP] 16:59:35.677967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.677975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.677976 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.677977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.677978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.677979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.678004 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.678011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.678012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d3e 7a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.678014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.678015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.678017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.678019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.687930 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.687932 LLDP, length 82 [|LLDP] 16:59:35.687962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.687971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.687983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.687984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d46 1b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.687985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.687986 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.687987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.687988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.687989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.688003 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.688004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.688018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.688019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.697930 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.697932 LLDP, length 82 [|LLDP] 16:59:35.697964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.697973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.697985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.697986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d4d bcbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.697987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.697988 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.697989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.697990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.697991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.698007 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.698009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.698015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.698017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.707927 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.707929 LLDP, length 82 [|LLDP] 16:59:35.707959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.707967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.707980 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.707981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d55 5dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.707982 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.707983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.707984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.707996 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.707998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.707999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.708000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.708008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.708009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.717929 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.717931 LLDP, length 82 [|LLDP] 16:59:35.717958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.717967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.717979 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.717980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d5c fefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.717981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.717982 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.717983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.717984 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.717985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.717998 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.718000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.718005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.718007 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.727927 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.727928 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.727929 LLDP, length 82 [|LLDP] 16:59:35.727961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.727969 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.727970 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.727971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.727972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.727993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.727996 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.727997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d64 a01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.727999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.728000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.728002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.728004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.737926 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.737927 LLDP, length 82 [|LLDP] 16:59:35.737955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.737962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.737974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.737975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d6c 413e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.737977 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.737978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.737979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.737980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.737993 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.737994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.737995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.738001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.738003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.747926 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.747928 LLDP, length 82 [|LLDP] 16:59:35.747957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.747965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.747977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.747978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d73 e25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.747979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.747980 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.747981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.747982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.747983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.747996 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.747998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.748004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.748005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.757926 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.757928 LLDP, length 82 [|LLDP] 16:59:35.757956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.757965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.757965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.757966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.757967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.757968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.757991 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.757998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.757999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d7b 837e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.758001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.758002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.758004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.758006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.767924 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.767926 LLDP, length 82 [|LLDP] 16:59:35.767953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.767961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.767972 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.767974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d83 249e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.767975 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.767976 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.767977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.767978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.767979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.767992 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.767994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.767999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.768001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.777924 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.777925 LLDP, length 82 [|LLDP] 16:59:35.777953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.777961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.777973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.777973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d8a c5be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.777975 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.777976 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.777977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.777978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.777979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.777991 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.777993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.777998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.778000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.787924 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.787925 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.787926 LLDP, length 82 [|LLDP] 16:59:35.787956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.787964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.787976 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.787977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d92 66de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.787979 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.787980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.787981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.787994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.787996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.787997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.788000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.788001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.797925 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.797927 LLDP, length 82 [|LLDP] 16:59:35.797959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.797968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.797980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.797980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0d9a 07fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.797982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.797983 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.797984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.797985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.797986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.797999 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.798001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.798007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.798008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.807938 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.807946 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.807947 LLDP, length 82 [|LLDP] 16:59:35.807983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.807995 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.807996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.807997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.807998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.808022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.808026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.808027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0da1 a91e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.808028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.808029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.808032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.808034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.817927 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.817929 LLDP, length 82 [|LLDP] 16:59:35.817960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.817968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.817981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.817982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0da9 4a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.817984 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.817985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.817986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.817987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.818000 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.818002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.818003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.818010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.818012 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.827924 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.827925 LLDP, length 82 [|LLDP] 16:59:35.827954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.827962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.827974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.827975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0db0 eb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.827976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.827977 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.827978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.827980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.827981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.827993 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.827995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.828000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.828003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.837927 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.837928 LLDP, length 82 [|LLDP] 16:59:35.837956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.837964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.837965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.837966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.837967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.837968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.837991 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.837997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.837998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0db8 8c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.837999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.838000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.838003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.838004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.847924 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.847925 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.847926 LLDP, length 82 [|LLDP] 16:59:35.847956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.847964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.847976 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.847977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc0 2d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.847979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.847980 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.847981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.847982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.847983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.847996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.847997 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.847999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.857925 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.857927 LLDP, length 82 [|LLDP] 16:59:35.857955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.857964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.857976 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.857977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dc7 cebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.857979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.857980 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.857981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.857982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.857983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.857996 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.857998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.858004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.858006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.867924 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.867926 LLDP, length 82 [|LLDP] 16:59:35.867953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.867961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.867974 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.867974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dcf 6fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.867976 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.867977 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.867978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.867990 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.867991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.867992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.867993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.868000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.868002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.877923 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.877924 LLDP, length 82 [|LLDP] 16:59:35.877952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.877961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.877973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.877974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dd7 10fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.877975 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.877976 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.877978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.877979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.877979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.877993 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.877995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.878000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.878002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.887922 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.887924 LLDP, length 82 [|LLDP] 16:59:35.887951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.887959 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.887960 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.887961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.887962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.887983 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.887985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.887992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.887993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dde b21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.887994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.887995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.887998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.888000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.897929 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.897930 LLDP, length 82 [|LLDP] 16:59:35.897961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.897969 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.897982 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.897983 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0de6 533e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.897984 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.897985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.897986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.897987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.898001 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.898003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.898004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.898010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.898012 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.907925 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.907926 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.907927 LLDP, length 82 [|LLDP] 16:59:35.907962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.907971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.907983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.907983 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ded f45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.907985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.907986 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.907987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.907988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.907989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.908003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.908004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.908006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.917932 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.917934 LLDP, length 82 [|LLDP] 16:59:35.917973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.917983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.917984 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.917985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.917986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.917986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.918013 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.918021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.918022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0df5 957e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.918023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.918024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.918027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.918029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.927923 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.927925 LLDP, length 82 [|LLDP] 16:59:35.927953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.927962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.927974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.927975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0dfd 369e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.927977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.927978 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.927979 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.927980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.927981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.927994 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.927996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.928000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.928002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.937924 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.937925 LLDP, length 82 [|LLDP] 16:59:35.937953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.937962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.937973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.937974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e04 d7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.937976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.937977 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.937978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.937979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.937980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.937993 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.937995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.938000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.938002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.947921 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.947923 LLDP, length 82 [|LLDP] 16:59:35.947949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.947958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.947969 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.947970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e0c 78de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.947972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.947973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.947974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.947985 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.947987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.947988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.947989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.947995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.947997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.957929 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.957931 LLDP, length 82 [|LLDP] 16:59:35.957971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.957982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.957994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.957995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e14 19fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.957997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.957998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.957999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.958000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.958001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.958019 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.958021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.958028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.958030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.967923 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.967925 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.967926 LLDP, length 82 [|LLDP] 16:59:35.967958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.967966 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.967967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.967968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.967969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.967991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.967994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.967995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e1b bb1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.967997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.967998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.968000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.968002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.977921 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.977923 LLDP, length 82 [|LLDP] 16:59:35.977951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.977960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.977972 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.977973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e23 5c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.977974 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.977975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.977976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.977977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.977990 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.977992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.977993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.977999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.978000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.987922 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.987924 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.987925 LLDP, length 82 [|LLDP] 16:59:35.987958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.987966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.987978 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.987979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e2a fd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.987981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.987982 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.987983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.987984 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.987985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.987998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.987999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.988001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:35.997920 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.997922 LLDP, length 82 [|LLDP] 16:59:35.997952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:35.997961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:35.997962 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:35.997962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:35.997963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:35.997965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.997987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:35.997994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:35.997995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e32 9e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:35.997997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:35.997998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:35.998001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:35.998003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.007923 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.007925 LLDP, length 82 [|LLDP] 16:59:36.007954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.007963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.007974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.007975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e3a 3f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.007976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.007977 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.007978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.007980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.007981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.007995 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.007997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.008003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.008005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.017923 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.017925 LLDP, length 82 [|LLDP] 16:59:36.017957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.017965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.017978 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.017978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e41 e0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.017980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.017981 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.017982 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.017983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.017984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.017998 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.018000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.018006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.018016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.027921 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.027922 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.027923 LLDP, length 82 [|LLDP] 16:59:36.027956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.027963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.027976 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.027977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e49 81de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.027978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.027980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.027981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.027993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.027995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.027996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.027998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.028000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.037919 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.037920 LLDP, length 82 [|LLDP] 16:59:36.037947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.037955 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.037967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.037968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e51 22fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.037969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.037971 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.037972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.037973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.037974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.037987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.037989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.037994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.037996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.047920 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.047921 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.047922 LLDP, length 82 [|LLDP] 16:59:36.047952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.047961 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.047962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.047963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.047964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.047985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.047988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.047989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e58 c41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.047991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.047991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.047994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.047996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.057920 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.057922 LLDP, length 82 [|LLDP] 16:59:36.057950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.057958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.057970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.057971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e60 653e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.057973 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.057974 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.057975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.057976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.057989 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.057991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.057991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.057998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.057999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.067922 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.067924 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.067925 LLDP, length 82 [|LLDP] 16:59:36.067950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.067958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.067970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.067971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e68 065e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.067972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.067974 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.067974 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.067975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.067977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.067990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.067991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.067994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.077919 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.077921 LLDP, length 82 [|LLDP] 16:59:36.077949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.077957 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.077958 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.077959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.077960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.077961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.077983 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.077990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.077991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e6f a77e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.077992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.077994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.077996 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.077998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.087918 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.087919 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.087920 LLDP, length 82 [|LLDP] 16:59:36.087949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.087957 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.087969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.087970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e77 489e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.087972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.087973 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.087974 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.087975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.087976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.087989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.087990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.087993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.097916 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.097917 LLDP, length 82 [|LLDP] 16:59:36.097946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.097954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.097966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.097967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e7e e9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.097969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.097970 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.097971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.097972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.097973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.097986 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.097988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.097993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.097995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.107919 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.107920 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.107921 LLDP, length 82 [|LLDP] 16:59:36.107960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.107968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.107980 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.107980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e86 8ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.107982 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.107983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.107984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.107996 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.107998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.107999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.108002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.108004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.117918 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.117920 LLDP, length 82 [|LLDP] 16:59:36.117953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.117961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.117974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.117974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e8e 2bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.117976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.117977 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.117978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.117979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.117980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.117994 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.117996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.118001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.118003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.127919 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.127921 LLDP, length 82 [|LLDP] 16:59:36.127953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.127961 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.127962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.127963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.127964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.127986 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.127988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.127995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.127995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e95 cd1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.127997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.127998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.128000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.128002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.137919 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.137921 LLDP, length 82 [|LLDP] 16:59:36.137950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.137959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.137971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.137972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0e9d 6e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.137973 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.137975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.137976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.137977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.137989 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.137991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.137992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.137998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.138000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.147915 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.147916 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.147917 LLDP, length 82 [|LLDP] 16:59:36.147946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.147955 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.147967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.147968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ea5 0f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.147970 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.147971 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.147972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.147973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.147974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.147988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.147989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.147991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.157916 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.157917 LLDP, length 82 [|LLDP] 16:59:36.157944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.157953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.157954 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.157955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.157956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.157957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.157979 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.157985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.157986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eac b07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.157987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.157988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.157991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.157993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.167916 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.167918 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.167919 LLDP, length 82 [|LLDP] 16:59:36.167953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.167961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.167973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.167974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eb4 519e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.167976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.167977 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.167978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.167979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.167980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.167994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.167995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.167997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.177918 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.177919 LLDP, length 82 [|LLDP] 16:59:36.177947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.177956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.177968 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.177968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ebb f2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.177970 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.177971 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.177972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.177973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.177974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.177987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.177989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.177993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.177995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.187915 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.187917 LLDP, length 82 [|LLDP] 16:59:36.187944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.187952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.187964 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.187965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ec3 93de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.187966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.187967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.187968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.187980 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.187981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.187983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.187984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.187990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.187992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.197913 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.197915 LLDP, length 82 [|LLDP] 16:59:36.197944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.197952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.197964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.197964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ecb 34fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.197966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.197967 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.197968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.197969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.197970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.197983 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.197984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.197990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.197992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.207917 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.207918 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.207919 LLDP, length 82 [|LLDP] 16:59:36.207950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.207958 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.207959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.207960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.207961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.207983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.207986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.207987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ed2 d61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.207989 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.208001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.208005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.208007 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.217942 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.217956 LLDP, length 82 [|LLDP] 16:59:36.217993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.218006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.218020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.218021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0eda 773e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.218022 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.218023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.218024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.218025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.218048 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.218051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.218052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.218060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.218061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.227922 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.227924 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.227925 LLDP, length 82 [|LLDP] 16:59:36.227967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.227977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.227988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.227989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ee2 185e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.227991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.227992 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.227993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.227994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.227995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.228012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.228013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.228016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.237921 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.237923 LLDP, length 82 [|LLDP] 16:59:36.237954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.237963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.237964 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.237965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.237966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.237967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.237990 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.237997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.237997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ee9 b97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.237999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.238000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.238003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.238005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.247913 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.247915 LLDP, length 82 [|LLDP] 16:59:36.247944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.247952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.247964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.247965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ef1 5a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.247966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.247967 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.247968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.247969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.247971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.247984 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.247986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.247991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.247993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.257914 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.257916 LLDP, length 82 [|LLDP] 16:59:36.257945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.257953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.257966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.257966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ef8 fbbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.257968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.257969 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.257970 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.257971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.257972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.257985 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.257987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.257992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.257994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.267913 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.267915 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.267916 LLDP, length 82 [|LLDP] 16:59:36.267949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.267956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.267968 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.267969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f00 9cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.267971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.267972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.267972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.267985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.267987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.267988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.267990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.267992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.277914 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.277916 LLDP, length 82 [|LLDP] 16:59:36.277946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.277954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.277966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.277967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f08 3dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.277968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.277969 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.277970 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.277971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.277972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.277985 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.277987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.277993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.277994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.287913 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.287915 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.287916 LLDP, length 82 [|LLDP] 16:59:36.287947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.287955 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.287956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.287957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.287958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.287980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.287983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.287984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f0f df1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.287986 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.287987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.287989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.287991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.297914 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.297915 LLDP, length 82 [|LLDP] 16:59:36.297943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.297951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.297963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.297964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f17 803e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.297965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.297966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.297967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.297969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.297982 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.297983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.297985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.297990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.297992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.307912 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.307913 LLDP, length 82 [|LLDP] 16:59:36.307941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.307949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.307962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.307962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f1f 215e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.307964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.307965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.307966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.307967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.307968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.307981 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.307983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.307988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.307990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.317918 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.317920 LLDP, length 82 [|LLDP] 16:59:36.317955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.317964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.317965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.317966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.317968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.317968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.317991 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.317998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.317999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f26 c27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.318000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.318001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.318004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.318006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.327914 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.327915 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.327916 LLDP, length 82 [|LLDP] 16:59:36.327949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.327957 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.327969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.327970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f2e 639e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.327972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.327973 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.327974 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.327975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.327976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.328001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.328002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.328005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.337925 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.337934 LLDP, length 82 [|LLDP] 16:59:36.337969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.337980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.337994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.337995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f36 04be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.337996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.337998 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.337999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.338000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.338001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.338027 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.338029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.338036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.338038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.347918 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.347920 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.347921 LLDP, length 82 [|LLDP] 16:59:36.347957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.347967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.347979 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.347980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f3d a5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.347982 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.347983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.347984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.347998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.348000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.348001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.348003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.348005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.357915 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.357917 LLDP, length 82 [|LLDP] 16:59:36.357947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.357956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.357968 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.357969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f45 46fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.357971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.357972 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.357973 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.357974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.357975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.357989 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.357991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.357996 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.357998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.367912 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.367914 LLDP, length 82 [|LLDP] 16:59:36.367942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.367950 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.367951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.367952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.367953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.367974 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.367976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.367983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.367984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f4c e81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.367985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.367986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.367989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.367991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.377913 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.377914 LLDP, length 82 [|LLDP] 16:59:36.377943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.377951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.377964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.377965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f54 893e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.377966 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.377967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.377968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.377969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.377982 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.377984 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.377985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.377991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.377993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.387911 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.387913 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.387914 LLDP, length 82 [|LLDP] 16:59:36.387944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.387952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.387965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.387965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f5c 2a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.387967 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.387968 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.387968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.387969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.387970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.387984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.387985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.387987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.397910 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.397912 LLDP, length 82 [|LLDP] 16:59:36.397940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.397949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.397950 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.397951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.397952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.397953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.397975 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.397981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.397982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f63 cb7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.397983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.397984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.397987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.397989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.407911 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.407913 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.407914 LLDP, length 82 [|LLDP] 16:59:36.407944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.407952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.407965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.407966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f6b 6c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.407967 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.407968 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.407969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.407970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.407971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.407984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.407986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.407988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.417910 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.417912 LLDP, length 82 [|LLDP] 16:59:36.417943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.417952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.417964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.417965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f73 0dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.417966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.417967 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.417969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.417970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.417971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.417986 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.417988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.417993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.417995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.427910 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.427911 LLDP, length 82 [|LLDP] 16:59:36.427939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.427947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.427959 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.427960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f7a aede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.427962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.427963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.427964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.427976 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.427977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.427979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.427980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.427986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.427988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.437912 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.437914 LLDP, length 82 [|LLDP] 16:59:36.437950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.437958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.437971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.437971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f82 4ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.437973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.437974 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.437975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.437976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.437977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.437991 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.437993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.437998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.438000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.447915 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.447916 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.447917 LLDP, length 82 [|LLDP] 16:59:36.447952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.447960 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.447961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.447963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.447964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.447986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.447989 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.447990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f89 f11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.447991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.447992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.447995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.447997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.457909 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.457911 LLDP, length 82 [|LLDP] 16:59:36.457940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.457948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.457960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.457961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f91 923e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.457962 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.457963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.457964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.457965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.457978 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.457980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.457981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.457987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.457989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.467908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.467910 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.467911 LLDP, length 82 [|LLDP] 16:59:36.467941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.467949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.467961 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.467962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0f99 335e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.467964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.467965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.467966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.467967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.467968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.467980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.467982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.467984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.477912 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.477914 LLDP, length 82 [|LLDP] 16:59:36.477944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.477954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.477955 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.477956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.477957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.477957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.477981 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.477988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.477988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fa0 d47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.477990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.477991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.477993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.477995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.487908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.487910 LLDP, length 82 [|LLDP] 16:59:36.487937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.487946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.487958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.487959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fa8 759e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.487960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.487961 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.487962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.487963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.487964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.487977 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.487979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.487985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.487986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.497910 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.497911 LLDP, length 82 [|LLDP] 16:59:36.497940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.497948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.497961 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.497962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb0 16be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.497964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.497965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.497966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.497967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.497968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.497981 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.497982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.497988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.497989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.507908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.507909 LLDP, length 82 [|LLDP] 16:59:36.507937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.507945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.507957 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.507958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fb7 b7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.507959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.507960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.507961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.507973 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.507975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.507976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.507977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.507983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.507985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.517907 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.517909 LLDP, length 82 [|LLDP] 16:59:36.517937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.517945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.517957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.517958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fbf 58fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.517959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.517960 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.517962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.517963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.517964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.517977 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.517978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.517983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.517985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.527908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.527910 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.527911 LLDP, length 82 [|LLDP] 16:59:36.527943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.527951 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.527952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.527953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.527954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.527977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.527980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.527981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fc6 fa1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.527983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.527984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.527987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.527989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.537907 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.537909 LLDP, length 82 [|LLDP] 16:59:36.537936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.537944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.537956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.537957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fce 9b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.537958 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.537959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.537960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.537961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.537974 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.537976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.537977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.537983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.537985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.547908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.547910 LLDP, length 82 [|LLDP] 16:59:36.547941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.547949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.547962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.547963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fd6 3c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.547964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.547965 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.547966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.547967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.547968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.547982 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.547984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.547989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.547991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.557913 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.557915 LLDP, length 82 [|LLDP] 16:59:36.557948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.557956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.557958 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.557959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.557960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.557961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.557986 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.557992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.557993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fdd dd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.557995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.557996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.557998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.558000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.567918 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.567920 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.567928 LLDP, length 82 [|LLDP] 16:59:36.567965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.567977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.567990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.567991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fe5 7e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.567992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.567993 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.567994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.567995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.567997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.568013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.568015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.568017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.577919 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.577927 LLDP, length 82 [|LLDP] 16:59:36.577961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.577972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.577985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.577986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0fed 1fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.577987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.577988 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.577989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.577990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.577991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.578008 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.578010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.578016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.578018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.587911 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.587913 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.587914 LLDP, length 82 [|LLDP] 16:59:36.587949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.587958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.587970 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.587971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ff4 c0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.587973 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.587974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.587975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.587988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.587990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.587991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.587993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.587996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.597908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.597909 LLDP, length 82 [|LLDP] 16:59:36.597938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.597946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.597959 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.597959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 0ffc 61fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.597961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.597962 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.597963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.597964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.597965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.597978 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.597980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.597985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.597988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.607908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.607910 LLDP, length 82 [|LLDP] 16:59:36.607939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.607947 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.607948 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.607949 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.607950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.607972 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.607974 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.607981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.607982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1004 031e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.607983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.607984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.607987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.607989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.617906 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.617907 LLDP, length 82 [|LLDP] 16:59:36.617936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.617944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.617957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.617958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 100b a43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.617959 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.617960 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.617962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.617963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.617976 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.617978 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.617979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.617986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.617988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.627905 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.627907 LLDP, length 82 [|LLDP] 16:59:36.627938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.627946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.627958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.627959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1013 455e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.627960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.627961 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.627962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.627963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.627964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.627978 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.627980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.627985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.627988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.637905 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.637906 LLDP, length 82 [|LLDP] 16:59:36.637935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.637944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.637945 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.637946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.637947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.637948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.637970 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.637976 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.637977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 101a e67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.637979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.637980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.637983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.637985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.647905 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.647906 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.647907 LLDP, length 82 [|LLDP] 16:59:36.647947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.647954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.647967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.647968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1022 879e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.647969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.647971 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.647972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.647973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.647974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.647988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.647989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.647991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.657910 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.657912 LLDP, length 82 [|LLDP] 16:59:36.657944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.657955 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.657967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.657968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 102a 28be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.657970 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.657971 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.657972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.657973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.657974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.657987 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.657989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.657995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.657998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.667905 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.667907 LLDP, length 82 [|LLDP] 16:59:36.667933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.667941 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.667954 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.667955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1031 c9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.667956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.667957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.667958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.667970 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.667972 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.667973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.667974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.667980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.667982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.677908 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.677910 LLDP, length 82 [|LLDP] 16:59:36.677934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.677943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.677955 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.677956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1039 6afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.677958 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.677959 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.677960 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.677961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.677962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.677976 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.677978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.677983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.677985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.687906 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.687907 LLDP, length 82 [|LLDP] 16:59:36.687937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.687945 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.687946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.687947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.687948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.687970 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.687972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.687978 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.687979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1041 0c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.687980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.687982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.687984 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.687986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.697905 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.697906 LLDP, length 82 [|LLDP] 16:59:36.697934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.697942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.697954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.697955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1048 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.697956 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.697957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.697958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.697959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.697973 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.697974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.697976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.697981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.697983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.707906 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.707908 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.707909 LLDP, length 82 [|LLDP] 16:59:36.707937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.707946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.707958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.707959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1050 4e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.707960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.707961 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.707962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.707963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.707964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.707977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.707978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.707981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.717917 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.717919 LLDP, length 82 [|LLDP] 16:59:36.717941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.717951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.717952 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.717953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.717954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.717955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.717978 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.717984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.717985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1057 ef7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.717987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.717988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.717990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.717992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.727903 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.727905 LLDP, length 82 [|LLDP] 16:59:36.727934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.727942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.727954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.727955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 105f 909e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.727957 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.727958 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.727959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.727960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.727961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.727974 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.727976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.727982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.727984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.737903 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.737905 LLDP, length 82 [|LLDP] 16:59:36.737935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.737943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.737956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.737957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1067 31be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.737959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.737960 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.737961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.737962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.737963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.737978 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.737979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.737985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.737987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.747903 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.747905 LLDP, length 82 [|LLDP] 16:59:36.747934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.747942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.747954 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.747955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 106e d2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.747957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.747957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.747959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.747971 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.747973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.747974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.747975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.747982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.747984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.757905 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.757907 LLDP, length 82 [|LLDP] 16:59:36.757933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.757941 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.757954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.757954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1076 73fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.757956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.757957 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.757958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.757959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.757960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.757974 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.757976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.757981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.757983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.767913 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.767915 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.767922 LLDP, length 82 [|LLDP] 16:59:36.767956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.767968 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.767969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.767969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.767970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.767995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.767999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.768000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 107e 151e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.768001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.768002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.768005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.768006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.777905 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.777906 LLDP, length 82 [|LLDP] 16:59:36.777939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.777948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.777961 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.777962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1085 b63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.777963 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.777965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.777966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.777967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.777981 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.777983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.777984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.777990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.777992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.787904 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.787906 LLDP, length 82 [|LLDP] 16:59:36.787938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.787948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.787960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.787961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 108d 575e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.787963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.787964 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.787965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.787966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.787967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.787981 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.787983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.787989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.787990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:36.797907 IP 1.1.1.2.10898 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.797908 LLDP, length 82 [|LLDP] 16:59:36.797942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 16:59:36.797951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 16:59:36.797952 IP 192.168.1.1.34033 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 16:59:36.797953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 16:59:36.797954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 16:59:36.797955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.797979 IP 1.1.1.2.49658 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 16:59:36.797986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 16:59:36.797987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 4000 0002 1011 1213 1094 f87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 16:59:36.797988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 16:59:36.797989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 16:59:36.797992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 16:59:36.797993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 16:59:38.460142 IP6 fe80::36ef:b6ff:feec:3807 > ff02::2: ICMP6, router solicitation, length 16 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 6721 packets captured 6721 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=10] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:59:45 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=44, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=44, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=12] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=44, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=44, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=16] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=44, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:59:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=44, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:59:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=44, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=22] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Passed | functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_without_rif | 261.61 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_without_rif">Starting testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2271' coro=<test_bridging_bum_traffic_port_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:132> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=45] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=45] Local address: 172.17.0.4, port 53164 INFO asyncssh:logging.py:92 [conn=45] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=45] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=45] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 16:59:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=45, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=2] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=45, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=4] Command: ip -j link show swp1 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=4] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 15 tcpdump -i swp1 -n on agg1... INFO asyncssh:logging.py:92 [conn=45, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO asyncssh:logging.py:92 [conn=45, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=6] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp1 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a289a9b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI BridgedLLDP SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI LACPDU SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4ToMe SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Request_BC SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ARP_Reply SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Broadcast SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_SSH SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_Telnet SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_VRRP SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_IGMP SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPV4_BGP SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=6] Channel closed DEBUG agg1:Logger.py:156 17:03:54.098611 LLDP, length 82 [|LLDP] 17:03:54.098612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.098633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.098633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 033c cb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.098635 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.098636 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.098637 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.098638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.098658 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.098660 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.098661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.098668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.098670 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.098671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.098671 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.108575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.108577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.108588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.108589 LLDP, length 82 [|LLDP] 17:03:54.108592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.108604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.108605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.108628 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.108629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0344 6c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.108630 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.108631 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.108632 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.108633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.108634 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.108635 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.118561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.118563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.118570 LLDP, length 82 [|LLDP] 17:03:54.118572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.118582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.118583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 034c 0d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.118585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.118586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.118587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.118592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.118593 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.118594 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.118595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.118596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.118597 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.128567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.128569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.128577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.128578 LLDP, length 82 [|LLDP] 17:03:54.128581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.128589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.128591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.128604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.128605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0353 aebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.128607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.128608 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.128608 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.128609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.128610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.128611 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.138559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.138560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.138568 LLDP, length 82 [|LLDP] 17:03:54.138569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.138580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.138581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 035b 4fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.138582 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.138583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.138584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.138590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.138592 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.138593 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.138594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.138595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.138595 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.148567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.148568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.148576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.148577 LLDP, length 82 [|LLDP] 17:03:54.148579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.148588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.148590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.148602 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.148603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0362 f0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.148604 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.148605 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.148606 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.148607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.148608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.148609 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.158556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.158558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.158565 LLDP, length 82 [|LLDP] 17:03:54.158567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.158577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.158578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 036a 921e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.158580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.158581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.158582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.158587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.158588 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.158589 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.158590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.158591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.158592 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.168557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.168559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.168566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.168567 LLDP, length 82 [|LLDP] 17:03:54.168569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.168578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.168579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.168591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.168592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0372 333e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.168593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.168594 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.168595 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.168596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.168597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.168598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.178557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.178559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.178567 LLDP, length 82 [|LLDP] 17:03:54.178568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.178578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.178579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0379 d45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.178580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.178581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.178582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.178587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.178589 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.178590 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.178591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.188547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.188549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.188555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.188556 LLDP, length 82 [|LLDP] 17:03:54.188558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.188566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.188576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.188577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0381 757e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.188578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.198550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.198551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.198559 LLDP, length 82 [|LLDP] 17:03:54.198561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.198570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.198571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0389 169e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.198572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.198573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.198576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.208555 LLDP, length 82 [|LLDP] 17:03:54.208557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.208565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.208566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.208573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.208576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.208576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0390 b7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.208578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.208579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.218563 LLDP, length 82 [|LLDP] 17:03:54.218565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.218579 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.218580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0398 58de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.218582 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.218583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.218584 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.218585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.218594 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.218596 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.218597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.218601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.218603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.218604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.218605 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.228566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.228568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.228576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.228577 LLDP, length 82 [|LLDP] 17:03:54.228579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.228587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.228588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.228601 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.228602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 039f f9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.228603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.228604 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.228605 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.228606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.228607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.228608 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.238557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.238559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.238567 LLDP, length 82 [|LLDP] 17:03:54.238569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.238579 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.238580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03a7 9b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.238581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.238582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.238583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.238588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.238590 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.238591 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.238592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.238593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.238594 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.248554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.248556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.248563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.248564 LLDP, length 82 [|LLDP] 17:03:54.248566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.248575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.248576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.248588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.248589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03af 3c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.248590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.248591 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.248592 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.248593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.248594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.248595 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.258553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.258555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.258562 LLDP, length 82 [|LLDP] 17:03:54.258564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.258574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.258574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03b6 dd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.258576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.258577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.258578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.258583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.258584 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.258585 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.258586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.258587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.258588 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.268558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.268560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.268574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.268575 LLDP, length 82 [|LLDP] 17:03:54.268577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.268586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.268587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.268599 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.268600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03be 7e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.268601 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.268602 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.268603 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.268604 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.268605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.268606 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.278552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.278554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.278561 LLDP, length 82 [|LLDP] 17:03:54.278563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.278572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.278573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03c6 1f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.278575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.278576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.278577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.278582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.278583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.278585 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.278585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.288552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.288554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.288561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.288562 LLDP, length 82 [|LLDP] 17:03:54.288564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.288571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.288580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.288581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03cd c0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.288583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.298546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.298548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.298555 LLDP, length 82 [|LLDP] 17:03:54.298557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.298565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.298566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03d5 61de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.298567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.298569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.298572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.308553 LLDP, length 82 [|LLDP] 17:03:54.308555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.308564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.308565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.308576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.308578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.308579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03dd 02fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.308580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.308581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.318558 LLDP, length 82 [|LLDP] 17:03:54.318560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.318572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.318573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03e4 a41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.318574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.318575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.318576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.318577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.318586 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.318588 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.318589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.318594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.318595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.318596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.318597 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.328566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.328568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.328576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.328577 LLDP, length 82 [|LLDP] 17:03:54.328579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.328587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.328589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.328602 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.328602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03ec 453e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.328604 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.328605 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.328606 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.328607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.328608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.328609 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.338564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.338565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.338576 LLDP, length 82 [|LLDP] 17:03:54.338578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.338592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.338593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03f3 e65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.338594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.338595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.338596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.338602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.338604 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.338605 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.338606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.338607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.338607 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.348560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.348562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.348570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.348571 LLDP, length 82 [|LLDP] 17:03:54.348573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.348583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.348584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.348598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.348599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03fb 877e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.348601 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.348602 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.348603 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.348604 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.348605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.348606 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.358559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.358561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.358570 LLDP, length 82 [|LLDP] 17:03:54.358571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.358583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.358583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0403 289e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.358585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.358586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.358587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.358593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.358594 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.358595 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.358596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.358597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.358598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.368554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.368556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.368564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.368565 LLDP, length 82 [|LLDP] 17:03:54.368567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.368576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.368577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.368591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.368591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 040a c9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.368593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.368594 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.368595 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.368596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.368597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.368598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.378551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.378553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.378559 LLDP, length 82 [|LLDP] 17:03:54.378561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.378570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.378571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0412 6ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.378573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.378574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.378575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.378580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.378582 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.378582 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.378583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.388544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.388546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.388552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.388553 LLDP, length 82 [|LLDP] 17:03:54.388555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.388563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.388574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.388574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 041a 0bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.388576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.398543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.398544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.398551 LLDP, length 82 [|LLDP] 17:03:54.398553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.398562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.398563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0421 ad1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.398564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.398565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.398568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.408548 LLDP, length 82 [|LLDP] 17:03:54.408550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.408557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.408558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.408566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.408568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.408569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0429 4e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.408570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.408572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.418556 LLDP, length 82 [|LLDP] 17:03:54.418558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.418569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.418570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0430 ef5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.418572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.418573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.418574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.418574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.418583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.418585 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.418586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.418591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.418593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.418594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.418595 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.428553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.428555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.428562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.428563 LLDP, length 82 [|LLDP] 17:03:54.428565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.428572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.428573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.428585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.428586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0438 907e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.428587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.428588 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.428589 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.428590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.428591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.428592 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.438550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.438552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.438560 LLDP, length 82 [|LLDP] 17:03:54.438562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.438572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.438573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0440 319e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.438574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.438575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.438576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.438582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.438583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.438584 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.438585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.438586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.438588 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.448554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.448556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.448563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.448564 LLDP, length 82 [|LLDP] 17:03:54.448566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.448575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.448577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.448590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.448591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0447 d2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.448592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.448593 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.448594 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.448595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.448596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.448597 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.458552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.458553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.458560 LLDP, length 82 [|LLDP] 17:03:54.458562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.458572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.458573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 044f 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.458574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.458575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.458576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.458581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.458583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.458584 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.458585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.458586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.458587 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.468550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.468551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.468559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.468560 LLDP, length 82 [|LLDP] 17:03:54.468562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.468570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.468572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.468583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.468584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0457 14fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.468585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.468586 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.468587 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.468588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.468589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.468590 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.478549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.478551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.478557 LLDP, length 82 [|LLDP] 17:03:54.478558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.478568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.478569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 045e b61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.478570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.478571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.478572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.478578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.478580 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.478580 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.478581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.488551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.488553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.488561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.488562 LLDP, length 82 [|LLDP] 17:03:54.488564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.488576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.488587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.488588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0466 573e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.488589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.498544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.498546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.498555 LLDP, length 82 [|LLDP] 17:03:54.498556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.498567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.498568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 046d f85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.498569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.498570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.498573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.508548 LLDP, length 82 [|LLDP] 17:03:54.508550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.508558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.508558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.508568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.508570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.508571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0475 997e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.508572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.508574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.518553 LLDP, length 82 [|LLDP] 17:03:54.518554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.518571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.518572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 047d 3a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.518573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.518574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.518575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.518576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.518586 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.518588 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.518589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.518595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.518596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.518597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.518598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.528552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.528554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.528563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.528564 LLDP, length 82 [|LLDP] 17:03:54.528566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.528574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.528576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.528589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.528590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0484 dbbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.528592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.528593 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.528594 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.528595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.528596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.528597 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.538554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.538556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.538564 LLDP, length 82 [|LLDP] 17:03:54.538566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.538576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.538577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 048c 7cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.538578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.538579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.538580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.538585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.538587 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.538587 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.538588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.538589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.538590 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.548553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.548554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.548562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.548563 LLDP, length 82 [|LLDP] 17:03:54.548566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.548575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.548576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.548590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.548591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0494 1dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.548592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.548593 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.548594 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.548595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.548596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.548598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.558561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.558562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.558570 LLDP, length 82 [|LLDP] 17:03:54.558572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.558588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.558589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 049b bf1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.558591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.558592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.558593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.558598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.558600 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.558601 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.558602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.558603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.558604 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.568566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.568568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.568578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.568579 LLDP, length 82 [|LLDP] 17:03:54.568582 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.568593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.568595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.568612 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.568613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04a3 603e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.568614 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.568615 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.568616 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.568617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.568618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.568619 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.578558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.578561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.578571 LLDP, length 82 [|LLDP] 17:03:54.578573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.578584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.578585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04ab 015e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.578586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.578587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.578588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.578594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.578596 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.578597 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.578598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.588543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.588545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.588553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.588554 LLDP, length 82 [|LLDP] 17:03:54.588556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.588565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.588576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.588576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04b2 a27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.588578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.598543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.598545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.598553 LLDP, length 82 [|LLDP] 17:03:54.598555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.598564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.598565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04ba 439e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.598566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.598567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.598570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.608547 LLDP, length 82 [|LLDP] 17:03:54.608548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.608555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.608556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.608566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.608568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.608569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04c1 e4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.608570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.608572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.618554 LLDP, length 82 [|LLDP] 17:03:54.618555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.618566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.618567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04c9 85de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.618569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.618570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.618571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.618572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.618582 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.618584 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.618585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.618590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.618592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.618593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.618594 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.628560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.628562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.628570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.628571 LLDP, length 82 [|LLDP] 17:03:54.628573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.628580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.628581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.628595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.628596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04d1 26fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.628597 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.628598 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.628599 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.628600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.628601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.628603 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.638550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.638552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.638560 LLDP, length 82 [|LLDP] 17:03:54.638562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.638571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.638572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04d8 c81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.638574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.638575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.638576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.638581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.638583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.638583 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.638584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.638585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.638586 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.648554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.648556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.648564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.648565 LLDP, length 82 [|LLDP] 17:03:54.648567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.648575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.648576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.648591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.648592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04e0 693e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.648594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.648595 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.648596 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.648597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.648598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.648598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.658557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.658558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.658569 LLDP, length 82 [|LLDP] 17:03:54.658571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.658580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.658581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04e8 0a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.658583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.658584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.658585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.658591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.658593 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.658594 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.658595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.658596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.658597 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.668550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.668552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.668561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.668562 LLDP, length 82 [|LLDP] 17:03:54.668564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.668572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.668574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.668588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.668589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04ef ab7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.668590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.668591 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.668592 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.668593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.668594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.668595 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.678545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.678547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.678555 LLDP, length 82 [|LLDP] 17:03:54.678556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.678565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.678566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04f7 4c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.678567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.678569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.678569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.678575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.678576 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.678577 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.678578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.688539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.688540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.688548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.688549 LLDP, length 82 [|LLDP] 17:03:54.688552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.688561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.688572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.688573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04fe edbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.688574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.698540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.698542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.698550 LLDP, length 82 [|LLDP] 17:03:54.698552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.698561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.698562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0506 8ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.698563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.698564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.698567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.708541 LLDP, length 82 [|LLDP] 17:03:54.708542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.708549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.708550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.708560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.708562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.708563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 050e 2ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.708565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.708566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.718550 LLDP, length 82 [|LLDP] 17:03:54.718551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.718562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.718563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0515 d11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.718564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.718566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.718567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.718568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.718578 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.718580 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.718581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.718586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.718588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.718589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.718590 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.728555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.728557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.728565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.728566 LLDP, length 82 [|LLDP] 17:03:54.728568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.728575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.728577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.728591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.728592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 051d 723e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.728593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.728594 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.728595 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.728596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.728597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.728598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.738545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.738547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.738556 LLDP, length 82 [|LLDP] 17:03:54.738557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.738566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.738567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0525 135e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.738568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.738569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.738570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.738576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.738577 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.738578 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.738579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.738580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.738581 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.748553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.748554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.748569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.748570 LLDP, length 82 [|LLDP] 17:03:54.748572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.748580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.748582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.748595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.748596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 052c b47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.748597 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.748598 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.748599 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.748600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.748601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.748602 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.758550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.758552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.758561 LLDP, length 82 [|LLDP] 17:03:54.758562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.758571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.758572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0534 559e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.758573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.758574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.758575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.758581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.758583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.758584 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.758585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.758585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.758586 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.768547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.768549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.768558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.768559 LLDP, length 82 [|LLDP] 17:03:54.768561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.768569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.768570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.768584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.768585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 053b f6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.768586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.768587 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.768588 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.768589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.768590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.768591 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.778544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.778546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.778554 LLDP, length 82 [|LLDP] 17:03:54.778555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.778565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.778566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0543 97de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.778567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.778568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.778569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.778575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.778576 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.778577 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.778578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.788538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.788540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.788548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.788549 LLDP, length 82 [|LLDP] 17:03:54.788551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.788560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.788571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.788572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 054b 38fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.788573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.798537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.798539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.798546 LLDP, length 82 [|LLDP] 17:03:54.798548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.798557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.798558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0552 da1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.798559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.798560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.798563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.808545 LLDP, length 82 [|LLDP] 17:03:54.808546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.808553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.808554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.808563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.808565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.808566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 055a 7b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.808567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.808569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.818554 LLDP, length 82 [|LLDP] 17:03:54.818556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.818569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.818570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0562 1c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.818571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.818572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.818573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.818574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.818585 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.818587 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.818588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.818593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.818595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.818596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.818596 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.828555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.828556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.828565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.828566 LLDP, length 82 [|LLDP] 17:03:54.828568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.828576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.828578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.828592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.828593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0569 bd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.828594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.828595 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.828596 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.828597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.828598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.828599 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.838542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.838544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.838552 LLDP, length 82 [|LLDP] 17:03:54.838553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.838563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.838564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0571 5e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.838565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.838566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.838567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.838573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.838575 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.838576 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.838576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.838578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.838579 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.848550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.848552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.848559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.848560 LLDP, length 82 [|LLDP] 17:03:54.848562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.848570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.848571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.848584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.848585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0578 ffbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.848587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.848587 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.848588 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.848589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.848590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.848591 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.858568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.858571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.858579 LLDP, length 82 [|LLDP] 17:03:54.858580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.858590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.858591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0580 a0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.858592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.858594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.858595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.858601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.858602 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.858603 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.858604 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.858605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.858606 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.868556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.868558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.868568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.868569 LLDP, length 82 [|LLDP] 17:03:54.868571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.868579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.868580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.868596 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.868597 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0588 41fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.868599 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.868600 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.868601 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.868602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.868603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.868604 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.878543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.878545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.878553 LLDP, length 82 [|LLDP] 17:03:54.878555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.878566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.878567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 058f e31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.878569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.878570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.878571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.878576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.878578 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.878579 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.878580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.888535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.888537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.888545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.888546 LLDP, length 82 [|LLDP] 17:03:54.888548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.888556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.888567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.888568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0597 843e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.888569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.898533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.898535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.898543 LLDP, length 82 [|LLDP] 17:03:54.898545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.898555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.898556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 059f 255e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.898557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.898558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.898561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.908535 LLDP, length 82 [|LLDP] 17:03:54.908537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.908544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.908545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.908554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.908557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.908558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05a6 c67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.908560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.908561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.918543 LLDP, length 82 [|LLDP] 17:03:54.918545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.918556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.918557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05ae 679e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.918558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.918559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.918560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.918561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.918570 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.918572 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.918573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.918578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.918580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.918581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.918582 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.928547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.928549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.928555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.928556 LLDP, length 82 [|LLDP] 17:03:54.928559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.928565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.928567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.928581 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.928582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05b6 08be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.928584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.928585 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.928586 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.928587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.928588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.928588 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.938707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.938709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.938716 LLDP, length 82 [|LLDP] 17:03:54.938717 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.938726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.938726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05bd a9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.938728 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.938729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.938730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.938736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.938738 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.938738 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.938739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.938740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.938741 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.948540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.948542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.948549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.948551 LLDP, length 82 [|LLDP] 17:03:54.948552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.948560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.948561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.948575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.948575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05c5 4afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.948577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.948578 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.948579 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.948580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.948581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.948582 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.958539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.958541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.958548 LLDP, length 82 [|LLDP] 17:03:54.958550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.958558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.958559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05cc ec1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.958560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.958561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.958562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.958567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.958569 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.958570 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.958571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.958572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.958573 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.968551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.968553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.968562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.968563 LLDP, length 82 [|LLDP] 17:03:54.968565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.968573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.968575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.968589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.968590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05d4 8d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.968591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.968592 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.968593 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.968594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.968595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.968597 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.978540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.978542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.978550 LLDP, length 82 [|LLDP] 17:03:54.978552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.978560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.978561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05dc 2e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.978562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.978563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.978564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.978570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.978571 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.978573 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.978574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.988529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.988531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.988538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.988539 LLDP, length 82 [|LLDP] 17:03:54.988541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.988549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.988561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.988561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05e3 cf7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.988563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.998534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.998535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.998543 LLDP, length 82 [|LLDP] 17:03:54.998544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.998553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.998553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05eb 709e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.998555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.998556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.998559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.008531 LLDP, length 82 [|LLDP] 17:03:55.008533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.008540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.008550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.008559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.008561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.008562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05f3 11be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.008564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.008565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.018543 LLDP, length 82 [|LLDP] 17:03:55.018545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.018555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.018556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05fa b2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.018557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.018558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.018559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.018560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.018571 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.018572 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.018573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.018579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.018580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.018581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.018582 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.028546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.028547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.028555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.028556 LLDP, length 82 [|LLDP] 17:03:55.028558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.028564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.028565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.028580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.028580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0602 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.028582 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.028583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.028584 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.028585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.028586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.028587 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.038536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.038537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.038545 LLDP, length 82 [|LLDP] 17:03:55.038547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.038556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.038557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0609 f51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.038558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.038559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.038560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.038566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.038568 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.038568 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.038570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.038571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.038571 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.048538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.048540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.048548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.048549 LLDP, length 82 [|LLDP] 17:03:55.048551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.048558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.048559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.048573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.048574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0611 963e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.048575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.048576 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.048578 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.048579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.048580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.048581 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.058546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.058547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.058555 LLDP, length 82 [|LLDP] 17:03:55.058556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.058564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.058565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0619 375e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.058567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.058568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.058569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.058574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.058576 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.058577 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.058578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.058579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.058579 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.068563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.068565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.068578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.068579 LLDP, length 82 [|LLDP] 17:03:55.068581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.068596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.068598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.068618 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.068619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0620 d87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.068620 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.068621 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.068622 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.068623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.068625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.068626 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.078543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.078546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.078557 LLDP, length 82 [|LLDP] 17:03:55.078559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.078572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.078573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0628 799e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.078574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.078575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.078576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.078582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.078584 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.078585 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.078586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.088531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.088533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.088541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.088542 LLDP, length 82 [|LLDP] 17:03:55.088544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.088554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.088566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.088567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0630 1abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.088569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.098526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.098528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.098534 LLDP, length 82 [|LLDP] 17:03:55.098536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.098545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.098546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0637 bbde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.098547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.098548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.098552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.108524 LLDP, length 82 [|LLDP] 17:03:55.108526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.108532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.108533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.108540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.108542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.108543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 063f 5cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.108544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.108546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.118537 LLDP, length 82 [|LLDP] 17:03:55.118538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.118548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.118549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0646 fe1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.118550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.118551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.118552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.118553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.118562 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.118564 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.118565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.118569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.118571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.118572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.118573 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.128551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.128553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.128562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.128563 LLDP, length 82 [|LLDP] 17:03:55.128566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.128575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.128576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.128594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.128595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 064e 9f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.128596 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.128597 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.128598 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.128599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.128600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.128601 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.138540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.138543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.138551 LLDP, length 82 [|LLDP] 17:03:55.138553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.138564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.138565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0656 405e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.138566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.138567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.138568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.138574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.138575 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.138576 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.138577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.138578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.138578 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.148548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.148550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.148558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.148559 LLDP, length 82 [|LLDP] 17:03:55.148561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.148570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.148571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.148587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.148588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 065d e17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.148590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.148591 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.148592 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.148593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.148594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.148595 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.158538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.158540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.158548 LLDP, length 82 [|LLDP] 17:03:55.158550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.158560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.158561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0665 829e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.158563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.158563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.158564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.158570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.158571 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.158572 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.158573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.158574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.158575 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.168541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.168542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.168551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.168552 LLDP, length 82 [|LLDP] 17:03:55.168554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.168563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.168565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.168580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.168581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 066d 23be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.168583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.168583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.168584 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.168585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.168586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.168587 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.178536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.178538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.178547 LLDP, length 82 [|LLDP] 17:03:55.178549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.178559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.178560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0674 c4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.178561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.178562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.178563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.178569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.178571 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.178571 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.178573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.188528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.188530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.188539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.188540 LLDP, length 82 [|LLDP] 17:03:55.188542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.188551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.188565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.188565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 067c 65fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.188567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.198529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.198531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.198538 LLDP, length 82 [|LLDP] 17:03:55.198540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.198550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.198551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0684 071e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.198552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.198553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.198557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.208529 LLDP, length 82 [|LLDP] 17:03:55.208531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.208540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.208541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.208549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.208552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.208552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 068b a83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.208554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.208555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.218538 LLDP, length 82 [|LLDP] 17:03:55.218540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.218553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.218554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0693 495e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.218555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.218556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.218557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.218558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.218569 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.218571 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.218572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.218577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.218579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.218580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.218581 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.228541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.228543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.228550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.228551 LLDP, length 82 [|LLDP] 17:03:55.228553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.228562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.228563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.228577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.228578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 069a ea7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.228580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.228581 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.228582 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.228583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.228584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.228584 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.238533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.238534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.238542 LLDP, length 82 [|LLDP] 17:03:55.238543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.238553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.238554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06a2 8b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.238555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.238556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.238557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.238563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.238564 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.238565 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.238566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.238567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.238568 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.248542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.248544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.248551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.248552 LLDP, length 82 [|LLDP] 17:03:55.248554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.248562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.248564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.248577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.248577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06aa 2cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.248579 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.248580 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.248580 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.248581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.248582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.248583 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.258530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.258532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.258546 LLDP, length 82 [|LLDP] 17:03:55.258547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.258557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.258558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06b1 cdde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.258560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.258560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.258562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.258567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.258568 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.258569 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.258570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.258571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.258572 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.268561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.268563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.268570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.268571 LLDP, length 82 [|LLDP] 17:03:55.268573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.268581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.268582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.268596 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.268596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06b9 6efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.268598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.268599 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.268600 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.268601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.268602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.268603 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.278532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.278534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.278541 LLDP, length 82 [|LLDP] 17:03:55.278542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.278552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.278553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06c1 101e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.278554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.278555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.278556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.278562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.278563 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.278564 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.278565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.288525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.288527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.288534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.288535 LLDP, length 82 [|LLDP] 17:03:55.288538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.288548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.288568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.288569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06c8 b13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.288571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.298533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.298535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.298545 LLDP, length 82 [|LLDP] 17:03:55.298548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.298560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.298561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06d0 525e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.298563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.298564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.298567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.308525 LLDP, length 82 [|LLDP] 17:03:55.308527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.308536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.308537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.308545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.308547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.308548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06d7 f37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.308549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.308551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.318535 LLDP, length 82 [|LLDP] 17:03:55.318537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.318550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.318551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06df 949e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.318552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.318553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.318554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.318555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.318564 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.318566 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.318567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.318573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.318575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.318576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.318577 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.328543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.328545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.328555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.328556 LLDP, length 82 [|LLDP] 17:03:55.328558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.328567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.328568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.328585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.328585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06e7 35be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.328587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.328588 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.328589 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.328590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.328591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.328592 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.338534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.338536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.338544 LLDP, length 82 [|LLDP] 17:03:55.338546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.338556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.338557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06ee d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.338558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.338559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.338560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.338566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.338568 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.338568 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.338569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.338570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.338571 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.348538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.348540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.348547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.348549 LLDP, length 82 [|LLDP] 17:03:55.348551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.348559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.348560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.348575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.348575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06f6 77fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.348577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.348578 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.348579 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.348580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.348581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.348582 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.358539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.358542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.358550 LLDP, length 82 [|LLDP] 17:03:55.358551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.358560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.358561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06fe 191e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.358562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.358563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.358565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.358570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.358572 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.358573 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.358574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.358574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.358575 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.368540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.368542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.368552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.368553 LLDP, length 82 [|LLDP] 17:03:55.368555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.368566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.368567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.368583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.368584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0705 ba3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.368586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.368586 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.368588 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.368589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.368590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.368591 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.378535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.378537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.378546 LLDP, length 82 [|LLDP] 17:03:55.378547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.378558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.378559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 070d 5b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.378561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.378562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.378563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.378568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.378570 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.378570 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.378571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.388529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.388531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.388539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.388540 LLDP, length 82 [|LLDP] 17:03:55.388542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.388551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.388563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.388564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0714 fc7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.388565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.398526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.398528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.398536 LLDP, length 82 [|LLDP] 17:03:55.398538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.398548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.398548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 071c 9d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.398550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.398551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.398554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.408525 LLDP, length 82 [|LLDP] 17:03:55.408526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.408535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.408536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.408545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.408547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.408548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0724 3ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.408549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.408551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.418533 LLDP, length 82 [|LLDP] 17:03:55.418535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.418547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.418548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 072b dfde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.418550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.418551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.418552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.418553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.418561 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.418563 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.418564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.418570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.418571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.418572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.418573 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.428531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.428533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.428540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.428541 LLDP, length 82 [|LLDP] 17:03:55.428543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.428551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.428553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.428567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.428567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0733 80fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.428569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.428570 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.428571 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.428572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.428573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.428574 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.438530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.438531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.438539 LLDP, length 82 [|LLDP] 17:03:55.438541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.438551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.438551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 073b 221e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.438553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.438554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.438555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.438561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.438563 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.438563 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.438564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.438565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.438566 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.448529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.448531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.448540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.448540 LLDP, length 82 [|LLDP] 17:03:55.448542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.448550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.448552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.448567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.448567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0742 c33e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.448569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.448570 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.448571 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.448572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.448573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.448574 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.458534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.458536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.458543 LLDP, length 82 [|LLDP] 17:03:55.458545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.458555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.458556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 074a 645e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.458557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.458558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.458559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.458564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.458566 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.458567 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.458568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.458569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.458569 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.468538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.468540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.468548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.468549 LLDP, length 82 [|LLDP] 17:03:55.468551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.468559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.468561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.468576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.468577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0752 057e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.468578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.468579 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.468580 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.468581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.468582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.468583 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.478526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.478528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.478536 LLDP, length 82 [|LLDP] 17:03:55.478538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.478547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.478548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0759 a69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.478549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.478550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.478551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.478557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.478558 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.478559 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.478560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.488523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.488525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.488532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.488533 LLDP, length 82 [|LLDP] 17:03:55.488535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.488543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.488554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.488555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0761 47be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.488556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.498523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.498525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.498534 LLDP, length 82 [|LLDP] 17:03:55.498536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.498545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.498546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0768 e8de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.498548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.498549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.498552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.508521 LLDP, length 82 [|LLDP] 17:03:55.508522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.508531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.508531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.508541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.508544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.508545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0770 89fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.508546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.508547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.518537 LLDP, length 82 [|LLDP] 17:03:55.518539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.518551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.518552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0778 2b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.518553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.518554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.518555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.518556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.518565 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.518567 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.518568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.518573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.518575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.518576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.518577 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.528529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.528530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.528538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.528539 LLDP, length 82 [|LLDP] 17:03:55.528541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.528558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.528560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.528578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.528579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 077f cc3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.528581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.528582 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.528583 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.528584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.528585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.528585 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.538524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.538526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.538534 LLDP, length 82 [|LLDP] 17:03:55.538536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.538544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.538560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0787 6d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.538561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.538562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.538563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.538570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.538571 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.538572 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.538574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.538575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.538576 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.548548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.548551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.548562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.548563 LLDP, length 82 [|LLDP] 17:03:55.548566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.548578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.548579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.548598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.548598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 078f 0e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.548600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.548601 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.548602 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.548603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.548604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.548606 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.558531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.558532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.558539 LLDP, length 82 [|LLDP] 17:03:55.558549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.558561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.558562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0796 af9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.558563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.558565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.558566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.558571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.558573 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.558574 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.558575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.558576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.558576 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.568533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.568535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.568545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.568546 LLDP, length 82 [|LLDP] 17:03:55.568548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.568557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.568558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.568574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.568575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 079e 50be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.568576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.568577 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.568578 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.568579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.568580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.568581 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.578527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.578529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.578537 LLDP, length 82 [|LLDP] 17:03:55.578538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.578549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.578550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07a5 f1de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.578551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.578552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.578553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.578559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.578560 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.578561 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.578562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.588519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.588521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.588529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.588530 LLDP, length 82 [|LLDP] 17:03:55.588532 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.588550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.588566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.588567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07ad 92fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.588569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.598525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.598526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.598535 LLDP, length 82 [|LLDP] 17:03:55.598536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.598546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.598548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07b5 341e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.598549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.598550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.598553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.608523 LLDP, length 82 [|LLDP] 17:03:55.608525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.608534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.608535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.608544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.608547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.608548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07bc d53e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.608549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.608551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.618532 LLDP, length 82 [|LLDP] 17:03:55.618534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.618547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.618548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07c4 765e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.618549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.618550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.618551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.618552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.618562 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.618564 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.618565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.618570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.618572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.618573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.618574 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.628527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.628529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.628538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.628539 LLDP, length 82 [|LLDP] 17:03:55.628541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.628551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.628552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.628565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.628566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07cc 177e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.628568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.628569 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.628570 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.628571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.628572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.628573 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.638523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.638525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.638532 LLDP, length 82 [|LLDP] 17:03:55.638533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.638543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.638543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07d3 b89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.638545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.638546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.638547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.638553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.638555 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.638555 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.638556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.638557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.638558 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.648518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.648520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.648533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.648534 LLDP, length 82 [|LLDP] 17:03:55.648536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.648544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.648545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.648557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.648558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07db 59be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.648559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.648560 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.648562 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.648562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.648563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.648564 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.658522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.658524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.658529 LLDP, length 82 [|LLDP] 17:03:55.658531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.658540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.658541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07e2 fade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.658542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.658543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.658544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.658549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.658551 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.658552 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.658553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.658554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.658554 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.668521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.668523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.668530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.668531 LLDP, length 82 [|LLDP] 17:03:55.668533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.668540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.668541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.668552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.668553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07ea 9bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.668555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.668556 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.668557 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.668558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.668559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.668559 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.678518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.678520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.678526 LLDP, length 82 [|LLDP] 17:03:55.678527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.678536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.678537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07f2 3d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.678539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.678540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.678541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.678546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.678548 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.678548 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.678549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.688510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.688511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.688517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.688518 LLDP, length 82 [|LLDP] 17:03:55.688520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.688528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.688537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.688537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07f9 de3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.688539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.698510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.698512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.698518 LLDP, length 82 [|LLDP] 17:03:55.698519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.698527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.698528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0801 7f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.698529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.698530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.698533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.708513 LLDP, length 82 [|LLDP] 17:03:55.708515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.708522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.708523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.708532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.708534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.708535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0809 207e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.708537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.708538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.718523 LLDP, length 82 [|LLDP] 17:03:55.718525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.718536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.718537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0810 c19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.718538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.718539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.718540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.718541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.718550 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.718552 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.718553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.718558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.718560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.718561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.718562 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.728519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.728521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.728527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.728528 LLDP, length 82 [|LLDP] 17:03:55.728530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.728537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.728538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.728549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.728550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0818 62be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.728551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.728552 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.728553 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.728554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.728555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.728556 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.738518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.738520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.738526 LLDP, length 82 [|LLDP] 17:03:55.738528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.738536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.738537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0820 03de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.738538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.738539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.738540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.738546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.738547 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.738548 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.738549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.738550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.738551 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.748516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.748517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.748538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.748539 LLDP, length 82 [|LLDP] 17:03:55.748541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.748548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.748549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.748561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.748562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0827 a4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.748563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.748564 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.748565 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.748566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.748567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.748568 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.758519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.758521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.758527 LLDP, length 82 [|LLDP] 17:03:55.758528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.758537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.758538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 082f 461e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.758539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.758540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.758541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.758546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.758548 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.758549 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.758550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.758551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.758552 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.768518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.768519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.768532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.768533 LLDP, length 82 [|LLDP] 17:03:55.768535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.768542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.768543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.768554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.768555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0836 e73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.768557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.768558 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.768558 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.768559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.768560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.768561 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.778514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.778515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.778522 LLDP, length 82 [|LLDP] 17:03:55.778523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.778532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.778533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 083e 885e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.778535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.778536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.778537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.778542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.778544 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.778544 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.778545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.788511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.788512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.788518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.788519 LLDP, length 82 [|LLDP] 17:03:55.788521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.788528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.788537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.788537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0846 297e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.788539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.798510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.798511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.798517 LLDP, length 82 [|LLDP] 17:03:55.798519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.798527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.798528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 084d ca9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.798529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.798530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.798533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.808512 LLDP, length 82 [|LLDP] 17:03:55.808514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.808521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.808522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.808530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.808533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.808534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0855 6bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.808535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.808536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.818532 LLDP, length 82 [|LLDP] 17:03:55.818534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.818549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.818550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 085d 0cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.818551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.818552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.818553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.818555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.818565 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.818567 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.818568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.818573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.818575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.818576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.818577 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.828520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.828522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.828529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.828530 LLDP, length 82 [|LLDP] 17:03:55.828532 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.828540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.828541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.828553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.828554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0864 adfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.828555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.828556 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.828557 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.828558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.828559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.828560 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.838517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.838518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.838525 LLDP, length 82 [|LLDP] 17:03:55.838526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.838536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.838536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 086c 4f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.838538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.838539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.838540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.838545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.838546 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.838547 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.838548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.838549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.838550 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.848514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.848515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.848528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.848529 LLDP, length 82 [|LLDP] 17:03:55.848531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.848546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.848548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.848560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.848561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0873 f03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.848562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.848563 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.848564 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.848565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.848566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.848567 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.858518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.858519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.858525 LLDP, length 82 [|LLDP] 17:03:55.858527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.858536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.858537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 087b 915e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.858538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.858539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.858540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.858545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.858547 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.858548 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.858548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.858549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.858550 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.868521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.868523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.868530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.868531 LLDP, length 82 [|LLDP] 17:03:55.868533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.868543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.868545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.868558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.868559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0883 327e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.868561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.868561 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.868562 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.868563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.868564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.868565 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.878521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.878523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.878529 LLDP, length 82 [|LLDP] 17:03:55.878531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.878541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.878542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 088a d39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.878543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.878544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.878545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.878551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.878552 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.878553 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.878554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.888507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.888509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.888514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.888515 LLDP, length 82 [|LLDP] 17:03:55.888517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.888525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.888534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.888534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0892 74be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.888536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.898505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.898507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.898513 LLDP, length 82 [|LLDP] 17:03:55.898514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.898523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.898523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 089a 15de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.898525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.898526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.898529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.908507 LLDP, length 82 [|LLDP] 17:03:55.908508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.908515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.908516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.908523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.908525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.908526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08a1 b6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.908527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.908528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.918520 LLDP, length 82 [|LLDP] 17:03:55.918521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.918532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.918532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08a9 581e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.918534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.918535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.918536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.918537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.918545 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.918547 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.918548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.918554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.918555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.918556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.918557 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.928519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.928521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.928528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.928529 LLDP, length 82 [|LLDP] 17:03:55.928531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.928538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.928540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.928552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.928553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08b0 f93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.928554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.928555 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.928556 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.928557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.928558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.928559 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.938514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.938516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.938523 LLDP, length 82 [|LLDP] 17:03:55.938524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.938533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.938535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08b8 9a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.938536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.938537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.938538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.938543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.938544 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.938545 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.938546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.938547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.938548 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.948512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.948513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.948520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.948521 LLDP, length 82 [|LLDP] 17:03:55.948522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.948530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.948531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.948542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.948543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08c0 3b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.948545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.948546 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.948547 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.948548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.948548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.948550 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.958514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.958515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.958522 LLDP, length 82 [|LLDP] 17:03:55.958523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.958532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.958532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08c7 dc9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.958534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.958535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.958536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.958542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.958543 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.958544 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.958545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.958546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.958547 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.968514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.968515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.968521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.968522 LLDP, length 82 [|LLDP] 17:03:55.968524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.968530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.968532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.968542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.968543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08cf 7dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.968545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.968545 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.968546 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.968547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.968549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.968550 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.978510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.978511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.978518 LLDP, length 82 [|LLDP] 17:03:55.978519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.978528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.978529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08d7 1ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.978530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.978531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.978532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.978538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.978539 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.978540 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.978541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.988506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.988507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.988514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.988515 LLDP, length 82 [|LLDP] 17:03:55.988517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.988524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.988533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.988533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08de bffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.988535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.998503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.998505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.998511 LLDP, length 82 [|LLDP] 17:03:55.998513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.998520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.998521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08e6 611e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.998522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.998524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.998527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.008502 LLDP, length 82 [|LLDP] 17:03:56.008504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.008510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.008511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.008518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.008521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.008522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08ee 023e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.008523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.008524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.018512 LLDP, length 82 [|LLDP] 17:03:56.018513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.018523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.018524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08f5 a35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.018525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.018526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.018527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.018535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.018537 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.018538 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.018539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.018545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.018547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.018548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.018549 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.028514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.028515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.028530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.028531 LLDP, length 82 [|LLDP] 17:03:56.028533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.028544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.028546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.028561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.028562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08fd 447e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.028564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.028565 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.028566 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.028567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.028568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.028569 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.038516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.038518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.038525 LLDP, length 82 [|LLDP] 17:03:56.038527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.038535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.038535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0904 e59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.038537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.038538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.038539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.038544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.038546 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.038547 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.038548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.038549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.038549 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.048516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.048517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.048525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.048526 LLDP, length 82 [|LLDP] 17:03:56.048528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.048537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.048538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.048553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.048553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 090c 86be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.048555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.048555 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.048556 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.048557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.048558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.048559 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.058516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.058518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.058526 LLDP, length 82 [|LLDP] 17:03:56.058528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.058536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.058537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0914 27de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.058539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.058540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.058540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.058546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.058548 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.058549 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.058550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.058551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.058551 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.068518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.068520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.068527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.068528 LLDP, length 82 [|LLDP] 17:03:56.068531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.068538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.068539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.068553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.068554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 091b c8fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.068556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.068557 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.068557 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.068558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.068560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.068561 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.078512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.078514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.078521 LLDP, length 82 [|LLDP] 17:03:56.078523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.078532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.078532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0923 6a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.078534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.078535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.078536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.078541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.078542 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.078543 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.078544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.088507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.088509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.088516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.088516 LLDP, length 82 [|LLDP] 17:03:56.088519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.088532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.088548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.088548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 092b 0b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.088550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.098504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.098506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.098513 LLDP, length 82 [|LLDP] 17:03:56.098515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.098523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.098524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0932 ac5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.098526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.098527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.098529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.108506 LLDP, length 82 [|LLDP] 17:03:56.108507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.108514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.108515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.108524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.108526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.108527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 093a 4d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.108529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.108530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.118516 LLDP, length 82 [|LLDP] 17:03:56.118517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.118532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.118533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0941 ee9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.118534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.118535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.118536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.118537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.118547 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.118549 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.118550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.118556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.118557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.118558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.118559 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.128515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.128517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.128526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.128527 LLDP, length 82 [|LLDP] 17:03:56.128529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.128536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.128537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.128552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.128553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0949 8fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.128555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.128556 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.128556 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.128557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.128558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.128559 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.138516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.138518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.138526 LLDP, length 82 [|LLDP] 17:03:56.138528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.138537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.138537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0951 30de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.138539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.138540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.138541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.138547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.138549 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.138550 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.138551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.138551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.138552 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.148514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.148516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.148523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.148524 LLDP, length 82 [|LLDP] 17:03:56.148527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.148534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.148535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.148550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.148551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0958 d1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.148552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.148553 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.148554 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.148555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.148556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.148557 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.158512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.158514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.158521 LLDP, length 82 [|LLDP] 17:03:56.158523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.158531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.158532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0960 731e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.158533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.158534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.158535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.158541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.158543 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.158544 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.158544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.158545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.158546 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.168511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.168513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.168520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.168521 LLDP, length 82 [|LLDP] 17:03:56.168523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.168530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.168531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.168552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.168553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0968 143e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.168555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.168556 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.168557 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.168558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.168559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.168560 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.178509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.178511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.178518 LLDP, length 82 [|LLDP] 17:03:56.178520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.178528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.178529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 096f b55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.178530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.178531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.178533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.178538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.178540 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.178541 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.178542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.188505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.188506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.188514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.188515 LLDP, length 82 [|LLDP] 17:03:56.188517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.188525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.188536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.188537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0977 567e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.188538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.198505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.198513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.198520 LLDP, length 82 [|LLDP] 17:03:56.198522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.198531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.198532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 097e f79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.198533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.198535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.198537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.208502 LLDP, length 82 [|LLDP] 17:03:56.208503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.208510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.208511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.208519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.208522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.208523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0986 98be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.208524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.208526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.218513 LLDP, length 82 [|LLDP] 17:03:56.218515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.218526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.218527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 098e 39de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.218529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.218530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.218531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.218532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.218541 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.218543 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.218544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.218549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.218551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.218552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.218553 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.228512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.228514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.228529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.228530 LLDP, length 82 [|LLDP] 17:03:56.228532 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.228538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.228540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.228555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.228555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0995 dafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.228557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.228558 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.228559 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.228560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.228561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.228562 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.238515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.238517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.238526 LLDP, length 82 [|LLDP] 17:03:56.238527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.238536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.238537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 099d 7c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.238539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.238540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.238541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.238547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.238548 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.238549 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.238550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.238551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.238552 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.248509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.248510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.248518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.248519 LLDP, length 82 [|LLDP] 17:03:56.248521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.248528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.248530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.248545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.248546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09a5 1d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.248547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.248548 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.248549 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.248550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.248551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.248552 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.258511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.258513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.258521 LLDP, length 82 [|LLDP] 17:03:56.258523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.258531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.258532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09ac be5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.258533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.258534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.258535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.258541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.258542 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.258543 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.258544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.258545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.258546 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.268509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.268510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.268518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.268519 LLDP, length 82 [|LLDP] 17:03:56.268521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.268529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.268530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.268544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.268545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09b4 5f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.268546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.268547 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.268548 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.268549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.268550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.268551 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.278507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.278508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.278516 LLDP, length 82 [|LLDP] 17:03:56.278518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.278526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.278527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09bc 009e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.278528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.278529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.278530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.278536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.278538 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.278539 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.278540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.288501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.288503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.288510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.288511 LLDP, length 82 [|LLDP] 17:03:56.288513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.288521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.288532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.288532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09c3 a1be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.288534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.298499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.298501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.298509 LLDP, length 82 [|LLDP] 17:03:56.298510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.298518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.298519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09cb 42de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.298521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.298521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.298524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.308501 LLDP, length 82 [|LLDP] 17:03:56.308502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.308509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.308510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.308520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.308522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.308523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09d2 e3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.308524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.308526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.318513 LLDP, length 82 [|LLDP] 17:03:56.318515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.318527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.318527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09da 851e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.318529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.318530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.318531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.318532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.318542 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.318544 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.318545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.318550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.318552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.318553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.318554 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.328507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.328509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.328517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.328519 LLDP, length 82 [|LLDP] 17:03:56.328521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.328529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.328530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.328551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.328552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09e2 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.328554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.328555 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.328556 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.328556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.328558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.328559 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.338512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.338514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.338522 LLDP, length 82 [|LLDP] 17:03:56.338524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.338533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.338534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09e9 c75e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.338535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.338536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.338537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.338543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.338544 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.338545 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.338546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.338547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.338548 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.348511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.348513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.348522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.348523 LLDP, length 82 [|LLDP] 17:03:56.348525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.348532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.348533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.348548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.348549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09f1 687e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.348550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.348551 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.348552 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.348553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.348554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.348555 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.358509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.358511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.358518 LLDP, length 82 [|LLDP] 17:03:56.358520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.358529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.358530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09f9 099e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.358531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.358532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.358533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.358539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.358540 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.358541 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.358542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.358543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.358544 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.368519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.368521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.368530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.368531 LLDP, length 82 [|LLDP] 17:03:56.368533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.368544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.368545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.368562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.368563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a00 aabe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.368565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.368566 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.368567 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.368567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.368568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.368569 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.378509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.378510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.378519 LLDP, length 82 [|LLDP] 17:03:56.378521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.378530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.378531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a08 4bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.378533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.378534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.378535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.378541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.378542 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.378543 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.378544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.388500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.388502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.388510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.388511 LLDP, length 82 [|LLDP] 17:03:56.388513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.388520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.388532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.388533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a0f ecfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.388535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.398499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.398501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.398508 LLDP, length 82 [|LLDP] 17:03:56.398509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.398518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.398519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a17 8e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.398520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.398521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.398524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.408499 LLDP, length 82 [|LLDP] 17:03:56.408501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.408508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.408509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.408517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.408519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.408520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a1f 2f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.408521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.408523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.418509 LLDP, length 82 [|LLDP] 17:03:56.418511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.418521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.418523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a26 d05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.418524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.418525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.418526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.418527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.418536 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.418538 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.418539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.418544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.418546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.418547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.418548 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.428512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.428514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.428521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.428522 LLDP, length 82 [|LLDP] 17:03:56.428524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.428532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.428533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.428547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.428548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a2e 717e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.428549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.428550 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.428551 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.428552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.428553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.428554 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.438506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.438509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.438516 LLDP, length 82 [|LLDP] 17:03:56.438518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.438526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.438527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a36 129e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.438528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.438529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.438530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.438536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.438537 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.438538 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.438539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.438540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.438541 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.448507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.448508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.448529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.448530 LLDP, length 82 [|LLDP] 17:03:56.448532 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.448540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.448541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.448557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.448557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a3d b3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.448559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.448560 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.448561 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.448562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.448563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.448564 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.458507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.458509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.458517 LLDP, length 82 [|LLDP] 17:03:56.458518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.458527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.458528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a45 54de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.458530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.458530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.458531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.458537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.458539 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.458540 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.458540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.458541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.458542 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.468507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.468509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.468516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.468517 LLDP, length 82 [|LLDP] 17:03:56.468519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.468527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.468529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.468543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.468544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a4c f5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.468545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.468546 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.468547 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.468548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.468549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.468550 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.478502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.478504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.478510 LLDP, length 82 [|LLDP] 17:03:56.478512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.478521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.478521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a54 971e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.478523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.478524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.478525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.478530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.478532 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.478533 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.478534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.488495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.488497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.488504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.488505 LLDP, length 82 [|LLDP] 17:03:56.488507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.488515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.488526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.488526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a5c 383e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.488528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.498495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.498497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.498505 LLDP, length 82 [|LLDP] 17:03:56.498506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.498514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.498515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a63 d95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.498516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.498517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.498520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.508496 LLDP, length 82 [|LLDP] 17:03:56.508498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.508505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.508506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.508514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.508517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.508517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a6b 7a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.508519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.508520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.518507 LLDP, length 82 [|LLDP] 17:03:56.518509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.518524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.518524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a73 1b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.518526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.518527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.518528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.518529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.518538 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.518540 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.518557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.518563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.518564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.518566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.518567 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.528521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.528523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.528534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.528535 LLDP, length 82 [|LLDP] 17:03:56.528538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.528550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.528551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.528570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.528571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a7a bcbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.528573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.528574 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.528574 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.528575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.528577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.528578 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.538527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.538528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.538541 LLDP, length 82 [|LLDP] 17:03:56.538543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.538557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.538558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a82 5dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.538560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.538561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.538562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.538568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.538570 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.538571 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.538572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.538573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.538574 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.548510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.548513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.548523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.548524 LLDP, length 82 [|LLDP] 17:03:56.548527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.548535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.548536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.548554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.548555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a89 fefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.548557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.548558 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.548559 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.548560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.548561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.548562 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.558510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.558512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.558522 LLDP, length 82 [|LLDP] 17:03:56.558524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.558534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.558534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a91 a01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.558536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.558537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.558538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.558544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.558546 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.558547 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.558548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.558549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.558550 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.568505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.568507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.568514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.568515 LLDP, length 82 [|LLDP] 17:03:56.568518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.568526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.568528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.568542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.568543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a99 413e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.568544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.568545 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.568546 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.568547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.568548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.568549 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.578500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.578502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.578510 LLDP, length 82 [|LLDP] 17:03:56.578511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.578520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.578520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0aa0 e25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.578522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.578523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.578524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.578529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.578532 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.578532 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.578533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.588491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.588493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.588500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.588501 LLDP, length 82 [|LLDP] 17:03:56.588503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.588511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.588522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.588522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0aa8 837e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.588524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.598493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.598495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.598502 LLDP, length 82 [|LLDP] 17:03:56.598503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.598512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.598513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ab0 249e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.598514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.598515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.598518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.608492 LLDP, length 82 [|LLDP] 17:03:56.608493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.608500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.608501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.608510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.608512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.608513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ab7 c5be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.608514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.608516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.618518 LLDP, length 82 [|LLDP] 17:03:56.618520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.618531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.618532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0abf 66de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.618533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.618534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.618535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.618536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.618545 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.618546 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.618547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.618553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.618554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.618555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.618556 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.628505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.628507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.628514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.628515 LLDP, length 82 [|LLDP] 17:03:56.628517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.628524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.628525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.628550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.628550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ac7 07fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.628552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.628553 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.628554 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.628555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.628556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.628557 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.638500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.638501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.638509 LLDP, length 82 [|LLDP] 17:03:56.638510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.638519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.638519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ace a91e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.638520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.638522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.638523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.638528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.638530 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.638531 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.638532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.638533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.638534 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.648507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.648509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.648517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.648518 LLDP, length 82 [|LLDP] 17:03:56.648528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.648535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.648537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.648554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.648555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ad6 4a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.648556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.648557 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.648558 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.648559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.648560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.648561 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.658506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.658508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.658518 LLDP, length 82 [|LLDP] 17:03:56.658520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.658529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.658530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0add eb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.658532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.658533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.658533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.658539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.658541 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.658542 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.658543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.658544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.658545 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.668507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.668509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.668518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.668519 LLDP, length 82 [|LLDP] 17:03:56.668522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.668530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.668532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.668548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.668548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ae5 8c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.668550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.668551 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.668552 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.668553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.668554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.668555 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.678498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.678500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.678507 LLDP, length 82 [|LLDP] 17:03:56.678508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.678518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.678519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0aed 2d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.678521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.678521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.678522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.678528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.678530 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.678531 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.678532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.688491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.688493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.688500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.688501 LLDP, length 82 [|LLDP] 17:03:56.688503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.688513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.688523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.688524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0af4 cebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.688526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.698488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.698490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.698497 LLDP, length 82 [|LLDP] 17:03:56.698499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.698507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.698508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0afc 6fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.698509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.698510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.698513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.708491 LLDP, length 82 [|LLDP] 17:03:56.708493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.708500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.708500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.708509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.708512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.708513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b04 10fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.708514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.708515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.718501 LLDP, length 82 [|LLDP] 17:03:56.718503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.718513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.718514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b0b b21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.718516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.718516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.718517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.718519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.718528 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.718530 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.718531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.718536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.718538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.718538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.718539 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.728505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.728507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.728516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.728517 LLDP, length 82 [|LLDP] 17:03:56.728520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.728528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.728529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.728546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.728547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b13 533e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.728548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.728549 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.728550 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.728551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.728552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.728553 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.738500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.738502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.738510 LLDP, length 82 [|LLDP] 17:03:56.738512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.738520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.738521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b1a f45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.738522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.738523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.738524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.738530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.738531 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.738532 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.738533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.738533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.738534 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.748501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.748503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.748510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.748511 LLDP, length 82 [|LLDP] 17:03:56.748514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.748521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.748523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.748538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.748539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b22 957e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.748540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.748541 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.748542 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.748543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.748544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.748545 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.758499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.758507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.758515 LLDP, length 82 [|LLDP] 17:03:56.758518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.758526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.758527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b2a 369e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.758528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.758529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.758530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.758536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.758537 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.758538 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.758539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.758540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.758541 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.768503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.768505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.768514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.768515 LLDP, length 82 [|LLDP] 17:03:56.768517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.768532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.768534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.768549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.768550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b31 d7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.768551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.768552 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.768553 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.768554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.768555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.768557 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.778494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.778496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.778504 LLDP, length 82 [|LLDP] 17:03:56.778506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.778514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.778515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b39 78de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.778517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.778518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.778519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.778524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.778525 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.778526 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.778527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.788488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.788490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.788497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.788498 LLDP, length 82 [|LLDP] 17:03:56.788500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.788508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.788518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.788519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b41 19fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.788521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.798488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.798490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.798497 LLDP, length 82 [|LLDP] 17:03:56.798499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.798507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.798507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b48 bb1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.798509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.798510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.798513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.808489 LLDP, length 82 [|LLDP] 17:03:56.808491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.808497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.808498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.808507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.808510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.808511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b50 5c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.808512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.808513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.818510 LLDP, length 82 [|LLDP] 17:03:56.818512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.818527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.818528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b57 fd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.818529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.818530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.818531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.818532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.818543 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.818545 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.818546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.818551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.818553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.818554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.818555 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.828501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.828503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.828511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.828512 LLDP, length 82 [|LLDP] 17:03:56.828514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.828522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.828523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.828545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.828546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b5f 9e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.828547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.828548 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.828549 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.828550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.828551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.828552 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.838504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.838506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.838514 LLDP, length 82 [|LLDP] 17:03:56.838515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.838523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.838524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b67 3f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.838525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.838526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.838528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.838533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.838535 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.838536 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.838537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.838538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.838539 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.848497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.848498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.848506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.848507 LLDP, length 82 [|LLDP] 17:03:56.848509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.848515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.848517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.848532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.848533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b6e e0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.848534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.848535 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.848536 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.848537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.848538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.848539 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.858502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.858504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.858512 LLDP, length 82 [|LLDP] 17:03:56.858514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.858524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.858525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b76 81de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.858527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.858528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.858529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.858535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.858536 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.858537 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.858538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.858539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.858540 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.868505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.868506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.868517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.868518 LLDP, length 82 [|LLDP] 17:03:56.868520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.868529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.868530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.868547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.868548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b7e 22fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.868549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.868550 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.868552 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.868553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.868554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.868555 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.878500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.878502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.878511 LLDP, length 82 [|LLDP] 17:03:56.878513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.878524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.878525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b85 c41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.878526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.878528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.878529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.878534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.878536 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.878537 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.878538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.888486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.888488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.888495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.888497 LLDP, length 82 [|LLDP] 17:03:56.888499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.888506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.888518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.888519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b8d 653e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.888521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.898488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.898489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.898497 LLDP, length 82 [|LLDP] 17:03:56.898498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.898507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.898508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b95 065e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.898509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.898510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.898513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.908488 LLDP, length 82 [|LLDP] 17:03:56.908490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.908496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.908497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.908505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.908508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.908509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b9c a77e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.908510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.908512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.918498 LLDP, length 82 [|LLDP] 17:03:56.918500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.918510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.918511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ba4 489e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.918513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.918513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.918514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.918515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.918526 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.918528 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.918529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.918534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.918536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.918536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.918537 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.928494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.928496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.928504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.928505 LLDP, length 82 [|LLDP] 17:03:56.928507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.928514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.928516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.928539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.928540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bab e9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.928541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.928542 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.928543 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.928544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.928545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.928546 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.938496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.938498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.938506 LLDP, length 82 [|LLDP] 17:03:56.938507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.938516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.938516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bb3 8ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.938518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.938519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.938520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.938526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.938527 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.938528 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.938529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.938529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.938530 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.948495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.948497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.948505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.948506 LLDP, length 82 [|LLDP] 17:03:56.948508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.948515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.948517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.948531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.948532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bbb 2bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.948533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.948534 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.948535 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.948536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.948537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.948538 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.958492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.958493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.958502 LLDP, length 82 [|LLDP] 17:03:56.958503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.958512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.958513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bc2 cd1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.958514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.958515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.958516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.958522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.958523 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.958525 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.958525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.958526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.958527 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.968495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.968497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.968504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.968505 LLDP, length 82 [|LLDP] 17:03:56.968507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.968514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.968516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.968530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.968530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bca 6e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.968540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.968541 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.968542 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.968543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.968544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.968545 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.978492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.978494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.978503 LLDP, length 82 [|LLDP] 17:03:56.978504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.978513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.978514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bd2 0f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.978516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.978517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.978517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.978523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.978524 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.978525 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.978526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.988487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.988489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.988498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.988499 LLDP, length 82 [|LLDP] 17:03:56.988501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.988509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.988522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.988523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bd9 b07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.988524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.998485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.998487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.998494 LLDP, length 82 [|LLDP] 17:03:56.998496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.998504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.998505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0be1 519e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.998506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.998507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.998510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.008485 LLDP, length 82 [|LLDP] 17:03:57.008487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.008494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.008495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.008503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.008505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.008507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0be8 f2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.008508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.008509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.018493 LLDP, length 82 [|LLDP] 17:03:57.018495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.018509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.018510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bf0 93de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.018511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.018512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.018513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.018515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.018524 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.018526 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.018527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.018533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.018534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.018535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.018536 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.028492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.028494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.028501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.028502 LLDP, length 82 [|LLDP] 17:03:57.028504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.028511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.028513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.028528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.028528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bf8 34fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.028530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.028531 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.028532 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.028532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.028533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.028535 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.038492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.038494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.038501 LLDP, length 82 [|LLDP] 17:03:57.038503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.038512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.038512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bff d61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.038514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.038515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.038516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.038521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.038523 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.038524 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.038525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.038526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.038526 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.048495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.048496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.048504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.048505 LLDP, length 82 [|LLDP] 17:03:57.048507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.048514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.048516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.048530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.048530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c07 773e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.048532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.048533 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.048540 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.048541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.048542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.048543 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.058491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.058493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.058507 LLDP, length 82 [|LLDP] 17:03:57.058509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.058518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.058519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c0f 185e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.058521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.058522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.058523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.058529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.058530 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.058531 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.058532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.058533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.058534 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.068491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.068492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.068500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.068501 LLDP, length 82 [|LLDP] 17:03:57.068503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.068510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.068512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.068526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.068527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c16 b97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.068529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.068530 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.068531 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.068532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.068533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.068534 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.078486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.078488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.078497 LLDP, length 82 [|LLDP] 17:03:57.078498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.078506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.078507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c1e 5a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.078508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.078509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.078510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.078515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.078517 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.078518 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.078519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.088482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.088484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.088493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.088494 LLDP, length 82 [|LLDP] 17:03:57.088496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.088504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.088515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.088516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c25 fbbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.088517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.098483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.098485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.098492 LLDP, length 82 [|LLDP] 17:03:57.098494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.098503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.098504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c2d 9cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.098505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.098506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.098509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.108484 LLDP, length 82 [|LLDP] 17:03:57.108485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.108492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.108493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.108502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.108504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.108505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c35 3dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.108507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.108508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.118496 LLDP, length 82 [|LLDP] 17:03:57.118498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.118509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.118509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c3c df1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.118511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.118512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.118513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.118514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.118523 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.118525 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.118526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.118532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.118533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.118534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.118535 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.128490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.128492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.128506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.128507 LLDP, length 82 [|LLDP] 17:03:57.128509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.128517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.128519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.128534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.128534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c44 803e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.128536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.128537 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.128538 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.128539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.128539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.128541 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.138489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.138491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.138498 LLDP, length 82 [|LLDP] 17:03:57.138500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.138509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.138510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c4c 215e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.138511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.138512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.138513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.138519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.138521 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.138522 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.138523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.138523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.138524 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.148495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.148497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.148504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.148505 LLDP, length 82 [|LLDP] 17:03:57.148507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.148514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.148515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.148529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.148529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c53 c27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.148531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.148532 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.148533 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.148533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.148534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.148535 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.158496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.158498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.158506 LLDP, length 82 [|LLDP] 17:03:57.158508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.158517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.158518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c5b 639e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.158519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.158520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.158521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.158527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.158528 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.158529 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.158530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.158531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.158532 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.168488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.168490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.168498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.168499 LLDP, length 82 [|LLDP] 17:03:57.168501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.168508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.168509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.168525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.168526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c63 04be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.168527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.168528 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.168529 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.168530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.168532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.168533 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.178486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.178488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.178495 LLDP, length 82 [|LLDP] 17:03:57.178496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.178506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.178507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c6a a5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.178508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.178509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.178510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.178516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.178518 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.178519 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.178520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.188482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.188484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.188492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.188493 LLDP, length 82 [|LLDP] 17:03:57.188495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.188502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.188514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.188515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c72 46fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.188516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.198480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.198482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.198490 LLDP, length 82 [|LLDP] 17:03:57.198492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.198501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.198502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c79 e81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.198503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.198504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.198507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.208481 LLDP, length 82 [|LLDP] 17:03:57.208482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.208489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.208490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.208499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.208501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.208502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c81 893e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.208503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.208505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.218490 LLDP, length 82 [|LLDP] 17:03:57.218492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.218504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.218505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c89 2a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.218506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.218507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.218508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.218509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.218518 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.218520 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.218521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.218527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.218528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.218529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.218530 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.228488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.228489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.228497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.228498 LLDP, length 82 [|LLDP] 17:03:57.228500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.228507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.228508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.228522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.228523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c90 cb7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.228524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.228525 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.228526 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.228527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.228528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.228529 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.238487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.238490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.238497 LLDP, length 82 [|LLDP] 17:03:57.238499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.238507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.238508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c98 6c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.238509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.238510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.238511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.238516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.238517 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.238518 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.238519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.238520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.238521 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.248487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.248488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.248496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.248497 LLDP, length 82 [|LLDP] 17:03:57.248499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.248506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.248507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.248521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.248522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ca0 0dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.248523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.248524 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.248525 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.248526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.248527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.248528 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.258488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.258490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.258498 LLDP, length 82 [|LLDP] 17:03:57.258499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.258507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.258508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ca7 aede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.258509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.258510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.258511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.258517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.258518 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.258519 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.258520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.258521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.258522 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.268491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.268493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.268501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.268502 LLDP, length 82 [|LLDP] 17:03:57.268504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.268511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.268512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.268527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.268528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0caf 4ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.268529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.268530 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.268531 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.268532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.268533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.268534 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.278492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.278494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.278504 LLDP, length 82 [|LLDP] 17:03:57.278506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.278518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.278519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cb6 f11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.278521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.278522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.278523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.278529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.278530 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.278531 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.278532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.288488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.288490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.288500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.288501 LLDP, length 82 [|LLDP] 17:03:57.288504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.288514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.288531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.288532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cbe 923e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.288533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.298490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.298500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.298513 LLDP, length 82 [|LLDP] 17:03:57.298515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.298527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.298528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cc6 335e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.298529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.298530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.298533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.308490 LLDP, length 82 [|LLDP] 17:03:57.308492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.308501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.308502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.308516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.308519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.308520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ccd d47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.308521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.308522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.318497 LLDP, length 82 [|LLDP] 17:03:57.318499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.318513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.318514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cd5 759e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.318515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.318516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.318517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.318518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.318529 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.318530 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.318531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.318537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.318538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.318539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.318540 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.328486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.328488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.328495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.328496 LLDP, length 82 [|LLDP] 17:03:57.328498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.328506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.328508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.328522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.328522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cdd 16be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.328524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.328525 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.328526 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.328527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.328528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.328529 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.338487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.338488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.338496 LLDP, length 82 [|LLDP] 17:03:57.338497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.338506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.338507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ce4 b7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.338509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.338510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.338511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.338516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.338518 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.338519 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.338520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.338521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.338522 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.348519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.348523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.348538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.348539 LLDP, length 82 [|LLDP] 17:03:57.348542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.348559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.348560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.348592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.348593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cec 58fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.348595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.348596 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.348597 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.348598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.348599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.348601 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.358525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.358528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.358544 LLDP, length 82 [|LLDP] 17:03:57.358546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.358566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.358567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cf3 fa1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.358568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.358569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.358571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.358579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.358580 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.358582 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.358583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.358584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.358586 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.368522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.368525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.368540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.368541 LLDP, length 82 [|LLDP] 17:03:57.368544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.368559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.368561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.368587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.368588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cfb 9b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.368590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.368592 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.368594 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.368595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.368597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.368598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.378522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.378525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.378542 LLDP, length 82 [|LLDP] 17:03:57.378544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.378563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.378564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d03 3c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.378565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.378566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.378567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.378574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.378576 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.378577 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.378578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.388504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.388508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.388524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.388525 LLDP, length 82 [|LLDP] 17:03:57.388527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.388542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.388561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.388562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d0a dd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.388564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.398501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.398503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.398519 LLDP, length 82 [|LLDP] 17:03:57.398521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.398536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.398537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d12 7e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.398538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.398539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.398542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.408507 LLDP, length 82 [|LLDP] 17:03:57.408510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.408524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.408526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.408543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.408547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.408548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d1a 1fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.408549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.408551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.418507 LLDP, length 82 [|LLDP] 17:03:57.418508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.418524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.418525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d21 c0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.418526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.418527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.418528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.418529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.418542 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.418544 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.418546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.418552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.418553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.418554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.418555 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.428483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.428485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.428492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.428493 LLDP, length 82 [|LLDP] 17:03:57.428496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.428505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.428507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.428522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.428523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d29 61fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.428524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.428525 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.428526 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.428527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.428528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.428529 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.438483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.438485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.438492 LLDP, length 82 [|LLDP] 17:03:57.438494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.438503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.438503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d31 031e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.438505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.438506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.438507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.438513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.438514 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.438515 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.438516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.438517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.438518 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.448482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.448484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.448492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.448493 LLDP, length 82 [|LLDP] 17:03:57.448495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.448503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.448505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.448519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.448520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d38 a43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.448521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.448522 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.448523 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.448524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.448525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.448526 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.458481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.458483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.458497 LLDP, length 82 [|LLDP] 17:03:57.458498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.458508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.458509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d40 455e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.458510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.458511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.458512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.458517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.458519 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.458520 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.458521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.458522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.458522 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.468482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.468484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.468491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.468492 LLDP, length 82 [|LLDP] 17:03:57.468494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.468502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.468503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.468517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.468518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d47 e67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.468519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.468520 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.468528 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.468529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.468530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.468531 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.478479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.478481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.478488 LLDP, length 82 [|LLDP] 17:03:57.478489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.478499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.478500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d4f 879e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.478501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.478502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.478503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.478508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.478510 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.478511 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.478512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.488471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.488473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.488479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.488480 LLDP, length 82 [|LLDP] 17:03:57.488482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.488490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.488502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.488502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d57 28be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.488504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.498469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.498471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.498478 LLDP, length 82 [|LLDP] 17:03:57.498493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.498506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.498507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d5e c9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.498508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.498509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.498512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.508488 LLDP, length 82 [|LLDP] 17:03:57.508490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.508502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.508503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.508515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.508519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.508520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d66 6afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.508521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.508523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.518492 LLDP, length 82 [|LLDP] 17:03:57.518499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.518513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.518514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d6e 0c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.518516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.518517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.518518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.518519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.518530 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.518532 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.518533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.518540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.518541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.518542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.518543 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.528486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.528488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.528496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.528497 LLDP, length 82 [|LLDP] 17:03:57.528499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.528509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.528511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.528525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.528526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d75 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.528527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.528528 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.528529 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.528530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.528531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.528532 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.538483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.538485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.538491 LLDP, length 82 [|LLDP] 17:03:57.538493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.538503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.538504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d7d 4e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.538505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.538506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.538507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.538513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.538514 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.538515 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.538516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.538517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.538518 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.548479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.548481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.548488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.548489 LLDP, length 82 [|LLDP] 17:03:57.548491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.548500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.548501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.548515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.548516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d84 ef7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.548518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.548519 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.548519 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.548520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.548521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.548522 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.558481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.558483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.558489 LLDP, length 82 [|LLDP] 17:03:57.558491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.558501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.558502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d8c 909e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.558503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.558504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.558505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.558511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.558512 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.558513 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.558514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.558515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.558516 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.568481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.568483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.568490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.568491 LLDP, length 82 [|LLDP] 17:03:57.568493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.568501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.568503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.568516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.568517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d94 31be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.568518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.568519 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.568520 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.568521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.568522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.568523 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.578474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.578476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.578483 LLDP, length 82 [|LLDP] 17:03:57.578484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.578494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.578495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d9b d2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.578496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.578497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.578498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.578504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.578505 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.578506 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.578507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.588470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.588472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.588479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.588480 LLDP, length 82 [|LLDP] 17:03:57.588482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.588492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.588503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.588504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0da3 73fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.588505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.598480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.598482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.598492 LLDP, length 82 [|LLDP] 17:03:57.598493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.598506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.598507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dab 151e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.598508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.598509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.598512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.608472 LLDP, length 82 [|LLDP] 17:03:57.608474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.608482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.608484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.608492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.608494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.608495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0db2 b63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.608496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.608498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.618483 LLDP, length 82 [|LLDP] 17:03:57.618484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.618496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.618497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dba 575e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.618499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.618500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.618501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.618502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.618513 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.618515 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.618516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.618521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.618523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.618524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.618525 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.628480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.628482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.628490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.628491 LLDP, length 82 [|LLDP] 17:03:57.628493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.628502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.628503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.628518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.628519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dc1 f87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.628521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.628522 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.628523 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.628524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.628525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.628525 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.638477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.638479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.638494 LLDP, length 82 [|LLDP] 17:03:57.638495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.638505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.638506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dc9 999e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.638507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.638508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.638509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.638515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.638516 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.638517 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.638518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.638519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.638520 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.648478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.648480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.648487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.648488 LLDP, length 82 [|LLDP] 17:03:57.648490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.648498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.648499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.648513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.648514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dd1 3abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.648516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.648517 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.648518 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.648519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.648527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.648528 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.658477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.658479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.658486 LLDP, length 82 [|LLDP] 17:03:57.658488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.658497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.658498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dd8 dbde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.658500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.658500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.658501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.658507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.658508 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.658509 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.658510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.658511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.658512 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.668479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.668481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.668488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.668489 LLDP, length 82 [|LLDP] 17:03:57.668491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.668499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.668500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.668514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.668515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0de0 7cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.668516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.668517 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.668518 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.668519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.668520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.668521 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.678474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.678476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.678483 LLDP, length 82 [|LLDP] 17:03:57.678484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.678493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.678494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0de8 1e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.678496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.678497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.678498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.678504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.678505 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.678506 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.678507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.688467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.688469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.688476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.688477 LLDP, length 82 [|LLDP] 17:03:57.688479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.688486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.688498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.688498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0def bf3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.688499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.698467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.698469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.698477 LLDP, length 82 [|LLDP] 17:03:57.698479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.698489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.698490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0df7 605e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.698491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.698492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.698495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.708467 LLDP, length 82 [|LLDP] 17:03:57.708468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.708476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.708477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.708485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.708488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.708489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dff 017e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.708490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.708491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.718477 LLDP, length 82 [|LLDP] 17:03:57.718479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.718491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.718492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e06 a29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.718493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.718494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.718495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.718496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.718505 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.718507 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.718508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.718513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.718515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.718516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.718516 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.728477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.728479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.728487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.728488 LLDP, length 82 [|LLDP] 17:03:57.728490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.728499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.728500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.728514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.728515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e0e 43be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.728516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.728518 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.728525 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.728526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.728527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.728528 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.738477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.738479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.738486 LLDP, length 82 [|LLDP] 17:03:57.738487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.738499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.738499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e15 e4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.738501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.738502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.738503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.738509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.738510 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.738511 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.738512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.738513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.738514 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.748474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.748476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.748482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.748483 LLDP, length 82 [|LLDP] 17:03:57.748486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.748494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.748496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.748509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.748510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e1d 85fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.748512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.748512 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.748513 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.748514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.748515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.748516 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.758473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.758475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.758481 LLDP, length 82 [|LLDP] 17:03:57.758483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.758493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.758493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e25 271e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.758494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.758495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.758496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.758501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.758503 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.758503 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.758504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.758505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.758506 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.768475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.768476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.768483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.768484 LLDP, length 82 [|LLDP] 17:03:57.768486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.768494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.768496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.768508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.768509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e2c c83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.768511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.768512 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.768513 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.768514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.768514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.768516 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.778471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.778473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.778481 LLDP, length 82 [|LLDP] 17:03:57.778482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.778491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.778492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e34 695e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.778494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.778494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.778495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.778501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.778502 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.778503 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.778504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.788466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.788468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.788474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.788476 LLDP, length 82 [|LLDP] 17:03:57.788478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.788487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.788498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.788499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e3c 0a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.788500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.798464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.798466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.798473 LLDP, length 82 [|LLDP] 17:03:57.798475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.798484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.798485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e43 ab9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.798486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.798487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.798490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.808465 LLDP, length 82 [|LLDP] 17:03:57.808467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.808475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.808476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.808484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.808486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.808487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e4b 4cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.808488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.808490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.818485 LLDP, length 82 [|LLDP] 17:03:57.818487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.818501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.818502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e52 edde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.818503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.818504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.818505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.818506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.818518 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.818519 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.818520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.818526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.818527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.818529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.818530 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.828474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.828476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.828484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.828485 LLDP, length 82 [|LLDP] 17:03:57.828487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.828496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.828497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.828512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.828513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e5a 8efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.828514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.828515 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.828523 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.828524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.828526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.828527 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.838476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.838478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.838486 LLDP, length 82 [|LLDP] 17:03:57.838488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.838499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.838500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e62 301e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.838501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.838502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.838503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.838509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.838510 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.838511 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.838512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.838513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.838514 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.848473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.848475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.848481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.848482 LLDP, length 82 [|LLDP] 17:03:57.848484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.848493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.848495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.848508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.848508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e69 d13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.848510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.848511 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.848512 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.848513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.848514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.848515 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.858471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.858473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.858486 LLDP, length 82 [|LLDP] 17:03:57.858488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.858498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.858499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e71 725e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.858501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.858502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.858503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.858508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.858510 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.858511 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.858512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.858513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.858514 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.868473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.868475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.868482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.868483 LLDP, length 82 [|LLDP] 17:03:57.868485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.868495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.868496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.868510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.868511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e79 137e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.868513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.868514 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.868515 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.868516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.868517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.868518 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.878469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.878471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.878479 LLDP, length 82 [|LLDP] 17:03:57.878481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.878490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.878491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e80 b49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.878492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.878493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.878494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.878499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.878501 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.878502 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.878503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.888465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.888467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.888474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.888475 LLDP, length 82 [|LLDP] 17:03:57.888477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.888485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.888496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.888497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e88 55be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.888498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.898460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.898462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.898469 LLDP, length 82 [|LLDP] 17:03:57.898471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.898480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.898481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e8f f6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.898482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.898483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.898486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.908463 LLDP, length 82 [|LLDP] 17:03:57.908465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.908473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.908474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.908482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.908484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.908485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e97 97fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.908486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.908487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.918472 LLDP, length 82 [|LLDP] 17:03:57.918473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.918489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.918489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e9f 391e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.918491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.918492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.918493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.918494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.918503 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.918504 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.918505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.918510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.918512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.918513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.918514 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.928471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.928473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.928479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.928480 LLDP, length 82 [|LLDP] 17:03:57.928482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.928490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.928492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.928505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.928505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ea6 da3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.928507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.928508 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.928509 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.928510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.928511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.928512 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.938480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.938482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.938490 LLDP, length 82 [|LLDP] 17:03:57.938492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.938502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.938503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0eae 7b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.938504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.938505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.938506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.938512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.938513 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.938514 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.938515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.938516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.938517 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.948480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.948482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.948492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.948493 LLDP, length 82 [|LLDP] 17:03:57.948495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.948505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.948507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.948523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.948524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0eb6 1c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.948525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.948526 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.948527 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.948528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.948529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.948529 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.958472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.958474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.958482 LLDP, length 82 [|LLDP] 17:03:57.958483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.958493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.958494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ebd bd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.958495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.958496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.958497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.958503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.958504 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.958505 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.958506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.958507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.958508 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.968473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.968474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.968482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.968483 LLDP, length 82 [|LLDP] 17:03:57.968486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.968494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.968496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.968510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.968511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ec5 5ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.968513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.968514 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.968514 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.968515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.968516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.968517 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.978467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.978469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.978477 LLDP, length 82 [|LLDP] 17:03:57.978478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.978488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.978489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ecc ffde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.978490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.978491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.978492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.978497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.978499 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.978500 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.978501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.988462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.988464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.988472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.988473 LLDP, length 82 [|LLDP] 17:03:57.988475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.988484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.988495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.988496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ed4 a0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.988497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.998462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.998464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.998472 LLDP, length 82 [|LLDP] 17:03:57.998474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.998483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.998484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0edc 421e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.998485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.998486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.998489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.008463 LLDP, length 82 [|LLDP] 17:03:58.008465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.008473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.008474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.008483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.008485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.008486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ee3 e33e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.008487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.008489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.018475 LLDP, length 82 [|LLDP] 17:03:58.018477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.018495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.018496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0eeb 845e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.018497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.018498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.018499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.018500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.018510 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.018511 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.018512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.018517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.018519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.018520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.018521 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.028470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.028472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.028480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.028482 LLDP, length 82 [|LLDP] 17:03:58.028484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.028492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.028493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.028508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.028509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ef3 257e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.028510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.028511 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.028513 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.028514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.028515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.028515 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.038471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.038473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.038482 LLDP, length 82 [|LLDP] 17:03:58.038484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.038494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.038495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0efa c69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.038496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.038497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.038498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.038504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.038505 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.038506 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.038507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.038508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.038509 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.048473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.048475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.048483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.048484 LLDP, length 82 [|LLDP] 17:03:58.048486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.048495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.048496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.048512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.048513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f02 67be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.048514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.048515 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.048516 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.048517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.048518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.048520 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.058468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.058470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.058477 LLDP, length 82 [|LLDP] 17:03:58.058479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.058489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.058490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f0a 08de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.058492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.058493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.058494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.058499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.058501 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.058501 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.058502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.058504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.058505 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.068484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.068487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.068499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.068500 LLDP, length 82 [|LLDP] 17:03:58.068502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.068515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.068516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.068546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.068547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f11 a9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.068548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.068549 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.068550 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.068551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.068552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.068553 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.078474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.078477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.078488 LLDP, length 82 [|LLDP] 17:03:58.078490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.078502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.078503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f19 4b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.078505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.078506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.078507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.078513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.078514 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.078515 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.078516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.088461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.088463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.088472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.088473 LLDP, length 82 [|LLDP] 17:03:58.088475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.088484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.088497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.088498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f20 ec3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.088499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.098460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.098461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.098469 LLDP, length 82 [|LLDP] 17:03:58.098471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.098481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.098481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f28 8d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.098483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.098484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.098487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.108464 LLDP, length 82 [|LLDP] 17:03:58.108466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.108475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.108476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.108486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.108488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.108489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f30 2e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.108491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.108492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.118472 LLDP, length 82 [|LLDP] 17:03:58.118474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.118488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.118489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f37 cf9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.118490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.118491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.118492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.118493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.118502 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.118504 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.118505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.118511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.118512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.118513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.118514 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.128468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.128470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.128477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.128478 LLDP, length 82 [|LLDP] 17:03:58.128480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.128489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.128490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.128504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.128504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f3f 70be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.128506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.128507 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.128508 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.128509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.128510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.128511 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.138467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.138469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.138476 LLDP, length 82 [|LLDP] 17:03:58.138478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.138487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.138488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f47 11de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.138490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.138491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.138492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.138497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.138498 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.138499 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.138501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.138502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.138503 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.148469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.148471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.148479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.148480 LLDP, length 82 [|LLDP] 17:03:58.148483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.148492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.148493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.148508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.148509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f4e b2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.148510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.148511 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.148512 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.148513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.148514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.148515 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.158465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.158467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.158474 LLDP, length 82 [|LLDP] 17:03:58.158476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.158486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.158487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f56 541e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.158488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.158489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.158490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.158496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.158497 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.158498 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.158499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.158500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.158501 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.168467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.168469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.168477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.168478 LLDP, length 82 [|LLDP] 17:03:58.168480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.168489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.168490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.168505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.168506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f5d f53e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.168507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.168508 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.168509 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.168510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.168511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.168512 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.178462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.178464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.178470 LLDP, length 82 [|LLDP] 17:03:58.178472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.178481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.178482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f65 965e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.178484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.178485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.178486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.178491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.178493 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.178494 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.178495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.188456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.188458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.188465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.188466 LLDP, length 82 [|LLDP] 17:03:58.188468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.188476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.188487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.188488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f6d 377e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.188489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.198454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.198456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.198463 LLDP, length 82 [|LLDP] 17:03:58.198464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.198474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.198475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f74 d89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.198477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.198478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.198480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.208456 LLDP, length 82 [|LLDP] 17:03:58.208458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.208466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.208467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.208475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.208478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.208478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f7c 79be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.208480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.208481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.218466 LLDP, length 82 [|LLDP] 17:03:58.218468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.218480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.218480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f84 1ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.218482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.218482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.218483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.218484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.218493 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.218495 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.218496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.218500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.218502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.218503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.218504 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.228466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.228468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.228475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.228476 LLDP, length 82 [|LLDP] 17:03:58.228478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.228486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.228487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.228500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.228501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f8b bbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.228503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.228504 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.228505 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.228506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.228506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.228507 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.238462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.238463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.238470 LLDP, length 82 [|LLDP] 17:03:58.238472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.238482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.238483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f93 5d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.238484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.238485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.238486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.238492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.238493 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.238494 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.238495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.238496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.238497 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.248463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.248466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.248473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.248474 LLDP, length 82 [|LLDP] 17:03:58.248476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.248485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.248486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.248500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.248500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f9a fe3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.248502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.248503 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.248504 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.248505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.248506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.248507 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.258461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.258463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.258471 LLDP, length 82 [|LLDP] 17:03:58.258473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.258482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.258483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fa2 9f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.258485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.258486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.258487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.258492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.258494 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.258495 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.258496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.258497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.258498 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.268466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.268469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.268476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.268477 LLDP, length 82 [|LLDP] 17:03:58.268480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.268488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.268490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.268504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.268505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0faa 407e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.268506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.268507 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.268508 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.268509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.268510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.268511 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.278460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.278462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.278470 LLDP, length 82 [|LLDP] 17:03:58.278472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.278481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.278482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fb1 e19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.278484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.278485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.278485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.278491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.278492 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.278493 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.278494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.288455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.288457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.288465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.288466 LLDP, length 82 [|LLDP] 17:03:58.288468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.288477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.288489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.288490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fb9 82be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.288491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.298452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.298454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.298462 LLDP, length 82 [|LLDP] 17:03:58.298464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.298473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.298474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fc1 23de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.298475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.298476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.298479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.308455 LLDP, length 82 [|LLDP] 17:03:58.308456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.308465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.308466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.308476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.308479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.308480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fc8 c4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.308481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.308483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.318464 LLDP, length 82 [|LLDP] 17:03:58.318466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.318478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.318479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fd0 661e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.318480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.318481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.318482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.318483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.318493 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.318495 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.318496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.318501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.318503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.318504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.318505 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.328465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.328467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.328474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.328475 LLDP, length 82 [|LLDP] 17:03:58.328477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.328486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.328487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.328501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.328502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fd8 073e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.328504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.328504 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.328505 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.328506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.328507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.328509 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.338463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.338465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.338473 LLDP, length 82 [|LLDP] 17:03:58.338475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.338485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.338486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fdf a85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.338487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.338488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.338489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.338495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.338496 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.338497 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.338498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.338499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.338500 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.348462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.348464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.348471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.348472 LLDP, length 82 [|LLDP] 17:03:58.348474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.348482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.348484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.348499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.348500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fe7 497e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.348501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.348502 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.348503 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.348504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.348505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.348506 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.358467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.358470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.358478 LLDP, length 82 [|LLDP] 17:03:58.358479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.358488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.358489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fee ea9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.358490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.358491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.358492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.358498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.358499 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.358500 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.358500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.358501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.358502 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.368473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.368475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.368485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.368486 LLDP, length 82 [|LLDP] 17:03:58.368488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.368500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.368501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.368518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.368518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ff6 8bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.368520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.368521 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.368522 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.368523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.368524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.368525 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.378467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.378469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.378477 LLDP, length 82 [|LLDP] 17:03:58.378479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.378489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.378490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ffe 2cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.378492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.378492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.378493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.378499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.378500 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.378501 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.378502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.388453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.388455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.388463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.388464 LLDP, length 82 [|LLDP] 17:03:58.388466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.388475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.388488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.388488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1005 cdfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.388490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.398453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.398455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.398463 LLDP, length 82 [|LLDP] 17:03:58.398464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.398474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.398475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 100d 6f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.398476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.398477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.398479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.408452 LLDP, length 82 [|LLDP] 17:03:58.408454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.408462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.408463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.408472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.408474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.408475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1015 103e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.408477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.408478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.418503 LLDP, length 82 [|LLDP] 17:03:58.418505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.418530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.418531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 101c b15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.418533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.418534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.418536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.418537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.418558 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.418561 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.418562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.418569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.418571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.418573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.418573 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.428496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.428498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.428514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.428515 LLDP, length 82 [|LLDP] 17:03:58.428517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.428531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.428533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.428557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.428558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1024 527e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.428560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.428561 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.428562 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.428563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.428564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.428565 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.438466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.438468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.438477 LLDP, length 82 [|LLDP] 17:03:58.438479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.438490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.438490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 102b f39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.438492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.438493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.438494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.438500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.438502 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.438503 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.438504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.438505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.438506 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.448464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.448467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.448475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.448476 LLDP, length 82 [|LLDP] 17:03:58.448479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.448488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.448489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.448504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.448505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1033 94be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.448506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.448507 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.448508 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.448509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.448510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.448512 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.458464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.458467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.458475 LLDP, length 82 [|LLDP] 17:03:58.458477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.458488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.458489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 103b 35de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.458491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.458492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.458492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.458498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.458500 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.458501 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.458502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.458503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.458504 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.468463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.468465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.468474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.468475 LLDP, length 82 [|LLDP] 17:03:58.468477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.468487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.468489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.468504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.468505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1042 d6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.468506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.468507 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.468508 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.468509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.468510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.468511 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.478472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.478474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.478482 LLDP, length 82 [|LLDP] 17:03:58.478484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.478497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.478498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 104a 781e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.478499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.478500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.478501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.478507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.478509 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.478510 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.478511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.488466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.488468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.488479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.488480 LLDP, length 82 [|LLDP] 17:03:58.488482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.488494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.488512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.488513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1052 193e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.488514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.498453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.498455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.498466 LLDP, length 82 [|LLDP] 17:03:58.498468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.498478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.498479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1059 ba5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.498480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.498481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.498484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.508453 LLDP, length 82 [|LLDP] 17:03:58.508454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.508462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.508463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.508471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.508474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.508475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1061 5b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.508476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.508478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.518461 LLDP, length 82 [|LLDP] 17:03:58.518463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.518480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.518480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1068 fc9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.518482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.518483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.518484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.518485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.518494 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.518496 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.518497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.518503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.518504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.518512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.518513 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.528459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.528460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.528469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.528470 LLDP, length 82 [|LLDP] 17:03:58.528472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.528479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.528480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.528496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.528496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1070 9dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.528498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.528499 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.528500 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.528501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.528502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.528503 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.538458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.538460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.538467 LLDP, length 82 [|LLDP] 17:03:58.538468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.538478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.538479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1078 3ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.538480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.538481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.538482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.538488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.538489 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.538490 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.538491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.538492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.538493 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.548458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.548461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.548469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.548470 LLDP, length 82 [|LLDP] 17:03:58.548472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.548479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.548480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.548495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.548496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 107f dffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.548497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.548498 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.548499 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.548500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.548501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.548502 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.558454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.558456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.558463 LLDP, length 82 [|LLDP] 17:03:58.558465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.558473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.558474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1087 811e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.558476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.558477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.558478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.558483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.558485 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.558486 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.558487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.558488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.558489 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.568461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.568463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.568472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.568473 LLDP, length 82 [|LLDP] 17:03:58.568475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.568483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.568485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.568500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.568501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 108f 223e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.568502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.568503 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.568504 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.568505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.568506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.568507 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.578455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.578457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.578464 LLDP, length 82 [|LLDP] 17:03:58.578466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.578476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.578476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1096 c35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.578478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.578479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.578480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.578485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.578487 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.578488 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.578489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 5853 packets captured 5853 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 15 tcpdump -i swp1 -n on agg1 with rc 0 and out 17:03:54.098611 LLDP, length 82 [|LLDP] 17:03:54.098612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.098633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.098633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 033c cb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.098635 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.098636 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.098637 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.098638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.098658 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.098660 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.098661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.098668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.098670 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.098671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.098671 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.108575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.108577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.108588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.108589 LLDP, length 82 [|LLDP] 17:03:54.108592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.108604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.108605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.108628 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.108629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0344 6c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.108630 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.108631 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.108632 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.108633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.108634 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.108635 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.118561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.118563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.118570 LLDP, length 82 [|LLDP] 17:03:54.118572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.118582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.118583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 034c 0d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.118585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.118586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.118587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.118592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.118593 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.118594 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.118595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.118596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.118597 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.128567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.128569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.128577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.128578 LLDP, length 82 [|LLDP] 17:03:54.128581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.128589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.128591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.128604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.128605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0353 aebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.128607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.128608 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.128608 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.128609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.128610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.128611 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.138559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.138560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.138568 LLDP, length 82 [|LLDP] 17:03:54.138569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.138580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.138581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 035b 4fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.138582 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.138583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.138584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.138590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.138592 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.138593 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.138594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.138595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.138595 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.148567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.148568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.148576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.148577 LLDP, length 82 [|LLDP] 17:03:54.148579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.148588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.148590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.148602 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.148603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0362 f0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.148604 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.148605 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.148606 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.148607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.148608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.148609 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.158556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.158558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.158565 LLDP, length 82 [|LLDP] 17:03:54.158567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.158577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.158578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 036a 921e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.158580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.158581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.158582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.158587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.158588 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.158589 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.158590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.158591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.158592 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.168557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.168559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.168566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.168567 LLDP, length 82 [|LLDP] 17:03:54.168569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.168578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.168579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.168591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.168592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0372 333e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.168593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.168594 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.168595 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.168596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.168597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.168598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.178557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.178559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.178567 LLDP, length 82 [|LLDP] 17:03:54.178568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.178578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.178579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0379 d45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.178580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.178581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.178582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.178587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.178589 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.178590 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.178591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.188547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.188549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.188555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.188556 LLDP, length 82 [|LLDP] 17:03:54.188558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.188566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.188576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.188577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0381 757e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.188578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.198550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.198551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.198559 LLDP, length 82 [|LLDP] 17:03:54.198561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.198570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.198571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0389 169e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.198572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.198573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.198576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.208555 LLDP, length 82 [|LLDP] 17:03:54.208557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.208565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.208566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.208573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.208576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.208576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0390 b7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.208578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.208579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.218563 LLDP, length 82 [|LLDP] 17:03:54.218565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.218579 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.218580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0398 58de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.218582 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.218583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.218584 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.218585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.218594 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.218596 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.218597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.218601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.218603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.218604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.218605 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.228566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.228568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.228576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.228577 LLDP, length 82 [|LLDP] 17:03:54.228579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.228587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.228588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.228601 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.228602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 039f f9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.228603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.228604 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.228605 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.228606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.228607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.228608 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.238557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.238559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.238567 LLDP, length 82 [|LLDP] 17:03:54.238569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.238579 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.238580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03a7 9b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.238581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.238582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.238583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.238588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.238590 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.238591 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.238592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.238593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.238594 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.248554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.248556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.248563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.248564 LLDP, length 82 [|LLDP] 17:03:54.248566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.248575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.248576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.248588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.248589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03af 3c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.248590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.248591 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.248592 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.248593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.248594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.248595 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.258553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.258555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.258562 LLDP, length 82 [|LLDP] 17:03:54.258564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.258574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.258574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03b6 dd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.258576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.258577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.258578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.258583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.258584 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.258585 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.258586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.258587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.258588 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.268558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.268560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.268574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.268575 LLDP, length 82 [|LLDP] 17:03:54.268577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.268586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.268587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.268599 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.268600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03be 7e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.268601 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.268602 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.268603 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.268604 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.268605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.268606 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.278552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.278554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.278561 LLDP, length 82 [|LLDP] 17:03:54.278563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.278572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.278573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03c6 1f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.278575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.278576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.278577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.278582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.278583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.278585 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.278585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.288552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.288554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.288561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.288562 LLDP, length 82 [|LLDP] 17:03:54.288564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.288571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.288580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.288581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03cd c0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.288583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.298546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.298548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.298555 LLDP, length 82 [|LLDP] 17:03:54.298557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.298565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.298566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03d5 61de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.298567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.298569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.298572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.308553 LLDP, length 82 [|LLDP] 17:03:54.308555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.308564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.308565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.308576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.308578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.308579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03dd 02fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.308580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.308581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.318558 LLDP, length 82 [|LLDP] 17:03:54.318560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.318572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.318573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03e4 a41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.318574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.318575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.318576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.318577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.318586 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.318588 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.318589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.318594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.318595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.318596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.318597 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.328566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.328568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.328576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.328577 LLDP, length 82 [|LLDP] 17:03:54.328579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.328587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.328589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.328602 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.328602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03ec 453e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.328604 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.328605 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.328606 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.328607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.328608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.328609 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.338564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.338565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.338576 LLDP, length 82 [|LLDP] 17:03:54.338578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.338592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.338593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03f3 e65e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.338594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.338595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.338596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.338602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.338604 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.338605 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.338606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.338607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.338607 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.348560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.348562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.348570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.348571 LLDP, length 82 [|LLDP] 17:03:54.348573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.348583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.348584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.348598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.348599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 03fb 877e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.348601 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.348602 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.348603 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.348604 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.348605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.348606 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.358559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.358561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.358570 LLDP, length 82 [|LLDP] 17:03:54.358571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.358583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.358583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0403 289e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.358585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.358586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.358587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.358593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.358594 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.358595 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.358596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.358597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.358598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.368554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.368556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.368564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.368565 LLDP, length 82 [|LLDP] 17:03:54.368567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.368576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.368577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.368591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.368591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 040a c9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.368593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.368594 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.368595 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.368596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.368597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.368598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.378551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.378553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.378559 LLDP, length 82 [|LLDP] 17:03:54.378561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.378570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.378571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0412 6ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.378573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.378574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.378575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.378580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.378582 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.378582 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.378583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.388544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.388546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.388552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.388553 LLDP, length 82 [|LLDP] 17:03:54.388555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.388563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.388574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.388574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 041a 0bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.388576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.398543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.398544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.398551 LLDP, length 82 [|LLDP] 17:03:54.398553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.398562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.398563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0421 ad1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.398564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.398565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.398568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.408548 LLDP, length 82 [|LLDP] 17:03:54.408550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.408557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.408558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.408566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.408568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.408569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0429 4e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.408570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.408572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.418556 LLDP, length 82 [|LLDP] 17:03:54.418558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.418569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.418570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0430 ef5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.418572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.418573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.418574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.418574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.418583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.418585 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.418586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.418591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.418593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.418594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.418595 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.428553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.428555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.428562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.428563 LLDP, length 82 [|LLDP] 17:03:54.428565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.428572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.428573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.428585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.428586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0438 907e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.428587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.428588 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.428589 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.428590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.428591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.428592 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.438550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.438552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.438560 LLDP, length 82 [|LLDP] 17:03:54.438562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.438572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.438573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0440 319e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.438574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.438575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.438576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.438582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.438583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.438584 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.438585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.438586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.438588 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.448554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.448556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.448563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.448564 LLDP, length 82 [|LLDP] 17:03:54.448566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.448575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.448577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.448590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.448591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0447 d2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.448592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.448593 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.448594 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.448595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.448596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.448597 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.458552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.458553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.458560 LLDP, length 82 [|LLDP] 17:03:54.458562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.458572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.458573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 044f 73de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.458574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.458575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.458576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.458581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.458583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.458584 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.458585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.458586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.458587 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.468550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.468551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.468559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.468560 LLDP, length 82 [|LLDP] 17:03:54.468562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.468570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.468572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.468583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.468584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0457 14fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.468585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.468586 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.468587 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.468588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.468589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.468590 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.478549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.478551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.478557 LLDP, length 82 [|LLDP] 17:03:54.478558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.478568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.478569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 045e b61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.478570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.478571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.478572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.478578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.478580 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.478580 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.478581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.488551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.488553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.488561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.488562 LLDP, length 82 [|LLDP] 17:03:54.488564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.488576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.488587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.488588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0466 573e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.488589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.498544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.498546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.498555 LLDP, length 82 [|LLDP] 17:03:54.498556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.498567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.498568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 046d f85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.498569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.498570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.498573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.508548 LLDP, length 82 [|LLDP] 17:03:54.508550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.508558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.508558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.508568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.508570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.508571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0475 997e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.508572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.508574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.518553 LLDP, length 82 [|LLDP] 17:03:54.518554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.518571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.518572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 047d 3a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.518573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.518574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.518575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.518576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.518586 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.518588 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.518589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.518595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.518596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.518597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.518598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.528552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.528554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.528563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.528564 LLDP, length 82 [|LLDP] 17:03:54.528566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.528574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.528576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.528589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.528590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0484 dbbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.528592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.528593 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.528594 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.528595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.528596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.528597 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.538554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.538556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.538564 LLDP, length 82 [|LLDP] 17:03:54.538566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.538576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.538577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 048c 7cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.538578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.538579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.538580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.538585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.538587 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.538587 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.538588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.538589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.538590 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.548553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.548554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.548562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.548563 LLDP, length 82 [|LLDP] 17:03:54.548566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.548575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.548576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.548590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.548591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0494 1dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.548592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.548593 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.548594 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.548595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.548596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.548598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.558561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.558562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.558570 LLDP, length 82 [|LLDP] 17:03:54.558572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.558588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.558589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 049b bf1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.558591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.558592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.558593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.558598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.558600 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.558601 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.558602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.558603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.558604 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.568566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.568568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.568578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.568579 LLDP, length 82 [|LLDP] 17:03:54.568582 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.568593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.568595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.568612 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.568613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04a3 603e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.568614 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.568615 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.568616 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.568617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.568618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.568619 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.578558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.578561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.578571 LLDP, length 82 [|LLDP] 17:03:54.578573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.578584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.578585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04ab 015e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.578586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.578587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.578588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.578594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.578596 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.578597 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.578598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.588543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.588545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.588553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.588554 LLDP, length 82 [|LLDP] 17:03:54.588556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.588565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.588576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.588576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04b2 a27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.588578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.598543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.598545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.598553 LLDP, length 82 [|LLDP] 17:03:54.598555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.598564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.598565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04ba 439e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.598566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.598567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.598570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.608547 LLDP, length 82 [|LLDP] 17:03:54.608548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.608555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.608556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.608566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.608568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.608569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04c1 e4be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.608570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.608572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.618554 LLDP, length 82 [|LLDP] 17:03:54.618555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.618566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.618567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04c9 85de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.618569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.618570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.618571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.618572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.618582 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.618584 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.618585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.618590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.618592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.618593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.618594 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.628560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.628562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.628570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.628571 LLDP, length 82 [|LLDP] 17:03:54.628573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.628580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.628581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.628595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.628596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04d1 26fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.628597 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.628598 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.628599 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.628600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.628601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.628603 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.638550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.638552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.638560 LLDP, length 82 [|LLDP] 17:03:54.638562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.638571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.638572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04d8 c81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.638574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.638575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.638576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.638581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.638583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.638583 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.638584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.638585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.638586 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.648554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.648556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.648564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.648565 LLDP, length 82 [|LLDP] 17:03:54.648567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.648575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.648576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.648591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.648592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04e0 693e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.648594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.648595 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.648596 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.648597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.648598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.648598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.658557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.658558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.658569 LLDP, length 82 [|LLDP] 17:03:54.658571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.658580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.658581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04e8 0a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.658583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.658584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.658585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.658591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.658593 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.658594 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.658595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.658596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.658597 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.668550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.668552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.668561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.668562 LLDP, length 82 [|LLDP] 17:03:54.668564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.668572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.668574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.668588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.668589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04ef ab7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.668590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.668591 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.668592 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.668593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.668594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.668595 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.678545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.678547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.678555 LLDP, length 82 [|LLDP] 17:03:54.678556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.678565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.678566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04f7 4c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.678567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.678569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.678569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.678575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.678576 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.678577 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.678578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.688539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.688540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.688548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.688549 LLDP, length 82 [|LLDP] 17:03:54.688552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.688561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.688572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.688573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 04fe edbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.688574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.698540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.698542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.698550 LLDP, length 82 [|LLDP] 17:03:54.698552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.698561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.698562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0506 8ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.698563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.698564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.698567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.708541 LLDP, length 82 [|LLDP] 17:03:54.708542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.708549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.708550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.708560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.708562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.708563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 050e 2ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.708565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.708566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.718550 LLDP, length 82 [|LLDP] 17:03:54.718551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.718562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.718563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0515 d11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.718564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.718566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.718567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.718568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.718578 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.718580 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.718581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.718586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.718588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.718589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.718590 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.728555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.728557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.728565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.728566 LLDP, length 82 [|LLDP] 17:03:54.728568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.728575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.728577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.728591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.728592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 051d 723e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.728593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.728594 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.728595 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.728596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.728597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.728598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.738545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.738547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.738556 LLDP, length 82 [|LLDP] 17:03:54.738557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.738566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.738567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0525 135e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.738568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.738569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.738570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.738576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.738577 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.738578 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.738579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.738580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.738581 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.748553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.748554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.748569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.748570 LLDP, length 82 [|LLDP] 17:03:54.748572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.748580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.748582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.748595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.748596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 052c b47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.748597 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.748598 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.748599 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.748600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.748601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.748602 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.758550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.758552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.758561 LLDP, length 82 [|LLDP] 17:03:54.758562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.758571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.758572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0534 559e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.758573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.758574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.758575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.758581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.758583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.758584 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.758585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.758585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.758586 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.768547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.768549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.768558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.768559 LLDP, length 82 [|LLDP] 17:03:54.768561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.768569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.768570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.768584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.768585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 053b f6be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.768586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.768587 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.768588 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.768589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.768590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.768591 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.778544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.778546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.778554 LLDP, length 82 [|LLDP] 17:03:54.778555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.778565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.778566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0543 97de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.778567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.778568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.778569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.778575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.778576 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.778577 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.778578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.788538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.788540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.788548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.788549 LLDP, length 82 [|LLDP] 17:03:54.788551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.788560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.788571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.788572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 054b 38fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.788573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.798537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.798539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.798546 LLDP, length 82 [|LLDP] 17:03:54.798548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.798557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.798558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0552 da1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.798559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.798560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.798563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.808545 LLDP, length 82 [|LLDP] 17:03:54.808546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.808553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.808554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.808563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.808565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.808566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 055a 7b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.808567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.808569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.818554 LLDP, length 82 [|LLDP] 17:03:54.818556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.818569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.818570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0562 1c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.818571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.818572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.818573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.818574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.818585 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.818587 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.818588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.818593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.818595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.818596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.818596 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.828555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.828556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.828565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.828566 LLDP, length 82 [|LLDP] 17:03:54.828568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.828576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.828578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.828592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.828593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0569 bd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.828594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.828595 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.828596 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.828597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.828598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.828599 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.838542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.838544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.838552 LLDP, length 82 [|LLDP] 17:03:54.838553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.838563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.838564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0571 5e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.838565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.838566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.838567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.838573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.838575 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.838576 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.838576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.838578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.838579 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.848550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.848552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.848559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.848560 LLDP, length 82 [|LLDP] 17:03:54.848562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.848570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.848571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.848584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.848585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0578 ffbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.848587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.848587 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.848588 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.848589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.848590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.848591 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.858568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.858571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.858579 LLDP, length 82 [|LLDP] 17:03:54.858580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.858590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.858591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0580 a0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.858592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.858594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.858595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.858601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.858602 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.858603 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.858604 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.858605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.858606 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.868556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.868558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.868568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.868569 LLDP, length 82 [|LLDP] 17:03:54.868571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.868579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.868580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.868596 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.868597 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0588 41fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.868599 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.868600 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.868601 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.868602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.868603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.868604 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.878543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.878545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.878553 LLDP, length 82 [|LLDP] 17:03:54.878555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.878566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.878567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 058f e31e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.878569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.878570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.878571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.878576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.878578 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.878579 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.878580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.888535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.888537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.888545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.888546 LLDP, length 82 [|LLDP] 17:03:54.888548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.888556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.888567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.888568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0597 843e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.888569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.898533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.898535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.898543 LLDP, length 82 [|LLDP] 17:03:54.898545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.898555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.898556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 059f 255e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.898557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.898558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.898561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.908535 LLDP, length 82 [|LLDP] 17:03:54.908537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.908544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.908545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.908554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.908557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.908558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05a6 c67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.908560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.908561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.918543 LLDP, length 82 [|LLDP] 17:03:54.918545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.918556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.918557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05ae 679e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.918558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.918559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.918560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.918561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.918570 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.918572 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.918573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.918578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.918580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.918581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.918582 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.928547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.928549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.928555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.928556 LLDP, length 82 [|LLDP] 17:03:54.928559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.928565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.928567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.928581 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.928582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05b6 08be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.928584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.928585 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.928586 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.928587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.928588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.928588 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.938707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.938709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.938716 LLDP, length 82 [|LLDP] 17:03:54.938717 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.938726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.938726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05bd a9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.938728 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.938729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.938730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.938736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.938738 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.938738 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.938739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.938740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.938741 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.948540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.948542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.948549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.948551 LLDP, length 82 [|LLDP] 17:03:54.948552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.948560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.948561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.948575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.948575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05c5 4afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.948577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.948578 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.948579 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.948580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.948581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.948582 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.958539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.958541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.958548 LLDP, length 82 [|LLDP] 17:03:54.958550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.958558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.958559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05cc ec1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.958560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.958561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.958562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.958567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.958569 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.958570 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.958571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.958572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.958573 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.968551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.968553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.968562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.968563 LLDP, length 82 [|LLDP] 17:03:54.968565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.968573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.968575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.968589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.968590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05d4 8d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.968591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.968592 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.968593 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.968594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.968595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:54.968597 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:54.978540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.978542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.978550 LLDP, length 82 [|LLDP] 17:03:54.978552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.978560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.978561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05dc 2e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.978562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.978563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:54.978564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.978570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.978571 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.978573 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:54.978574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:54.988529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.988531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.988538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.988539 LLDP, length 82 [|LLDP] 17:03:54.988541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.988549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:54.988561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.988561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05e3 cf7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.988563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.998534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:54.998535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.998543 LLDP, length 82 [|LLDP] 17:03:54.998544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:54.998553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:54.998553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05eb 709e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:54.998555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:54.998556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:54.998559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.008531 LLDP, length 82 [|LLDP] 17:03:55.008533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.008540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.008550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.008559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.008561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.008562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05f3 11be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.008564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.008565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.018543 LLDP, length 82 [|LLDP] 17:03:55.018545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.018555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.018556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 05fa b2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.018557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.018558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.018559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.018560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.018571 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.018572 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.018573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.018579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.018580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.018581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.018582 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.028546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.028547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.028555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.028556 LLDP, length 82 [|LLDP] 17:03:55.028558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.028564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.028565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.028580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.028580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0602 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.028582 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.028583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.028584 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.028585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.028586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.028587 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.038536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.038537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.038545 LLDP, length 82 [|LLDP] 17:03:55.038547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.038556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.038557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0609 f51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.038558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.038559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.038560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.038566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.038568 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.038568 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.038570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.038571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.038571 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.048538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.048540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.048548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.048549 LLDP, length 82 [|LLDP] 17:03:55.048551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.048558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.048559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.048573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.048574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0611 963e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.048575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.048576 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.048578 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.048579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.048580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.048581 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.058546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.058547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.058555 LLDP, length 82 [|LLDP] 17:03:55.058556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.058564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.058565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0619 375e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.058567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.058568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.058569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.058574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.058576 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.058577 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.058578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.058579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.058579 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.068563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.068565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.068578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.068579 LLDP, length 82 [|LLDP] 17:03:55.068581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.068596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.068598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.068618 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.068619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0620 d87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.068620 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.068621 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.068622 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.068623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.068625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.068626 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.078543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.078546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.078557 LLDP, length 82 [|LLDP] 17:03:55.078559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.078572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.078573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0628 799e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.078574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.078575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.078576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.078582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.078584 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.078585 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.078586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.088531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.088533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.088541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.088542 LLDP, length 82 [|LLDP] 17:03:55.088544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.088554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.088566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.088567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0630 1abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.088569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.098526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.098528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.098534 LLDP, length 82 [|LLDP] 17:03:55.098536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.098545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.098546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0637 bbde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.098547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.098548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.098552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.108524 LLDP, length 82 [|LLDP] 17:03:55.108526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.108532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.108533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.108540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.108542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.108543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 063f 5cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.108544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.108546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.118537 LLDP, length 82 [|LLDP] 17:03:55.118538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.118548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.118549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0646 fe1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.118550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.118551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.118552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.118553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.118562 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.118564 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.118565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.118569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.118571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.118572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.118573 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.128551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.128553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.128562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.128563 LLDP, length 82 [|LLDP] 17:03:55.128566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.128575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.128576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.128594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.128595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 064e 9f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.128596 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.128597 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.128598 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.128599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.128600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.128601 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.138540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.138543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.138551 LLDP, length 82 [|LLDP] 17:03:55.138553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.138564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.138565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0656 405e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.138566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.138567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.138568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.138574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.138575 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.138576 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.138577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.138578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.138578 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.148548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.148550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.148558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.148559 LLDP, length 82 [|LLDP] 17:03:55.148561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.148570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.148571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.148587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.148588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 065d e17e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.148590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.148591 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.148592 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.148593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.148594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.148595 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.158538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.158540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.158548 LLDP, length 82 [|LLDP] 17:03:55.158550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.158560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.158561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0665 829e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.158563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.158563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.158564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.158570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.158571 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.158572 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.158573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.158574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.158575 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.168541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.168542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.168551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.168552 LLDP, length 82 [|LLDP] 17:03:55.168554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.168563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.168565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.168580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.168581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 066d 23be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.168583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.168583 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.168584 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.168585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.168586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.168587 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.178536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.178538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.178547 LLDP, length 82 [|LLDP] 17:03:55.178549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.178559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.178560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0674 c4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.178561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.178562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.178563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.178569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.178571 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.178571 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.178573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.188528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.188530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.188539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.188540 LLDP, length 82 [|LLDP] 17:03:55.188542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.188551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.188565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.188565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 067c 65fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.188567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.198529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.198531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.198538 LLDP, length 82 [|LLDP] 17:03:55.198540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.198550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.198551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0684 071e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.198552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.198553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.198557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.208529 LLDP, length 82 [|LLDP] 17:03:55.208531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.208540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.208541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.208549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.208552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.208552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 068b a83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.208554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.208555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.218538 LLDP, length 82 [|LLDP] 17:03:55.218540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.218553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.218554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0693 495e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.218555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.218556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.218557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.218558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.218569 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.218571 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.218572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.218577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.218579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.218580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.218581 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.228541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.228543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.228550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.228551 LLDP, length 82 [|LLDP] 17:03:55.228553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.228562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.228563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.228577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.228578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 069a ea7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.228580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.228581 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.228582 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.228583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.228584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.228584 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.238533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.238534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.238542 LLDP, length 82 [|LLDP] 17:03:55.238543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.238553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.238554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06a2 8b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.238555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.238556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.238557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.238563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.238564 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.238565 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.238566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.238567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.238568 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.248542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.248544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.248551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.248552 LLDP, length 82 [|LLDP] 17:03:55.248554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.248562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.248564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.248577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.248577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06aa 2cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.248579 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.248580 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.248580 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.248581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.248582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.248583 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.258530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.258532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.258546 LLDP, length 82 [|LLDP] 17:03:55.258547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.258557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.258558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06b1 cdde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.258560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.258560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.258562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.258567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.258568 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.258569 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.258570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.258571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.258572 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.268561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.268563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.268570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.268571 LLDP, length 82 [|LLDP] 17:03:55.268573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.268581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.268582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.268596 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.268596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06b9 6efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.268598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.268599 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.268600 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.268601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.268602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.268603 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.278532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.278534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.278541 LLDP, length 82 [|LLDP] 17:03:55.278542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.278552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.278553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06c1 101e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.278554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.278555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.278556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.278562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.278563 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.278564 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.278565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.288525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.288527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.288534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.288535 LLDP, length 82 [|LLDP] 17:03:55.288538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.288548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.288568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.288569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06c8 b13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.288571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.298533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.298535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.298545 LLDP, length 82 [|LLDP] 17:03:55.298548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.298560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.298561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06d0 525e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.298563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.298564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.298567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.308525 LLDP, length 82 [|LLDP] 17:03:55.308527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.308536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.308537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.308545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.308547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.308548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06d7 f37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.308549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.308551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.318535 LLDP, length 82 [|LLDP] 17:03:55.318537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.318550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.318551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06df 949e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.318552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.318553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.318554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.318555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.318564 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.318566 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.318567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.318573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.318575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.318576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.318577 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.328543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.328545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.328555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.328556 LLDP, length 82 [|LLDP] 17:03:55.328558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.328567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.328568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.328585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.328585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06e7 35be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.328587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.328588 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.328589 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.328590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.328591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.328592 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.338534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.338536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.338544 LLDP, length 82 [|LLDP] 17:03:55.338546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.338556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.338557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06ee d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.338558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.338559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.338560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.338566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.338568 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.338568 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.338569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.338570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.338571 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.348538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.348540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.348547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.348549 LLDP, length 82 [|LLDP] 17:03:55.348551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.348559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.348560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.348575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.348575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06f6 77fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.348577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.348578 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.348579 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.348580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.348581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.348582 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.358539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.358542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.358550 LLDP, length 82 [|LLDP] 17:03:55.358551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.358560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.358561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 06fe 191e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.358562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.358563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.358565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.358570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.358572 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.358573 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.358574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.358574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.358575 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.368540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.368542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.368552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.368553 LLDP, length 82 [|LLDP] 17:03:55.368555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.368566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.368567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.368583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.368584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0705 ba3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.368586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.368586 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.368588 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.368589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.368590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.368591 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.378535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.378537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.378546 LLDP, length 82 [|LLDP] 17:03:55.378547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.378558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.378559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 070d 5b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.378561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.378562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.378563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.378568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.378570 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.378570 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.378571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.388529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.388531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.388539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.388540 LLDP, length 82 [|LLDP] 17:03:55.388542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.388551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.388563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.388564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0714 fc7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.388565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.398526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.398528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.398536 LLDP, length 82 [|LLDP] 17:03:55.398538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.398548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.398548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 071c 9d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.398550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.398551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.398554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.408525 LLDP, length 82 [|LLDP] 17:03:55.408526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.408535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.408536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.408545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.408547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.408548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0724 3ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.408549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.408551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.418533 LLDP, length 82 [|LLDP] 17:03:55.418535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.418547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.418548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 072b dfde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.418550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.418551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.418552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.418553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.418561 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.418563 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.418564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.418570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.418571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.418572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.418573 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.428531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.428533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.428540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.428541 LLDP, length 82 [|LLDP] 17:03:55.428543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.428551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.428553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.428567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.428567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0733 80fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.428569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.428570 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.428571 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.428572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.428573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.428574 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.438530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.438531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.438539 LLDP, length 82 [|LLDP] 17:03:55.438541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.438551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.438551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 073b 221e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.438553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.438554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.438555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.438561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.438563 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.438563 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.438564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.438565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.438566 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.448529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.448531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.448540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.448540 LLDP, length 82 [|LLDP] 17:03:55.448542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.448550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.448552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.448567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.448567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0742 c33e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.448569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.448570 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.448571 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.448572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.448573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.448574 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.458534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.458536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.458543 LLDP, length 82 [|LLDP] 17:03:55.458545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.458555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.458556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 074a 645e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.458557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.458558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.458559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.458564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.458566 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.458567 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.458568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.458569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.458569 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.468538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.468540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.468548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.468549 LLDP, length 82 [|LLDP] 17:03:55.468551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.468559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.468561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.468576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.468577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0752 057e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.468578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.468579 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.468580 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.468581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.468582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.468583 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.478526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.478528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.478536 LLDP, length 82 [|LLDP] 17:03:55.478538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.478547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.478548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0759 a69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.478549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.478550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.478551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.478557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.478558 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.478559 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.478560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.488523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.488525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.488532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.488533 LLDP, length 82 [|LLDP] 17:03:55.488535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.488543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.488554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.488555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0761 47be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.488556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.498523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.498525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.498534 LLDP, length 82 [|LLDP] 17:03:55.498536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.498545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.498546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0768 e8de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.498548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.498549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.498552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.508521 LLDP, length 82 [|LLDP] 17:03:55.508522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.508531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.508531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.508541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.508544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.508545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0770 89fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.508546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.508547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.518537 LLDP, length 82 [|LLDP] 17:03:55.518539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.518551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.518552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0778 2b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.518553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.518554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.518555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.518556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.518565 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.518567 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.518568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.518573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.518575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.518576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.518577 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.528529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.528530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.528538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.528539 LLDP, length 82 [|LLDP] 17:03:55.528541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.528558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.528560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.528578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.528579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 077f cc3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.528581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.528582 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.528583 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.528584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.528585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.528585 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.538524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.538526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.538534 LLDP, length 82 [|LLDP] 17:03:55.538536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.538544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.538560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0787 6d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.538561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.538562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.538563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.538570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.538571 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.538572 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.538574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.538575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.538576 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.548548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.548551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.548562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.548563 LLDP, length 82 [|LLDP] 17:03:55.548566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.548578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.548579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.548598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.548598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 078f 0e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.548600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.548601 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.548602 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.548603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.548604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.548606 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.558531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.558532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.558539 LLDP, length 82 [|LLDP] 17:03:55.558549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.558561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.558562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0796 af9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.558563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.558565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.558566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.558571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.558573 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.558574 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.558575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.558576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.558576 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.568533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.568535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.568545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.568546 LLDP, length 82 [|LLDP] 17:03:55.568548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.568557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.568558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.568574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.568575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 079e 50be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.568576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.568577 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.568578 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.568579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.568580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.568581 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.578527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.578529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.578537 LLDP, length 82 [|LLDP] 17:03:55.578538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.578549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.578550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07a5 f1de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.578551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.578552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.578553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.578559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.578560 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.578561 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.578562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.588519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.588521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.588529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.588530 LLDP, length 82 [|LLDP] 17:03:55.588532 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.588550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.588566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.588567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07ad 92fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.588569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.598525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.598526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.598535 LLDP, length 82 [|LLDP] 17:03:55.598536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.598546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.598548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07b5 341e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.598549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.598550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.598553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.608523 LLDP, length 82 [|LLDP] 17:03:55.608525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.608534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.608535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.608544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.608547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.608548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07bc d53e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.608549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.608551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.618532 LLDP, length 82 [|LLDP] 17:03:55.618534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.618547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.618548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07c4 765e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.618549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.618550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.618551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.618552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.618562 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.618564 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.618565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.618570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.618572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.618573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.618574 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.628527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.628529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.628538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.628539 LLDP, length 82 [|LLDP] 17:03:55.628541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.628551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.628552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.628565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.628566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07cc 177e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.628568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.628569 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.628570 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.628571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.628572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.628573 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.638523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.638525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.638532 LLDP, length 82 [|LLDP] 17:03:55.638533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.638543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.638543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07d3 b89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.638545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.638546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.638547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.638553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.638555 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.638555 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.638556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.638557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.638558 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.648518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.648520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.648533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.648534 LLDP, length 82 [|LLDP] 17:03:55.648536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.648544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.648545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.648557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.648558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07db 59be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.648559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.648560 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.648562 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.648562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.648563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.648564 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.658522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.658524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.658529 LLDP, length 82 [|LLDP] 17:03:55.658531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.658540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.658541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07e2 fade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.658542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.658543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.658544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.658549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.658551 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.658552 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.658553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.658554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.658554 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.668521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.668523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.668530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.668531 LLDP, length 82 [|LLDP] 17:03:55.668533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.668540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.668541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.668552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.668553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07ea 9bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.668555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.668556 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.668557 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.668558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.668559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.668559 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.678518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.678520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.678526 LLDP, length 82 [|LLDP] 17:03:55.678527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.678536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.678537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07f2 3d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.678539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.678540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.678541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.678546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.678548 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.678548 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.678549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.688510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.688511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.688517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.688518 LLDP, length 82 [|LLDP] 17:03:55.688520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.688528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.688537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.688537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 07f9 de3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.688539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.698510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.698512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.698518 LLDP, length 82 [|LLDP] 17:03:55.698519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.698527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.698528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0801 7f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.698529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.698530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.698533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.708513 LLDP, length 82 [|LLDP] 17:03:55.708515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.708522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.708523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.708532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.708534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.708535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0809 207e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.708537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.708538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.718523 LLDP, length 82 [|LLDP] 17:03:55.718525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.718536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.718537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0810 c19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.718538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.718539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.718540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.718541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.718550 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.718552 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.718553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.718558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.718560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.718561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.718562 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.728519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.728521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.728527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.728528 LLDP, length 82 [|LLDP] 17:03:55.728530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.728537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.728538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.728549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.728550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0818 62be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.728551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.728552 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.728553 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.728554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.728555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.728556 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.738518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.738520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.738526 LLDP, length 82 [|LLDP] 17:03:55.738528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.738536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.738537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0820 03de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.738538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.738539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.738540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.738546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.738547 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.738548 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.738549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.738550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.738551 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.748516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.748517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.748538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.748539 LLDP, length 82 [|LLDP] 17:03:55.748541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.748548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.748549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.748561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.748562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0827 a4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.748563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.748564 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.748565 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.748566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.748567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.748568 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.758519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.758521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.758527 LLDP, length 82 [|LLDP] 17:03:55.758528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.758537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.758538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 082f 461e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.758539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.758540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.758541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.758546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.758548 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.758549 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.758550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.758551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.758552 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.768518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.768519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.768532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.768533 LLDP, length 82 [|LLDP] 17:03:55.768535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.768542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.768543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.768554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.768555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0836 e73e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.768557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.768558 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.768558 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.768559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.768560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.768561 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.778514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.778515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.778522 LLDP, length 82 [|LLDP] 17:03:55.778523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.778532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.778533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 083e 885e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.778535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.778536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.778537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.778542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.778544 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.778544 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.778545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.788511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.788512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.788518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.788519 LLDP, length 82 [|LLDP] 17:03:55.788521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.788528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.788537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.788537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0846 297e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.788539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.798510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.798511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.798517 LLDP, length 82 [|LLDP] 17:03:55.798519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.798527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.798528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 084d ca9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.798529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.798530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.798533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.808512 LLDP, length 82 [|LLDP] 17:03:55.808514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.808521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.808522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.808530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.808533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.808534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0855 6bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.808535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.808536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.818532 LLDP, length 82 [|LLDP] 17:03:55.818534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.818549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.818550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 085d 0cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.818551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.818552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.818553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.818555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.818565 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.818567 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.818568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.818573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.818575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.818576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.818577 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.828520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.828522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.828529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.828530 LLDP, length 82 [|LLDP] 17:03:55.828532 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.828540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.828541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.828553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.828554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0864 adfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.828555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.828556 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.828557 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.828558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.828559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.828560 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.838517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.838518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.838525 LLDP, length 82 [|LLDP] 17:03:55.838526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.838536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.838536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 086c 4f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.838538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.838539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.838540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.838545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.838546 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.838547 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.838548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.838549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.838550 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.848514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.848515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.848528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.848529 LLDP, length 82 [|LLDP] 17:03:55.848531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.848546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.848548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.848560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.848561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0873 f03e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.848562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.848563 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.848564 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.848565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.848566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.848567 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.858518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.858519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.858525 LLDP, length 82 [|LLDP] 17:03:55.858527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.858536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.858537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 087b 915e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.858538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.858539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.858540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.858545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.858547 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.858548 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.858548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.858549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.858550 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.868521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.868523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.868530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.868531 LLDP, length 82 [|LLDP] 17:03:55.868533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.868543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.868545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.868558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.868559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0883 327e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.868561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.868561 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.868562 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.868563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.868564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.868565 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.878521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.878523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.878529 LLDP, length 82 [|LLDP] 17:03:55.878531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.878541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.878542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 088a d39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.878543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.878544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.878545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.878551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.878552 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.878553 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.878554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.888507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.888509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.888514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.888515 LLDP, length 82 [|LLDP] 17:03:55.888517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.888525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.888534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.888534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0892 74be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.888536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.898505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.898507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.898513 LLDP, length 82 [|LLDP] 17:03:55.898514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.898523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.898523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 089a 15de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.898525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.898526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.898529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.908507 LLDP, length 82 [|LLDP] 17:03:55.908508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.908515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.908516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.908523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.908525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.908526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08a1 b6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.908527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.908528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.918520 LLDP, length 82 [|LLDP] 17:03:55.918521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.918532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.918532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08a9 581e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.918534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.918535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.918536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.918537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.918545 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.918547 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.918548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.918554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.918555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.918556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.918557 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.928519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.928521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.928528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.928529 LLDP, length 82 [|LLDP] 17:03:55.928531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.928538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.928540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.928552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.928553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08b0 f93e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.928554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.928555 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.928556 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.928557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.928558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.928559 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.938514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.938516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.938523 LLDP, length 82 [|LLDP] 17:03:55.938524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.938533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.938535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08b8 9a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.938536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.938537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.938538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.938543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.938544 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.938545 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.938546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.938547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.938548 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.948512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.948513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.948520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.948521 LLDP, length 82 [|LLDP] 17:03:55.948522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.948530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.948531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.948542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.948543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08c0 3b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.948545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.948546 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.948547 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.948548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.948548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.948550 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.958514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.958515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.958522 LLDP, length 82 [|LLDP] 17:03:55.958523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.958532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.958532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08c7 dc9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.958534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.958535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.958536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.958542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.958543 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.958544 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.958545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.958546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.958547 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.968514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.968515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.968521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.968522 LLDP, length 82 [|LLDP] 17:03:55.968524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.968530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.968532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.968542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.968543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08cf 7dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.968545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.968545 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.968546 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.968547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.968549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:55.968550 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:55.978510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.978511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.978518 LLDP, length 82 [|LLDP] 17:03:55.978519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.978528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.978529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08d7 1ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.978530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.978531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:55.978532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.978538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.978539 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.978540 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:55.978541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:55.988506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.988507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.988514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.988515 LLDP, length 82 [|LLDP] 17:03:55.988517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.988524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:55.988533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.988533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08de bffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.988535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.998503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:55.998505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.998511 LLDP, length 82 [|LLDP] 17:03:55.998513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:55.998520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:55.998521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08e6 611e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:55.998522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:55.998524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:55.998527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.008502 LLDP, length 82 [|LLDP] 17:03:56.008504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.008510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.008511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.008518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.008521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.008522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08ee 023e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.008523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.008524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.018512 LLDP, length 82 [|LLDP] 17:03:56.018513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.018523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.018524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08f5 a35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.018525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.018526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.018527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.018535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.018537 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.018538 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.018539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.018545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.018547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.018548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.018549 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.028514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.028515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.028530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.028531 LLDP, length 82 [|LLDP] 17:03:56.028533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.028544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.028546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.028561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.028562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 08fd 447e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.028564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.028565 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.028566 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.028567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.028568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.028569 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.038516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.038518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.038525 LLDP, length 82 [|LLDP] 17:03:56.038527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.038535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.038535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0904 e59e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.038537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.038538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.038539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.038544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.038546 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.038547 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.038548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.038549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.038549 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.048516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.048517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.048525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.048526 LLDP, length 82 [|LLDP] 17:03:56.048528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.048537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.048538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.048553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.048553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 090c 86be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.048555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.048555 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.048556 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.048557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.048558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.048559 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.058516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.058518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.058526 LLDP, length 82 [|LLDP] 17:03:56.058528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.058536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.058537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0914 27de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.058539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.058540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.058540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.058546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.058548 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.058549 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.058550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.058551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.058551 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.068518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.068520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.068527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.068528 LLDP, length 82 [|LLDP] 17:03:56.068531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.068538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.068539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.068553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.068554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 091b c8fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.068556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.068557 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.068557 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.068558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.068560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.068561 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.078512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.078514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.078521 LLDP, length 82 [|LLDP] 17:03:56.078523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.078532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.078532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0923 6a1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.078534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.078535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.078536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.078541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.078542 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.078543 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.078544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.088507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.088509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.088516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.088516 LLDP, length 82 [|LLDP] 17:03:56.088519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.088532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.088548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.088548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 092b 0b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.088550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.098504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.098506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.098513 LLDP, length 82 [|LLDP] 17:03:56.098515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.098523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.098524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0932 ac5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.098526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.098527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.098529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.108506 LLDP, length 82 [|LLDP] 17:03:56.108507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.108514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.108515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.108524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.108526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.108527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 093a 4d7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.108529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.108530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.118516 LLDP, length 82 [|LLDP] 17:03:56.118517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.118532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.118533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0941 ee9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.118534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.118535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.118536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.118537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.118547 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.118549 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.118550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.118556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.118557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.118558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.118559 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.128515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.128517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.128526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.128527 LLDP, length 82 [|LLDP] 17:03:56.128529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.128536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.128537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.128552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.128553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0949 8fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.128555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.128556 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.128556 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.128557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.128558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.128559 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.138516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.138518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.138526 LLDP, length 82 [|LLDP] 17:03:56.138528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.138537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.138537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0951 30de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.138539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.138540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.138541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.138547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.138549 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.138550 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.138551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.138551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.138552 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.148514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.148516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.148523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.148524 LLDP, length 82 [|LLDP] 17:03:56.148527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.148534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.148535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.148550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.148551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0958 d1fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.148552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.148553 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.148554 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.148555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.148556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.148557 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.158512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.158514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.158521 LLDP, length 82 [|LLDP] 17:03:56.158523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.158531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.158532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0960 731e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.158533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.158534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.158535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.158541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.158543 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.158544 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.158544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.158545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.158546 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.168511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.168513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.168520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.168521 LLDP, length 82 [|LLDP] 17:03:56.168523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.168530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.168531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.168552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.168553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0968 143e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.168555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.168556 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.168557 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.168558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.168559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.168560 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.178509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.178511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.178518 LLDP, length 82 [|LLDP] 17:03:56.178520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.178528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.178529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 096f b55e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.178530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.178531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.178533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.178538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.178540 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.178541 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.178542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.188505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.188506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.188514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.188515 LLDP, length 82 [|LLDP] 17:03:56.188517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.188525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.188536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.188537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0977 567e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.188538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.198505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.198513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.198520 LLDP, length 82 [|LLDP] 17:03:56.198522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.198531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.198532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 097e f79e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.198533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.198535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.198537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.208502 LLDP, length 82 [|LLDP] 17:03:56.208503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.208510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.208511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.208519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.208522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.208523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0986 98be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.208524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.208526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.218513 LLDP, length 82 [|LLDP] 17:03:56.218515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.218526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.218527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 098e 39de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.218529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.218530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.218531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.218532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.218541 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.218543 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.218544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.218549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.218551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.218552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.218553 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.228512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.228514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.228529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.228530 LLDP, length 82 [|LLDP] 17:03:56.228532 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.228538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.228540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.228555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.228555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0995 dafe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.228557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.228558 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.228559 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.228560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.228561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.228562 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.238515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.238517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.238526 LLDP, length 82 [|LLDP] 17:03:56.238527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.238536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.238537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 099d 7c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.238539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.238540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.238541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.238547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.238548 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.238549 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.238550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.238551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.238552 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.248509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.248510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.248518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.248519 LLDP, length 82 [|LLDP] 17:03:56.248521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.248528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.248530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.248545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.248546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09a5 1d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.248547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.248548 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.248549 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.248550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.248551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.248552 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.258511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.258513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.258521 LLDP, length 82 [|LLDP] 17:03:56.258523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.258531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.258532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09ac be5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.258533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.258534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.258535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.258541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.258542 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.258543 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.258544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.258545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.258546 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.268509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.268510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.268518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.268519 LLDP, length 82 [|LLDP] 17:03:56.268521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.268529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.268530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.268544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.268545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09b4 5f7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.268546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.268547 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.268548 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.268549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.268550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.268551 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.278507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.278508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.278516 LLDP, length 82 [|LLDP] 17:03:56.278518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.278526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.278527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09bc 009e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.278528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.278529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.278530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.278536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.278538 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.278539 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.278540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.288501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.288503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.288510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.288511 LLDP, length 82 [|LLDP] 17:03:56.288513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.288521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.288532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.288532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09c3 a1be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.288534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.298499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.298501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.298509 LLDP, length 82 [|LLDP] 17:03:56.298510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.298518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.298519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09cb 42de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.298521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.298521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.298524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.308501 LLDP, length 82 [|LLDP] 17:03:56.308502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.308509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.308510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.308520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.308522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.308523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09d2 e3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.308524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.308526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.318513 LLDP, length 82 [|LLDP] 17:03:56.318515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.318527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.318527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09da 851e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.318529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.318530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.318531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.318532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.318542 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.318544 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.318545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.318550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.318552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.318553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.318554 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.328507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.328509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.328517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.328519 LLDP, length 82 [|LLDP] 17:03:56.328521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.328529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.328530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.328551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.328552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09e2 263e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.328554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.328555 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.328556 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.328556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.328558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.328559 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.338512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.338514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.338522 LLDP, length 82 [|LLDP] 17:03:56.338524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.338533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.338534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09e9 c75e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.338535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.338536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.338537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.338543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.338544 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.338545 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.338546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.338547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.338548 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.348511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.348513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.348522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.348523 LLDP, length 82 [|LLDP] 17:03:56.348525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.348532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.348533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.348548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.348549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09f1 687e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.348550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.348551 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.348552 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.348553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.348554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.348555 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.358509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.358511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.358518 LLDP, length 82 [|LLDP] 17:03:56.358520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.358529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.358530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 09f9 099e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.358531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.358532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.358533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.358539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.358540 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.358541 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.358542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.358543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.358544 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.368519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.368521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.368530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.368531 LLDP, length 82 [|LLDP] 17:03:56.368533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.368544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.368545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.368562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.368563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a00 aabe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.368565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.368566 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.368567 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.368567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.368568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.368569 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.378509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.378510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.378519 LLDP, length 82 [|LLDP] 17:03:56.378521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.378530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.378531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a08 4bde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.378533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.378534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.378535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.378541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.378542 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.378543 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.378544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.388500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.388502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.388510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.388511 LLDP, length 82 [|LLDP] 17:03:56.388513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.388520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.388532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.388533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a0f ecfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.388535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.398499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.398501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.398508 LLDP, length 82 [|LLDP] 17:03:56.398509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.398518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.398519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a17 8e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.398520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.398521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.398524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.408499 LLDP, length 82 [|LLDP] 17:03:56.408501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.408508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.408509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.408517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.408519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.408520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a1f 2f3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.408521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.408523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.418509 LLDP, length 82 [|LLDP] 17:03:56.418511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.418521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.418523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a26 d05e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.418524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.418525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.418526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.418527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.418536 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.418538 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.418539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.418544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.418546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.418547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.418548 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.428512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.428514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.428521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.428522 LLDP, length 82 [|LLDP] 17:03:56.428524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.428532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.428533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.428547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.428548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a2e 717e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.428549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.428550 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.428551 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.428552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.428553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.428554 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.438506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.438509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.438516 LLDP, length 82 [|LLDP] 17:03:56.438518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.438526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.438527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a36 129e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.438528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.438529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.438530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.438536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.438537 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.438538 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.438539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.438540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.438541 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.448507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.448508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.448529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.448530 LLDP, length 82 [|LLDP] 17:03:56.448532 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.448540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.448541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.448557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.448557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a3d b3be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.448559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.448560 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.448561 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.448562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.448563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.448564 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.458507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.458509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.458517 LLDP, length 82 [|LLDP] 17:03:56.458518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.458527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.458528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a45 54de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.458530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.458530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.458531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.458537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.458539 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.458540 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.458540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.458541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.458542 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.468507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.468509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.468516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.468517 LLDP, length 82 [|LLDP] 17:03:56.468519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.468527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.468529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.468543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.468544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a4c f5fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.468545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.468546 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.468547 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.468548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.468549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.468550 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.478502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.478504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.478510 LLDP, length 82 [|LLDP] 17:03:56.478512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.478521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.478521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a54 971e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.478523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.478524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.478525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.478530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.478532 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.478533 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.478534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.488495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.488497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.488504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.488505 LLDP, length 82 [|LLDP] 17:03:56.488507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.488515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.488526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.488526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a5c 383e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.488528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.498495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.498497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.498505 LLDP, length 82 [|LLDP] 17:03:56.498506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.498514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.498515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a63 d95e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.498516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.498517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.498520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.508496 LLDP, length 82 [|LLDP] 17:03:56.508498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.508505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.508506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.508514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.508517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.508517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a6b 7a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.508519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.508520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.518507 LLDP, length 82 [|LLDP] 17:03:56.518509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.518524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.518524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a73 1b9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.518526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.518527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.518528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.518529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.518538 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.518540 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.518557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.518563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.518564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.518566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.518567 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.528521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.528523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.528534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.528535 LLDP, length 82 [|LLDP] 17:03:56.528538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.528550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.528551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.528570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.528571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a7a bcbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.528573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.528574 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.528574 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.528575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.528577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.528578 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.538527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.538528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.538541 LLDP, length 82 [|LLDP] 17:03:56.538543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.538557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.538558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a82 5dde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.538560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.538561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.538562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.538568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.538570 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.538571 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.538572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.538573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.538574 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.548510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.548513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.548523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.548524 LLDP, length 82 [|LLDP] 17:03:56.548527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.548535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.548536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.548554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.548555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a89 fefe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.548557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.548558 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.548559 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.548560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.548561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.548562 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.558510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.558512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.558522 LLDP, length 82 [|LLDP] 17:03:56.558524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.558534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.558534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a91 a01e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.558536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.558537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.558538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.558544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.558546 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.558547 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.558548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.558549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.558550 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.568505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.568507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.568514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.568515 LLDP, length 82 [|LLDP] 17:03:56.568518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.568526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.568528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.568542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.568543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0a99 413e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.568544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.568545 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.568546 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.568547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.568548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.568549 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.578500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.578502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.578510 LLDP, length 82 [|LLDP] 17:03:56.578511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.578520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.578520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0aa0 e25e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.578522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.578523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.578524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.578529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.578532 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.578532 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.578533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.588491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.588493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.588500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.588501 LLDP, length 82 [|LLDP] 17:03:56.588503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.588511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.588522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.588522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0aa8 837e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.588524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.598493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.598495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.598502 LLDP, length 82 [|LLDP] 17:03:56.598503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.598512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.598513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ab0 249e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.598514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.598515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.598518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.608492 LLDP, length 82 [|LLDP] 17:03:56.608493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.608500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.608501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.608510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.608512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.608513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ab7 c5be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.608514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.608516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.618518 LLDP, length 82 [|LLDP] 17:03:56.618520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.618531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.618532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0abf 66de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.618533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.618534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.618535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.618536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.618545 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.618546 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.618547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.618553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.618554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.618555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.618556 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.628505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.628507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.628514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.628515 LLDP, length 82 [|LLDP] 17:03:56.628517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.628524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.628525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.628550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.628550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ac7 07fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.628552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.628553 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.628554 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.628555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.628556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.628557 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.638500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.638501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.638509 LLDP, length 82 [|LLDP] 17:03:56.638510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.638519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.638519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ace a91e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.638520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.638522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.638523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.638528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.638530 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.638531 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.638532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.638533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.638534 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.648507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.648509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.648517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.648518 LLDP, length 82 [|LLDP] 17:03:56.648528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.648535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.648537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.648554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.648555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ad6 4a3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.648556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.648557 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.648558 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.648559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.648560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.648561 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.658506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.658508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.658518 LLDP, length 82 [|LLDP] 17:03:56.658520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.658529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.658530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0add eb5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.658532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.658533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.658533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.658539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.658541 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.658542 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.658543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.658544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.658545 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.668507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.668509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.668518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.668519 LLDP, length 82 [|LLDP] 17:03:56.668522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.668530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.668532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.668548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.668548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ae5 8c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.668550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.668551 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.668552 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.668553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.668554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.668555 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.678498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.678500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.678507 LLDP, length 82 [|LLDP] 17:03:56.678508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.678518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.678519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0aed 2d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.678521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.678521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.678522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.678528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.678530 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.678531 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.678532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.688491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.688493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.688500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.688501 LLDP, length 82 [|LLDP] 17:03:56.688503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.688513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.688523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.688524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0af4 cebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.688526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.698488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.698490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.698497 LLDP, length 82 [|LLDP] 17:03:56.698499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.698507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.698508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0afc 6fde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.698509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.698510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.698513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.708491 LLDP, length 82 [|LLDP] 17:03:56.708493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.708500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.708500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.708509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.708512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.708513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b04 10fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.708514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.708515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.718501 LLDP, length 82 [|LLDP] 17:03:56.718503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.718513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.718514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b0b b21e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.718516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.718516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.718517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.718519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.718528 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.718530 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.718531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.718536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.718538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.718538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.718539 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.728505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.728507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.728516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.728517 LLDP, length 82 [|LLDP] 17:03:56.728520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.728528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.728529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.728546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.728547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b13 533e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.728548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.728549 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.728550 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.728551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.728552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.728553 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.738500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.738502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.738510 LLDP, length 82 [|LLDP] 17:03:56.738512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.738520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.738521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b1a f45e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.738522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.738523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.738524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.738530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.738531 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.738532 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.738533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.738533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.738534 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.748501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.748503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.748510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.748511 LLDP, length 82 [|LLDP] 17:03:56.748514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.748521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.748523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.748538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.748539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b22 957e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.748540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.748541 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.748542 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.748543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.748544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.748545 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.758499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.758507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.758515 LLDP, length 82 [|LLDP] 17:03:56.758518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.758526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.758527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b2a 369e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.758528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.758529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.758530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.758536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.758537 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.758538 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.758539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.758540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.758541 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.768503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.768505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.768514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.768515 LLDP, length 82 [|LLDP] 17:03:56.768517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.768532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.768534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.768549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.768550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b31 d7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.768551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.768552 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.768553 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.768554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.768555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.768557 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.778494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.778496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.778504 LLDP, length 82 [|LLDP] 17:03:56.778506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.778514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.778515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b39 78de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.778517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.778518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.778519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.778524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.778525 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.778526 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.778527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.788488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.788490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.788497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.788498 LLDP, length 82 [|LLDP] 17:03:56.788500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.788508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.788518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.788519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b41 19fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.788521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.798488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.798490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.798497 LLDP, length 82 [|LLDP] 17:03:56.798499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.798507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.798507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b48 bb1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.798509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.798510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.798513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.808489 LLDP, length 82 [|LLDP] 17:03:56.808491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.808497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.808498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.808507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.808510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.808511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b50 5c3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.808512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.808513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.818510 LLDP, length 82 [|LLDP] 17:03:56.818512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.818527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.818528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b57 fd5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.818529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.818530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.818531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.818532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.818543 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.818545 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.818546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.818551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.818553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.818554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.818555 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.828501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.828503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.828511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.828512 LLDP, length 82 [|LLDP] 17:03:56.828514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.828522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.828523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.828545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.828546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b5f 9e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.828547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.828548 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.828549 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.828550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.828551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.828552 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.838504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.838506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.838514 LLDP, length 82 [|LLDP] 17:03:56.838515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.838523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.838524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b67 3f9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.838525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.838526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.838528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.838533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.838535 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.838536 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.838537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.838538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.838539 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.848497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.848498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.848506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.848507 LLDP, length 82 [|LLDP] 17:03:56.848509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.848515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.848517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.848532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.848533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b6e e0be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.848534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.848535 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.848536 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.848537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.848538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.848539 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.858502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.858504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.858512 LLDP, length 82 [|LLDP] 17:03:56.858514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.858524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.858525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b76 81de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.858527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.858528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.858529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.858535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.858536 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.858537 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.858538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.858539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.858540 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.868505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.868506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.868517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.868518 LLDP, length 82 [|LLDP] 17:03:56.868520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.868529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.868530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.868547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.868548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b7e 22fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.868549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.868550 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.868552 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.868553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.868554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.868555 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.878500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.878502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.878511 LLDP, length 82 [|LLDP] 17:03:56.878513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.878524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.878525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b85 c41e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.878526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.878528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.878529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.878534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.878536 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.878537 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.878538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.888486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.888488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.888495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.888497 LLDP, length 82 [|LLDP] 17:03:56.888499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.888506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.888518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.888519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b8d 653e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.888521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.898488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.898489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.898497 LLDP, length 82 [|LLDP] 17:03:56.898498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.898507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.898508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b95 065e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.898509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.898510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.898513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.908488 LLDP, length 82 [|LLDP] 17:03:56.908490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.908496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.908497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.908505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.908508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.908509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0b9c a77e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.908510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.908512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.918498 LLDP, length 82 [|LLDP] 17:03:56.918500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.918510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.918511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ba4 489e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.918513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.918513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.918514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.918515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.918526 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.918528 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.918529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.918534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.918536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.918536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.918537 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.928494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.928496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.928504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.928505 LLDP, length 82 [|LLDP] 17:03:56.928507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.928514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.928516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.928539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.928540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bab e9be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.928541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.928542 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.928543 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.928544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.928545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.928546 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.938496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.938498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.938506 LLDP, length 82 [|LLDP] 17:03:56.938507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.938516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.938516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bb3 8ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.938518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.938519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.938520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.938526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.938527 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.938528 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.938529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.938529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.938530 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.948495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.948497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.948505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.948506 LLDP, length 82 [|LLDP] 17:03:56.948508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.948515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.948517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.948531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.948532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bbb 2bfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.948533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.948534 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.948535 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.948536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.948537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.948538 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.958492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.958493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.958502 LLDP, length 82 [|LLDP] 17:03:56.958503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.958512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.958513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bc2 cd1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.958514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.958515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.958516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.958522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.958523 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.958525 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.958525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.958526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.958527 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.968495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.968497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.968504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.968505 LLDP, length 82 [|LLDP] 17:03:56.968507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.968514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.968516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.968530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.968530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bca 6e3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.968540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.968541 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.968542 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.968543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.968544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:56.968545 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:56.978492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.978494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.978503 LLDP, length 82 [|LLDP] 17:03:56.978504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.978513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.978514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bd2 0f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.978516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.978517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:56.978517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.978523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.978524 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.978525 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:56.978526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:56.988487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.988489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.988498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.988499 LLDP, length 82 [|LLDP] 17:03:56.988501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.988509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:56.988522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.988523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bd9 b07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.988524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.998485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:56.998487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.998494 LLDP, length 82 [|LLDP] 17:03:56.998496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:56.998504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:56.998505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0be1 519e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:56.998506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:56.998507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:56.998510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.008485 LLDP, length 82 [|LLDP] 17:03:57.008487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.008494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.008495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.008503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.008505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.008507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0be8 f2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.008508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.008509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.018493 LLDP, length 82 [|LLDP] 17:03:57.018495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.018509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.018510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bf0 93de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.018511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.018512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.018513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.018515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.018524 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.018526 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.018527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.018533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.018534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.018535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.018536 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.028492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.028494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.028501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.028502 LLDP, length 82 [|LLDP] 17:03:57.028504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.028511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.028513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.028528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.028528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bf8 34fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.028530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.028531 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.028532 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.028532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.028533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.028535 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.038492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.038494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.038501 LLDP, length 82 [|LLDP] 17:03:57.038503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.038512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.038512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0bff d61e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.038514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.038515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.038516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.038521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.038523 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.038524 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.038525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.038526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.038526 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.048495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.048496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.048504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.048505 LLDP, length 82 [|LLDP] 17:03:57.048507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.048514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.048516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.048530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.048530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c07 773e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.048532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.048533 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.048540 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.048541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.048542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.048543 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.058491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.058493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.058507 LLDP, length 82 [|LLDP] 17:03:57.058509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.058518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.058519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c0f 185e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.058521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.058522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.058523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.058529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.058530 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.058531 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.058532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.058533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.058534 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.068491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.068492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.068500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.068501 LLDP, length 82 [|LLDP] 17:03:57.068503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.068510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.068512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.068526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.068527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c16 b97e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.068529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.068530 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.068531 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.068532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.068533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.068534 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.078486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.078488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.078497 LLDP, length 82 [|LLDP] 17:03:57.078498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.078506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.078507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c1e 5a9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.078508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.078509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.078510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.078515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.078517 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.078518 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.078519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.088482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.088484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.088493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.088494 LLDP, length 82 [|LLDP] 17:03:57.088496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.088504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.088515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.088516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c25 fbbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.088517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.098483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.098485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.098492 LLDP, length 82 [|LLDP] 17:03:57.098494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.098503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.098504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c2d 9cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.098505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.098506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.098509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.108484 LLDP, length 82 [|LLDP] 17:03:57.108485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.108492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.108493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.108502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.108504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.108505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c35 3dfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.108507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.108508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.118496 LLDP, length 82 [|LLDP] 17:03:57.118498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.118509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.118509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c3c df1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.118511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.118512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.118513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.118514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.118523 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.118525 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.118526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.118532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.118533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.118534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.118535 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.128490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.128492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.128506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.128507 LLDP, length 82 [|LLDP] 17:03:57.128509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.128517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.128519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.128534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.128534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c44 803e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.128536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.128537 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.128538 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.128539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.128539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.128541 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.138489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.138491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.138498 LLDP, length 82 [|LLDP] 17:03:57.138500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.138509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.138510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c4c 215e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.138511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.138512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.138513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.138519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.138521 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.138522 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.138523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.138523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.138524 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.148495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.148497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.148504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.148505 LLDP, length 82 [|LLDP] 17:03:57.148507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.148514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.148515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.148529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.148529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c53 c27e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.148531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.148532 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.148533 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.148533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.148534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.148535 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.158496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.158498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.158506 LLDP, length 82 [|LLDP] 17:03:57.158508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.158517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.158518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c5b 639e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.158519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.158520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.158521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.158527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.158528 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.158529 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.158530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.158531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.158532 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.168488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.168490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.168498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.168499 LLDP, length 82 [|LLDP] 17:03:57.168501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.168508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.168509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.168525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.168526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c63 04be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.168527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.168528 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.168529 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.168530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.168532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.168533 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.178486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.178488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.178495 LLDP, length 82 [|LLDP] 17:03:57.178496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.178506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.178507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c6a a5de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.178508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.178509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.178510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.178516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.178518 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.178519 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.178520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.188482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.188484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.188492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.188493 LLDP, length 82 [|LLDP] 17:03:57.188495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.188502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.188514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.188515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c72 46fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.188516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.198480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.198482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.198490 LLDP, length 82 [|LLDP] 17:03:57.198492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.198501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.198502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c79 e81e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.198503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.198504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.198507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.208481 LLDP, length 82 [|LLDP] 17:03:57.208482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.208489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.208490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.208499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.208501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.208502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c81 893e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.208503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.208505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.218490 LLDP, length 82 [|LLDP] 17:03:57.218492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.218504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.218505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c89 2a5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.218506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.218507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.218508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.218509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.218518 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.218520 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.218521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.218527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.218528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.218529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.218530 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.228488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.228489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.228497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.228498 LLDP, length 82 [|LLDP] 17:03:57.228500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.228507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.228508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.228522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.228523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c90 cb7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.228524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.228525 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.228526 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.228527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.228528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.228529 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.238487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.238490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.238497 LLDP, length 82 [|LLDP] 17:03:57.238499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.238507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.238508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0c98 6c9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.238509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.238510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.238511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.238516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.238517 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.238518 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.238519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.238520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.238521 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.248487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.248488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.248496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.248497 LLDP, length 82 [|LLDP] 17:03:57.248499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.248506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.248507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.248521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.248522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ca0 0dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.248523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.248524 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.248525 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.248526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.248527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.248528 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.258488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.258490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.258498 LLDP, length 82 [|LLDP] 17:03:57.258499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.258507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.258508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ca7 aede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.258509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.258510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.258511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.258517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.258518 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.258519 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.258520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.258521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.258522 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.268491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.268493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.268501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.268502 LLDP, length 82 [|LLDP] 17:03:57.268504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.268511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.268512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.268527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.268528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0caf 4ffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.268529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.268530 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.268531 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.268532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.268533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.268534 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.278492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.278494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.278504 LLDP, length 82 [|LLDP] 17:03:57.278506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.278518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.278519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cb6 f11e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.278521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.278522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.278523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.278529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.278530 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.278531 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.278532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.288488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.288490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.288500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.288501 LLDP, length 82 [|LLDP] 17:03:57.288504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.288514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.288531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.288532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cbe 923e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.288533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.298490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.298500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.298513 LLDP, length 82 [|LLDP] 17:03:57.298515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.298527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.298528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cc6 335e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.298529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.298530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.298533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.308490 LLDP, length 82 [|LLDP] 17:03:57.308492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.308501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.308502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.308516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.308519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.308520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ccd d47e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.308521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.308522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.318497 LLDP, length 82 [|LLDP] 17:03:57.318499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.318513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.318514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cd5 759e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.318515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.318516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.318517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.318518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.318529 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.318530 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.318531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.318537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.318538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.318539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.318540 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.328486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.328488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.328495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.328496 LLDP, length 82 [|LLDP] 17:03:57.328498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.328506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.328508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.328522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.328522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cdd 16be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.328524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.328525 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.328526 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.328527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.328528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.328529 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.338487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.338488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.338496 LLDP, length 82 [|LLDP] 17:03:57.338497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.338506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.338507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ce4 b7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.338509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.338510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.338511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.338516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.338518 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.338519 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.338520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.338521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.338522 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.348519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.348523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.348538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.348539 LLDP, length 82 [|LLDP] 17:03:57.348542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.348559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.348560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.348592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.348593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cec 58fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.348595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.348596 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.348597 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.348598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.348599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.348601 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.358525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.358528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.358544 LLDP, length 82 [|LLDP] 17:03:57.358546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.358566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.358567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cf3 fa1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.358568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.358569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.358571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.358579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.358580 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.358582 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.358583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.358584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.358586 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.368522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.368525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.368540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.368541 LLDP, length 82 [|LLDP] 17:03:57.368544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.368559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.368561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.368587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.368588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cfb 9b3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.368590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.368592 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.368594 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.368595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.368597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.368598 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.378522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.378525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.378542 LLDP, length 82 [|LLDP] 17:03:57.378544 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.378563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.378564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d03 3c5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.378565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.378566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.378567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.378574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.378576 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.378577 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.378578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.388504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.388508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.388524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.388525 LLDP, length 82 [|LLDP] 17:03:57.388527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.388542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.388561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.388562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d0a dd7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.388564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.398501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.398503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.398519 LLDP, length 82 [|LLDP] 17:03:57.398521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.398536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.398537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d12 7e9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.398538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.398539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.398542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.408507 LLDP, length 82 [|LLDP] 17:03:57.408510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.408524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.408526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.408543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.408547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.408548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d1a 1fbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.408549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.408551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.418507 LLDP, length 82 [|LLDP] 17:03:57.418508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.418524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.418525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d21 c0de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.418526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.418527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.418528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.418529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.418542 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.418544 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.418546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.418552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.418553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.418554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.418555 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.428483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.428485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.428492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.428493 LLDP, length 82 [|LLDP] 17:03:57.428496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.428505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.428507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.428522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.428523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d29 61fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.428524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.428525 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.428526 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.428527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.428528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.428529 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.438483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.438485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.438492 LLDP, length 82 [|LLDP] 17:03:57.438494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.438503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.438503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d31 031e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.438505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.438506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.438507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.438513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.438514 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.438515 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.438516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.438517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.438518 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.448482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.448484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.448492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.448493 LLDP, length 82 [|LLDP] 17:03:57.448495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.448503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.448505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.448519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.448520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d38 a43e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.448521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.448522 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.448523 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.448524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.448525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.448526 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.458481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.458483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.458497 LLDP, length 82 [|LLDP] 17:03:57.458498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.458508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.458509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d40 455e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.458510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.458511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.458512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.458517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.458519 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.458520 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.458521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.458522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.458522 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.468482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.468484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.468491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.468492 LLDP, length 82 [|LLDP] 17:03:57.468494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.468502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.468503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.468517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.468518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d47 e67e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.468519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.468520 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.468528 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.468529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.468530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.468531 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.478479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.478481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.478488 LLDP, length 82 [|LLDP] 17:03:57.478489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.478499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.478500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d4f 879e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.478501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.478502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.478503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.478508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.478510 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.478511 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.478512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.488471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.488473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.488479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.488480 LLDP, length 82 [|LLDP] 17:03:57.488482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.488490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.488502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.488502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d57 28be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.488504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.498469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.498471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.498478 LLDP, length 82 [|LLDP] 17:03:57.498493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.498506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.498507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d5e c9de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.498508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.498509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.498512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.508488 LLDP, length 82 [|LLDP] 17:03:57.508490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.508502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.508503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.508515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.508519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.508520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d66 6afe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.508521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.508523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.518492 LLDP, length 82 [|LLDP] 17:03:57.518499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.518513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.518514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d6e 0c1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.518516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.518517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.518518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.518519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.518530 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.518532 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.518533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.518540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.518541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.518542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.518543 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.528486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.528488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.528496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.528497 LLDP, length 82 [|LLDP] 17:03:57.528499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.528509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.528511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.528525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.528526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d75 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.528527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.528528 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.528529 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.528530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.528531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.528532 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.538483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.538485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.538491 LLDP, length 82 [|LLDP] 17:03:57.538493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.538503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.538504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d7d 4e5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.538505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.538506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.538507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.538513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.538514 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.538515 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.538516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.538517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.538518 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.548479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.548481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.548488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.548489 LLDP, length 82 [|LLDP] 17:03:57.548491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.548500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.548501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.548515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.548516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d84 ef7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.548518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.548519 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.548519 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.548520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.548521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.548522 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.558481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.558483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.558489 LLDP, length 82 [|LLDP] 17:03:57.558491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.558501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.558502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d8c 909e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.558503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.558504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.558505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.558511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.558512 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.558513 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.558514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.558515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.558516 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.568481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.568483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.568490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.568491 LLDP, length 82 [|LLDP] 17:03:57.568493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.568501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.568503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.568516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.568517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d94 31be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.568518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.568519 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.568520 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.568521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.568522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.568523 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.578474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.578476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.578483 LLDP, length 82 [|LLDP] 17:03:57.578484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.578494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.578495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d9b d2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.578496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.578497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.578498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.578504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.578505 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.578506 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.578507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.588470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.588472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.588479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.588480 LLDP, length 82 [|LLDP] 17:03:57.588482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.588492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.588503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.588504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0da3 73fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.588505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.598480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.598482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.598492 LLDP, length 82 [|LLDP] 17:03:57.598493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.598506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.598507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dab 151e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.598508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.598509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.598512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.608472 LLDP, length 82 [|LLDP] 17:03:57.608474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.608482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.608484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.608492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.608494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.608495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0db2 b63e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.608496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.608498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.618483 LLDP, length 82 [|LLDP] 17:03:57.618484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.618496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.618497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dba 575e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.618499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.618500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.618501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.618502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.618513 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.618515 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.618516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.618521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.618523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.618524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.618525 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.628480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.628482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.628490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.628491 LLDP, length 82 [|LLDP] 17:03:57.628493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.628502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.628503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.628518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.628519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dc1 f87e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.628521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.628522 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.628523 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.628524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.628525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.628525 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.638477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.638479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.638494 LLDP, length 82 [|LLDP] 17:03:57.638495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.638505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.638506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dc9 999e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.638507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.638508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.638509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.638515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.638516 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.638517 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.638518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.638519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.638520 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.648478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.648480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.648487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.648488 LLDP, length 82 [|LLDP] 17:03:57.648490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.648498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.648499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.648513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.648514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dd1 3abe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.648516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.648517 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.648518 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.648519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.648527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.648528 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.658477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.658479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.658486 LLDP, length 82 [|LLDP] 17:03:57.658488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.658497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.658498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dd8 dbde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.658500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.658500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.658501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.658507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.658508 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.658509 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.658510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.658511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.658512 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.668479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.668481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.668488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.668489 LLDP, length 82 [|LLDP] 17:03:57.668491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.668499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.668500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.668514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.668515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0de0 7cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.668516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.668517 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.668518 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.668519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.668520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.668521 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.678474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.678476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.678483 LLDP, length 82 [|LLDP] 17:03:57.678484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.678493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.678494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0de8 1e1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.678496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.678497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.678498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.678504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.678505 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.678506 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.678507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.688467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.688469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.688476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.688477 LLDP, length 82 [|LLDP] 17:03:57.688479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.688486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.688498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.688498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0def bf3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.688499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.698467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.698469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.698477 LLDP, length 82 [|LLDP] 17:03:57.698479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.698489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.698490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0df7 605e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.698491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.698492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.698495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.708467 LLDP, length 82 [|LLDP] 17:03:57.708468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.708476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.708477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.708485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.708488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.708489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dff 017e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.708490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.708491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.718477 LLDP, length 82 [|LLDP] 17:03:57.718479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.718491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.718492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e06 a29e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.718493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.718494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.718495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.718496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.718505 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.718507 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.718508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.718513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.718515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.718516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.718516 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.728477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.728479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.728487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.728488 LLDP, length 82 [|LLDP] 17:03:57.728490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.728499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.728500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.728514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.728515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e0e 43be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.728516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.728518 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.728525 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.728526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.728527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.728528 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.738477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.738479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.738486 LLDP, length 82 [|LLDP] 17:03:57.738487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.738499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.738499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e15 e4de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.738501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.738502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.738503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.738509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.738510 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.738511 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.738512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.738513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.738514 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.748474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.748476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.748482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.748483 LLDP, length 82 [|LLDP] 17:03:57.748486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.748494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.748496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.748509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.748510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e1d 85fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.748512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.748512 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.748513 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.748514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.748515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.748516 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.758473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.758475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.758481 LLDP, length 82 [|LLDP] 17:03:57.758483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.758493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.758493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e25 271e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.758494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.758495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.758496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.758501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.758503 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.758503 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.758504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.758505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.758506 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.768475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.768476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.768483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.768484 LLDP, length 82 [|LLDP] 17:03:57.768486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.768494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.768496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.768508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.768509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e2c c83e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.768511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.768512 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.768513 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.768514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.768514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.768516 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.778471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.778473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.778481 LLDP, length 82 [|LLDP] 17:03:57.778482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.778491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.778492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e34 695e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.778494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.778494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.778495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.778501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.778502 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.778503 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.778504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.788466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.788468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.788474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.788476 LLDP, length 82 [|LLDP] 17:03:57.788478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.788487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.788498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.788499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e3c 0a7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.788500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.798464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.798466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.798473 LLDP, length 82 [|LLDP] 17:03:57.798475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.798484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.798485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e43 ab9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.798486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.798487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.798490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.808465 LLDP, length 82 [|LLDP] 17:03:57.808467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.808475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.808476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.808484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.808486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.808487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e4b 4cbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.808488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.808490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.818485 LLDP, length 82 [|LLDP] 17:03:57.818487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.818501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.818502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e52 edde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.818503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.818504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.818505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.818506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.818518 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.818519 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.818520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.818526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.818527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.818529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.818530 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.828474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.828476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.828484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.828485 LLDP, length 82 [|LLDP] 17:03:57.828487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.828496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.828497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.828512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.828513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e5a 8efe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.828514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.828515 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.828523 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.828524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.828526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.828527 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.838476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.838478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.838486 LLDP, length 82 [|LLDP] 17:03:57.838488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.838499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.838500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e62 301e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.838501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.838502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.838503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.838509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.838510 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.838511 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.838512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.838513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.838514 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.848473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.848475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.848481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.848482 LLDP, length 82 [|LLDP] 17:03:57.848484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.848493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.848495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.848508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.848508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e69 d13e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.848510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.848511 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.848512 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.848513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.848514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.848515 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.858471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.858473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.858486 LLDP, length 82 [|LLDP] 17:03:57.858488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.858498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.858499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e71 725e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.858501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.858502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.858503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.858508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.858510 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.858511 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.858512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.858513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.858514 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.868473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.868475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.868482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.868483 LLDP, length 82 [|LLDP] 17:03:57.868485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.868495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.868496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.868510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.868511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e79 137e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.868513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.868514 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.868515 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.868516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.868517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.868518 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.878469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.878471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.878479 LLDP, length 82 [|LLDP] 17:03:57.878481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.878490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.878491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e80 b49e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.878492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.878493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.878494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.878499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.878501 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.878502 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.878503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.888465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.888467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.888474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.888475 LLDP, length 82 [|LLDP] 17:03:57.888477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.888485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.888496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.888497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e88 55be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.888498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.898460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.898462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.898469 LLDP, length 82 [|LLDP] 17:03:57.898471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.898480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.898481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e8f f6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.898482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.898483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.898486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.908463 LLDP, length 82 [|LLDP] 17:03:57.908465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.908473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.908474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.908482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.908484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.908485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e97 97fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.908486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.908487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.918472 LLDP, length 82 [|LLDP] 17:03:57.918473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.918489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.918489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e9f 391e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.918491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.918492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.918493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.918494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.918503 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.918504 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.918505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.918510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.918512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.918513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.918514 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.928471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.928473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.928479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.928480 LLDP, length 82 [|LLDP] 17:03:57.928482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.928490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.928492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.928505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.928505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ea6 da3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.928507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.928508 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.928509 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.928510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.928511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.928512 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.938480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.938482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.938490 LLDP, length 82 [|LLDP] 17:03:57.938492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.938502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.938503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0eae 7b5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.938504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.938505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.938506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.938512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.938513 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.938514 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.938515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.938516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.938517 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.948480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.948482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.948492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.948493 LLDP, length 82 [|LLDP] 17:03:57.948495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.948505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.948507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.948523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.948524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0eb6 1c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.948525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.948526 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.948527 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.948528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.948529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.948529 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.958472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.958474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.958482 LLDP, length 82 [|LLDP] 17:03:57.958483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.958493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.958494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ebd bd9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.958495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.958496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.958497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.958503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.958504 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.958505 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.958506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.958507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.958508 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.968473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.968474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.968482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.968483 LLDP, length 82 [|LLDP] 17:03:57.968486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.968494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.968496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.968510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.968511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ec5 5ebe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.968513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.968514 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.968514 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.968515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.968516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:57.968517 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:57.978467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.978469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.978477 LLDP, length 82 [|LLDP] 17:03:57.978478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.978488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.978489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ecc ffde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.978490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.978491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:57.978492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.978497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.978499 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.978500 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:57.978501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:57.988462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.988464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.988472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.988473 LLDP, length 82 [|LLDP] 17:03:57.988475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.988484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:57.988495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.988496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ed4 a0fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.988497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.998462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:57.998464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.998472 LLDP, length 82 [|LLDP] 17:03:57.998474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:57.998483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:57.998484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0edc 421e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:57.998485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:57.998486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:57.998489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.008463 LLDP, length 82 [|LLDP] 17:03:58.008465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.008473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.008474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.008483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.008485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.008486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ee3 e33e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.008487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.008489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.018475 LLDP, length 82 [|LLDP] 17:03:58.018477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.018495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.018496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0eeb 845e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.018497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.018498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.018499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.018500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.018510 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.018511 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.018512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.018517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.018519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.018520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.018521 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.028470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.028472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.028480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.028482 LLDP, length 82 [|LLDP] 17:03:58.028484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.028492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.028493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.028508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.028509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ef3 257e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.028510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.028511 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.028513 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.028514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.028515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.028515 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.038471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.038473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.038482 LLDP, length 82 [|LLDP] 17:03:58.038484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.038494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.038495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0efa c69e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.038496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.038497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.038498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.038504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.038505 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.038506 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.038507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.038508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.038509 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.048473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.048475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.048483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.048484 LLDP, length 82 [|LLDP] 17:03:58.048486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.048495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.048496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.048512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.048513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f02 67be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.048514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.048515 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.048516 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.048517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.048518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.048520 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.058468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.058470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.058477 LLDP, length 82 [|LLDP] 17:03:58.058479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.058489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.058490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f0a 08de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.058492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.058493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.058494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.058499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.058501 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.058501 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.058502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.058504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.058505 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.068484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.068487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.068499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.068500 LLDP, length 82 [|LLDP] 17:03:58.068502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.068515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.068516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.068546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.068547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f11 a9fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.068548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.068549 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.068550 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.068551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.068552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.068553 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.078474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.078477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.078488 LLDP, length 82 [|LLDP] 17:03:58.078490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.078502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.078503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f19 4b1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.078505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.078506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.078507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.078513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.078514 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.078515 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.078516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.088461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.088463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.088472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.088473 LLDP, length 82 [|LLDP] 17:03:58.088475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.088484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.088497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.088498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f20 ec3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.088499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.098460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.098461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.098469 LLDP, length 82 [|LLDP] 17:03:58.098471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.098481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.098481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f28 8d5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.098483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.098484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.098487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.108464 LLDP, length 82 [|LLDP] 17:03:58.108466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.108475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.108476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.108486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.108488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.108489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f30 2e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.108491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.108492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.118472 LLDP, length 82 [|LLDP] 17:03:58.118474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.118488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.118489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f37 cf9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.118490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.118491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.118492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.118493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.118502 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.118504 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.118505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.118511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.118512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.118513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.118514 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.128468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.128470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.128477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.128478 LLDP, length 82 [|LLDP] 17:03:58.128480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.128489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.128490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.128504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.128504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f3f 70be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.128506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.128507 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.128508 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.128509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.128510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.128511 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.138467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.138469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.138476 LLDP, length 82 [|LLDP] 17:03:58.138478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.138487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.138488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f47 11de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.138490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.138491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.138492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.138497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.138498 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.138499 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.138501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.138502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.138503 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.148469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.148471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.148479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.148480 LLDP, length 82 [|LLDP] 17:03:58.148483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.148492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.148493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.148508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.148509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f4e b2fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.148510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.148511 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.148512 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.148513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.148514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.148515 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.158465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.158467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.158474 LLDP, length 82 [|LLDP] 17:03:58.158476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.158486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.158487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f56 541e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.158488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.158489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.158490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.158496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.158497 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.158498 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.158499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.158500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.158501 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.168467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.168469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.168477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.168478 LLDP, length 82 [|LLDP] 17:03:58.168480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.168489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.168490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.168505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.168506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f5d f53e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.168507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.168508 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.168509 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.168510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.168511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.168512 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.178462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.178464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.178470 LLDP, length 82 [|LLDP] 17:03:58.178472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.178481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.178482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f65 965e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.178484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.178485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.178486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.178491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.178493 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.178494 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.178495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.188456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.188458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.188465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.188466 LLDP, length 82 [|LLDP] 17:03:58.188468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.188476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.188487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.188488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f6d 377e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.188489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.198454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.198456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.198463 LLDP, length 82 [|LLDP] 17:03:58.198464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.198474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.198475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f74 d89e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.198477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.198478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.198480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.208456 LLDP, length 82 [|LLDP] 17:03:58.208458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.208466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.208467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.208475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.208478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.208478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f7c 79be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.208480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.208481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.218466 LLDP, length 82 [|LLDP] 17:03:58.218468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.218480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.218480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f84 1ade 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.218482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.218482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.218483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.218484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.218493 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.218495 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.218496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.218500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.218502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.218503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.218504 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.228466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.228468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.228475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.228476 LLDP, length 82 [|LLDP] 17:03:58.228478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.228486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.228487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.228500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.228501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f8b bbfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.228503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.228504 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.228505 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.228506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.228506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.228507 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.238462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.238463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.238470 LLDP, length 82 [|LLDP] 17:03:58.238472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.238482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.238483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f93 5d1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.238484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.238485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.238486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.238492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.238493 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.238494 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.238495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.238496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.238497 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.248463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.248466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.248473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.248474 LLDP, length 82 [|LLDP] 17:03:58.248476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.248485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.248486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.248500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.248500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f9a fe3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.248502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.248503 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.248504 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.248505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.248506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.248507 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.258461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.258463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.258471 LLDP, length 82 [|LLDP] 17:03:58.258473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.258482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.258483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fa2 9f5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.258485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.258486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.258487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.258492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.258494 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.258495 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.258496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.258497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.258498 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.268466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.268469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.268476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.268477 LLDP, length 82 [|LLDP] 17:03:58.268480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.268488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.268490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.268504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.268505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0faa 407e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.268506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.268507 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.268508 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.268509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.268510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.268511 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.278460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.278462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.278470 LLDP, length 82 [|LLDP] 17:03:58.278472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.278481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.278482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fb1 e19e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.278484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.278485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.278485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.278491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.278492 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.278493 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.278494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.288455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.288457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.288465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.288466 LLDP, length 82 [|LLDP] 17:03:58.288468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.288477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.288489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.288490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fb9 82be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.288491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.298452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.298454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.298462 LLDP, length 82 [|LLDP] 17:03:58.298464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.298473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.298474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fc1 23de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.298475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.298476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.298479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.308455 LLDP, length 82 [|LLDP] 17:03:58.308456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.308465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.308466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.308476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.308479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.308480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fc8 c4fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.308481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.308483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.318464 LLDP, length 82 [|LLDP] 17:03:58.318466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.318478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.318479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fd0 661e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.318480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.318481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.318482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.318483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.318493 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.318495 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.318496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.318501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.318503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.318504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.318505 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.328465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.328467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.328474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.328475 LLDP, length 82 [|LLDP] 17:03:58.328477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.328486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.328487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.328501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.328502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fd8 073e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.328504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.328504 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.328505 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.328506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.328507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.328509 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.338463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.338465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.338473 LLDP, length 82 [|LLDP] 17:03:58.338475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.338485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.338486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fdf a85e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.338487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.338488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.338489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.338495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.338496 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.338497 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.338498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.338499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.338500 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.348462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.348464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.348471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.348472 LLDP, length 82 [|LLDP] 17:03:58.348474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.348482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.348484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.348499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.348500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fe7 497e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.348501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.348502 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.348503 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.348504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.348505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.348506 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.358467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.358470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.358478 LLDP, length 82 [|LLDP] 17:03:58.358479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.358488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.358489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fee ea9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.358490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.358491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.358492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.358498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.358499 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.358500 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.358500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.358501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.358502 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.368473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.368475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.368485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.368486 LLDP, length 82 [|LLDP] 17:03:58.368488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.368500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.368501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.368518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.368518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ff6 8bbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.368520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.368521 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.368522 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.368523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.368524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.368525 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.378467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.378469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.378477 LLDP, length 82 [|LLDP] 17:03:58.378479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.378489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.378490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ffe 2cde 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.378492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.378492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.378493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.378499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.378500 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.378501 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.378502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.388453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.388455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.388463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.388464 LLDP, length 82 [|LLDP] 17:03:58.388466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.388475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.388488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.388488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1005 cdfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.388490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.398453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.398455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.398463 LLDP, length 82 [|LLDP] 17:03:58.398464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.398474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.398475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 100d 6f1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.398476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.398477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.398479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.408452 LLDP, length 82 [|LLDP] 17:03:58.408454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.408462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.408463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.408472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.408474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.408475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1015 103e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.408477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.408478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.418503 LLDP, length 82 [|LLDP] 17:03:58.418505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.418530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.418531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 101c b15e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.418533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.418534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.418536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.418537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.418558 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.418561 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.418562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.418569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.418571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.418573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.418573 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.428496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.428498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.428514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.428515 LLDP, length 82 [|LLDP] 17:03:58.428517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.428531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.428533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.428557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.428558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1024 527e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.428560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.428561 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.428562 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.428563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.428564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.428565 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.438466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.438468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.438477 LLDP, length 82 [|LLDP] 17:03:58.438479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.438490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.438490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 102b f39e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.438492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.438493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.438494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.438500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.438502 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.438503 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.438504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.438505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.438506 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.448464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.448467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.448475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.448476 LLDP, length 82 [|LLDP] 17:03:58.448479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.448488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.448489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.448504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.448505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1033 94be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.448506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.448507 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.448508 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.448509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.448510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.448512 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.458464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.458467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.458475 LLDP, length 82 [|LLDP] 17:03:58.458477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.458488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.458489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 103b 35de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.458491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.458492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.458492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.458498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.458500 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.458501 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.458502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.458503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.458504 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.468463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.468465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.468474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.468475 LLDP, length 82 [|LLDP] 17:03:58.468477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.468487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.468489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.468504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.468505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1042 d6fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.468506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.468507 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.468508 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.468509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.468510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.468511 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.478472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.478474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.478482 LLDP, length 82 [|LLDP] 17:03:58.478484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.478497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.478498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 104a 781e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.478499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.478500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.478501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.478507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.478509 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.478510 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.478511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.488466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.488468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.488479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.488480 LLDP, length 82 [|LLDP] 17:03:58.488482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.488494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.488512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.488513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1052 193e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.488514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.498453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.498455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.498466 LLDP, length 82 [|LLDP] 17:03:58.498468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.498478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.498479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1059 ba5e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.498480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.498481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.498484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.508453 LLDP, length 82 [|LLDP] 17:03:58.508454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.508462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.508463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.508471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.508474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.508475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1061 5b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.508476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.508478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.518461 LLDP, length 82 [|LLDP] 17:03:58.518463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.518480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.518480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1068 fc9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.518482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.518483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.518484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.518485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.518494 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.518496 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.518497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.518503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.518504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.518512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.518513 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.528459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.528460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.528469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.528470 LLDP, length 82 [|LLDP] 17:03:58.528472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.528479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.528480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.528496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.528496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1070 9dbe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.528498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.528499 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.528500 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.528501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.528502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.528503 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.538458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.538460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.538467 LLDP, length 82 [|LLDP] 17:03:58.538468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.538478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.538479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1078 3ede 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.538480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.538481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.538482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.538488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.538489 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.538490 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.538491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.538492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.538493 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.548458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.548461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.548469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.548470 LLDP, length 82 [|LLDP] 17:03:58.548472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.548479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.548480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.548495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.548496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 107f dffe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.548497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.548498 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.548499 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.548500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.548501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.548502 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.558454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.558456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.558463 LLDP, length 82 [|LLDP] 17:03:58.558465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.558473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.558474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1087 811e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.558476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.558477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.558478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.558483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.558485 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.558486 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.558487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.558488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.558489 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.568461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.568463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.568472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.568473 LLDP, length 82 [|LLDP] 17:03:58.568475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.568483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.568485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.568500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.568501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 108f 223e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.568502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.568503 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.568504 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.568505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:03:58.568506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:03:58.568507 IP 1.1.1.2.12214 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:03:58.578455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:03:58.578457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.578464 LLDP, length 82 [|LLDP] 17:03:58.578466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:03:58.578476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:03:58.578476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1096 c35e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:03:58.578478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:03:58.578479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:03:58.578480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:03:58.578485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:03:58.578487 IP 1.1.1.2.3926 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.578488 IP 192.168.1.1.14171 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:03:58.578489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 5853 packets captured 5853 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:04:07 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=45, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=45, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=10] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=12] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=45, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=45, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=14] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=45, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:04:08 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=45, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:04:09 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=45, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_backward_forwarding | 163.06 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_backward_forwarding">Starting testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2304' coro=<test_bridging_backward_forwarding() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=46] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=46] Local address: 172.17.0.4, port 44686 INFO asyncssh:logging.py:92 [conn=46] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=46] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=46] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:04:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=46, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2899b70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:5 TI streamA SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:5 TI streamB SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=46, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:e9:96:83","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:06:51 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=46, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:06:51 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=46, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":76,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=46, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=18] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_forward_block_different_packets | 195.79 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_forward_block_different_packets">Starting testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2332' coro=<test_bridging_forward_block_different_packets() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:152> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=47] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=47] Local address: 172.17.0.4, port 34540 INFO asyncssh:logging.py:92 [conn=47] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=47] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=47] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:06:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=47, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a276e710>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Broadcast SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_VRRP SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI IPv4_IGMP SIP-DIP N/A Tx 444 Rx 444 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:10:07 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=47, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=10] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:10:07 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=47, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":77,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=47, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=14] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_fdb_flush_on_down | 127.40 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_fdb_flush_on_down">Starting testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2356' coro=<test_bridging_fdb_flush_on_down() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:345> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=48] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=48] Local address: 172.17.0.4, port 43176 INFO asyncssh:logging.py:92 [conn=48] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=48] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=48] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:10:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=48, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_11.0.0.1/24', 'count': 1, 'ip': '11.0.0.1', 'gw': '11.0.0.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.2/24', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_11.0.0.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a276f940>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI bridge SIP-DIP N/A Tx 246 Rx 246 Loss 0.000 INFO asyncssh:logging.py:92 [conn=48, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:82:72:5b","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=48, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=12] Command: ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:82:72:5b","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:12:13 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=48, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:12:15 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=48, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":78,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=48, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_traffic_from_nomaster | 196.79 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_traffic_from_nomaster">Starting testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2388' coro=<test_bridging_traffic_from_nomaster() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:456> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=49] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=49] Local address: 172.17.0.4, port 52378 INFO asyncssh:logging.py:92 [conn=49] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=49] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=49] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:12:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=49, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=8] Command: bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp2 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp3 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp4 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp2 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp3 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp4 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=12] Command: ip link set dev swp1 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a27c5000>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 340 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI bridge_2 SIP-DIP N/A Tx 340 Rx 340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI bridge_3 SIP-DIP N/A Tx 340 Rx 340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI bridge_4 SIP-DIP N/A Tx 340 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:15:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=49, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:15:31 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=49, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":79,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=49, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=20] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_unregistered_traffic | 234.67 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unregistered_traffic">Starting testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2418' coro=<test_bridging_unregistered_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:570> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=50] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=50] Local address: 172.17.0.4, port 48734 INFO asyncssh:logging.py:92 [conn=50] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=50] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=50] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:15:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=50, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a27c4940>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 4442 Rx 4442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI streamB SIP-DIP N/A Tx 4442 Rx 4442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI streamC SIP-DIP N/A Tx 4442 Rx 4442 Loss 0.000 INFO asyncssh:logging.py:92 [conn=50, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 flood off && bridge link set dev swp2 flood off && bridge link set dev swp3 flood off && bridge link set dev swp4 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=8] Command: bridge link set dev swp1 flood off && bridge link set dev swp2 flood off && bridge link set dev swp3 flood off && bridge link set dev swp4 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a27c4130>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 8078 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI streamB SIP-DIP N/A Tx 8078 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI streamC SIP-DIP N/A Tx 8078 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=50, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 flood on && bridge link set dev swp2 flood on && bridge link set dev swp3 flood on && bridge link set dev swp4 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=10] Command: bridge link set dev swp1 flood on && bridge link set dev swp2 flood on && bridge link set dev swp3 flood on && bridge link set dev swp4 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a27c4940>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 8069 Rx 8069 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI streamB SIP-DIP N/A Tx 8069 Rx 8069 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI streamC SIP-DIP N/A Tx 8069 Rx 8069 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:19:26 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=50, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:19:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=50, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":80,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=50, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=18] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_wrong_fcs | 154.85 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_wrong_fcs">Starting testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2446' coro=<test_bridging_wrong_fcs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:717> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=51] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=51] Local address: 172.17.0.4, port 43024 INFO asyncssh:logging.py:92 [conn=51] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=51] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=51] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:19:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=51, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood on && bridge link set dev swp2 learning on flood on && bridge link set dev swp3 learning on flood on && bridge link set dev swp4 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=8] Command: bridge link set dev swp1 learning on flood on && bridge link set dev swp2 learning on flood on && bridge link set dev swp3 learning on flood on && bridge link set dev swp4 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a289bd90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI bridge SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=51, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:4a:df:42","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:22:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=51, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:22:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=51, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":81,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=51, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=18] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_full_fdb_traffic.py::test_bridging_full_fdb_traffic | 229.03 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_full_fdb_traffic">Starting testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2474' coro=<test_bridging_full_fdb_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=52] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=52] Local address: 172.17.0.4, port 42818 INFO asyncssh:logging.py:92 [conn=52] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=52] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=52] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:22:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=52, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a27c72e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 66808 Rx 66808 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=8] Channel closed DEBUG agg1:Logger.py:156 16002 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a28994e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 64116 Rx 64116 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=10] Channel closed DEBUG agg1:Logger.py:156 16002 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:25:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=52, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:25:50 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=52, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":82,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=52, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=18] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[1510] | 215.03 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2502' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[1510]">Starting testcase:test_bridging_jumbo_frame_size[1510] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=53] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=53] Local address: 172.17.0.4, port 60972 INFO asyncssh:logging.py:92 [conn=53] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=53] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=53] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:25:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=53, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=3] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=4] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:25:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=53, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 1510 && ip link set dev swp2 mtu 1510 && ip link set dev swp3 mtu 1510 && ip link set dev swp4 mtu 1510 INFO asyncssh:logging.py:92 [conn=53, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=10] Command: ip link set dev swp1 mtu 1510 && ip link set dev swp2 mtu 1510 && ip link set dev swp3 mtu 1510 && ip link set dev swp4 mtu 1510 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2898760>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 807 Rx 807 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI bridge_2 SIP-DIP N/A Tx 807 Rx 807 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI bridge_3 SIP-DIP N/A Tx 807 Rx 807 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI bridge_4 SIP-DIP N/A Tx 807 Rx 807 Loss 0.000 INFO asyncssh:logging.py:92 [conn=53, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[1510] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=53, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=14] Command: ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:29:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=53, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:29:25 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=53, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":83,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=53, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[8998] | 214.65 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2536' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[8998]">Starting testcase:test_bridging_jumbo_frame_size[8998] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=54] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=54] Local address: 172.17.0.4, port 55970 INFO asyncssh:logging.py:92 [conn=54] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=54] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=54] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:29:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=54, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=3] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=4] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:29:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=54, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 8998 && ip link set dev swp2 mtu 8998 && ip link set dev swp3 mtu 8998 && ip link set dev swp4 mtu 8998 INFO asyncssh:logging.py:92 [conn=54, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=10] Command: ip link set dev swp1 mtu 8998 && ip link set dev swp2 mtu 8998 && ip link set dev swp3 mtu 8998 && ip link set dev swp4 mtu 8998 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a27c6470>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 799 Rx 799 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI bridge_2 SIP-DIP N/A Tx 799 Rx 799 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI bridge_3 SIP-DIP N/A Tx 799 Rx 799 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI bridge_4 SIP-DIP N/A Tx 799 Rx 799 Loss 0.000 INFO asyncssh:logging.py:92 [conn=54, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[8998] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=54, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=14] Command: ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:32:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=54, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:33:00 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=54, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":84,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=54, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[9000] | 216.66 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2570' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[9000]">Starting testcase:test_bridging_jumbo_frame_size[9000] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=55] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=55] Local address: 172.17.0.4, port 50756 INFO asyncssh:logging.py:92 [conn=55] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=55] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=55] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:33:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=55, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=3] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=4] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:33:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=55, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 9000 && ip link set dev swp2 mtu 9000 && ip link set dev swp3 mtu 9000 && ip link set dev swp4 mtu 9000 INFO asyncssh:logging.py:92 [conn=55, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=10] Command: ip link set dev swp1 mtu 9000 && ip link set dev swp2 mtu 9000 && ip link set dev swp3 mtu 9000 && ip link set dev swp4 mtu 9000 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2db8d60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 789 Rx 789 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI bridge_2 SIP-DIP N/A Tx 789 Rx 789 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI bridge_3 SIP-DIP N/A Tx 789 Rx 789 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI bridge_4 SIP-DIP N/A Tx 789 Rx 789 Loss 0.000 INFO asyncssh:logging.py:92 [conn=55, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[9000] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=55, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=14] Command: ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:36:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=55, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:36:36 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=55, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":85,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=55, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[9002] | 217.92 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2604' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[9002]">Starting testcase:test_bridging_jumbo_frame_size[9002] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=56] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=56] Local address: 172.17.0.4, port 41330 INFO asyncssh:logging.py:92 [conn=56] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=56] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=56] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:36:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=56, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=56, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=56, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=3] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=4] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:36:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=56, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 9002 && ip link set dev swp2 mtu 9002 && ip link set dev swp3 mtu 9002 && ip link set dev swp4 mtu 9002 INFO asyncssh:logging.py:92 [conn=56, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=10] Command: ip link set dev swp1 mtu 9002 && ip link set dev swp2 mtu 9002 && ip link set dev swp3 mtu 9002 && ip link set dev swp4 mtu 9002 INFO asyncssh:logging.py:92 [conn=56, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=56, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=10] Channel closed DEBUG agg1:Logger.py:156 Error: mtu greater than device maximum. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a28994e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 787 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI bridge_2 SIP-DIP N/A Tx 787 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI bridge_3 SIP-DIP N/A Tx 787 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI bridge_4 SIP-DIP N/A Tx 787 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=56, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[9002] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=56, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=56, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=14] Command: ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=56, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:40:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=56, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:40:14 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=56, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":86,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=56, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_learning_address | 210.44 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address">Starting testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2638' coro=<test_bridging_learning_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=57] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=57] Local address: 172.17.0.4, port 44810 INFO asyncssh:logging.py:92 [conn=57] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=57] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=57] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:40:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=57, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=57, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=57, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a289a530>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 241 Rx 240 Frames Delta 1 Loss 0.415 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 241 Rx 240 Frames Delta 1 Loss 0.415 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 241 Rx 240 Frames Delta 1 Loss 0.415 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 241 Rx 240 Frames Delta 1 Loss 0.415 INFO asyncssh:logging.py:92 [conn=57, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=57, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=57, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:0d:4e:59","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:43:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=57, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:43:45 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=57, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":87,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=57, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=18] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_learning_address_rate | 185.32 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address_rate">Starting testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2666' coro=<test_bridging_learning_address_rate() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:148> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=58] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=58] Local address: 172.17.0.4, port 52010 INFO asyncssh:logging.py:92 [conn=58] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=58] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=58] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:43:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=58, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2db8370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 2479 Rx 2479 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI streamB SIP-DIP N/A Tx 2479 Rx 2479 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:46:50 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=58, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=10] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:46:50 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=58, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":88,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=58, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=14] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_learning_illegal_address | 204.02 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_illegal_address">Starting testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2690' coro=<test_bridging_learning_illegal_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:253> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=59] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=59] Local address: 172.17.0.4, port 51398 INFO asyncssh:logging.py:92 [conn=59] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=59] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=59] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:46:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=59, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=59, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=59, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for all_zeros INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a27c4c10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI all_zeros SIP-DIP N/A Tx 350 Rx 350 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI broadcast SIP-DIP N/A Tx 350 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI multicast_1 SIP-DIP N/A Tx 350 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI multicast_2 SIP-DIP N/A Tx 350 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=59, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:29:5c:81","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:50:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=59, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:50:14 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=59, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":89,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=59, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=18] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_relearning_on_different_vlans | 408.60 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_relearning_on_different_vlans">Starting testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2718' coro=<test_bridging_relearning_on_different_vlans() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:385> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=60] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=60] Local address: 172.17.0.4, port 40736 INFO asyncssh:logging.py:92 [conn=60] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=60] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=60] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:50:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=60, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=60, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=6] Command: ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=10] Command: bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 && bridge vlan add dev swp2 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=12] Command: bridge vlan add dev swp2 vid 2 && bridge vlan add dev swp2 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 2 && bridge vlan add dev swp3 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=14] Command: bridge vlan add dev swp3 vid 2 && bridge vlan add dev swp3 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2d48580>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 247 Rx 247 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 247 Rx 247 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:76:e6:c9","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2d4b700>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 246 Rx 246 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 246 Rx 246 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=17] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=18] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:76:e6:c9","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a27c6b30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 247 Rx 247 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 247 Rx 247 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=20] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:76:e6:c9","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=60, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show dev swp1 INFO asyncssh:logging.py:92 [conn=60, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=22] Command: bridge -j fdb show dev swp1 INFO asyncssh:logging.py:92 [conn=60, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"00:11:01:00:00:01","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:57:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=60, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:57:03 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=60, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":90,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=60, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=30] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_packets.py::test_bridging_packets_oversize | 212.63 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_oversize">Starting testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2758' coro=<test_bridging_packets_oversize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=61] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=61] Local address: 172.17.0.4, port 44418 INFO asyncssh:logging.py:92 [conn=61] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=61] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=61] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 17:57:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=61, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=9] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=61, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=10] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=10] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 4739299078 bad_octets_received: 1855442 mac_trans_error: 0 broadcast_frames_received: 12972 multicast_frames_received: 23697 frames_64_octets: 890 frames_65_to_127_octets: 40891 frames_128_to_255_octets: 2031 frames_256_to_511_octets: 4438055 frames_512_to_1023_octets: 13909561 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 1339 broadcast_frames_sent: 745 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 1137 jabber: 0 rx_error_frame_received: 0 bad_crc: 244 collisions: 0 late_collision: 0 unicast_frames_received: 11432680 unicast_frames_sent: 6926629 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3567487023 INFO asyncssh:logging.py:92 [conn=61, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=11] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=61, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=12] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=12] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 3567345826 bad_octets_received: 1730514 mac_trans_error: 0 broadcast_frames_received: 575 multicast_frames_received: 350 frames_64_octets: 899 frames_65_to_127_octets: 15745 frames_128_to_255_octets: 238 frames_256_to_511_octets: 3731394 frames_512_to_1023_octets: 13883106 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 13318 broadcast_frames_sent: 8038 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 1137 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 6926716 unicast_frames_sent: 10689263 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4542528864 INFO asyncssh:logging.py:92 [conn=61, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=61, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=14] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=14] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 24692770 bad_octets_received: 1730514 mac_trans_error: 0 broadcast_frames_received: 112 multicast_frames_received: 350 frames_64_octets: 590 frames_65_to_127_octets: 15531 frames_128_to_255_octets: 260 frames_256_to_511_octets: 911 frames_512_to_1023_octets: 186365 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 13055 broadcast_frames_sent: 4071 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 1137 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7744 unicast_frames_sent: 185203 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 117270392 INFO asyncssh:logging.py:92 [conn=61, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=61, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=16] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=16] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 24439330 bad_octets_received: 1730514 mac_trans_error: 0 broadcast_frames_received: 104 multicast_frames_received: 350 frames_64_octets: 589 frames_65_to_127_octets: 15537 frames_128_to_255_octets: 268 frames_256_to_511_octets: 894 frames_512_to_1023_octets: 185675 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 12701 broadcast_frames_sent: 4079 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 1137 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7250 unicast_frames_sent: 185357 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 117168020 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=61, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=18] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=18] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 4739299078 bad_octets_received: 21720586 mac_trans_error: 0 broadcast_frames_received: 12972 multicast_frames_received: 23697 frames_64_octets: 890 frames_65_to_127_octets: 40891 frames_128_to_255_octets: 2031 frames_256_to_511_octets: 4438055 frames_512_to_1023_octets: 13909561 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 1339 broadcast_frames_sent: 745 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 244 collisions: 0 late_collision: 0 unicast_frames_received: 11432680 unicast_frames_sent: 6926629 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3567487023 INFO asyncssh:logging.py:92 [conn=61, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=19] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=61, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=20] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=20] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 3567345826 bad_octets_received: 21595658 mac_trans_error: 0 broadcast_frames_received: 575 multicast_frames_received: 350 frames_64_octets: 899 frames_65_to_127_octets: 15745 frames_128_to_255_octets: 238 frames_256_to_511_octets: 3731394 frames_512_to_1023_octets: 13883106 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 13318 broadcast_frames_sent: 8038 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 6926716 unicast_frames_sent: 10689263 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4542528864 INFO asyncssh:logging.py:92 [conn=61, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=21] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=61, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=22] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=22] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 24692770 bad_octets_received: 21595658 mac_trans_error: 0 broadcast_frames_received: 112 multicast_frames_received: 350 frames_64_octets: 590 frames_65_to_127_octets: 15531 frames_128_to_255_octets: 261 frames_256_to_511_octets: 911 frames_512_to_1023_octets: 186365 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 13056 broadcast_frames_sent: 4071 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7744 unicast_frames_sent: 185203 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 117270634 INFO asyncssh:logging.py:92 [conn=61, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=23] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=61, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=24] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=24] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 24439330 bad_octets_received: 21595658 mac_trans_error: 0 broadcast_frames_received: 104 multicast_frames_received: 350 frames_64_octets: 589 frames_65_to_127_octets: 15537 frames_128_to_255_octets: 269 frames_256_to_511_octets: 894 frames_512_to_1023_octets: 185675 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 12702 broadcast_frames_sent: 4079 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7250 unicast_frames_sent: 185357 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 117168262 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a27c7460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 13052 Rx 0 Frames Delta 13052 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 13052 Rx 0 Frames Delta 13052 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 13052 Rx 0 Frames Delta 13052 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 13052 Rx 0 Frames Delta 13052 Loss 100.000 INFO asyncssh:logging.py:92 [conn=61, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=25] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:72:53:11","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:00:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:00:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=61, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":91,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=61, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=34] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_packets.py::test_bridging_packets_undersize | 215.49 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_undersize">Starting testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2802' coro=<test_bridging_packets_undersize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:161> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=62] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=62] Local address: 172.17.0.4, port 38396 INFO asyncssh:logging.py:92 [conn=62] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=62] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=62] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:00:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=62, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=8] Command: bridge link set dev swp1 learning on flood off && bridge link set dev swp2 learning on flood off && bridge link set dev swp3 learning on flood off && bridge link set dev swp4 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Enabling smaller frame size (4 Byte Signature) INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'switch_min_frame_size', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=9] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=62, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=10] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=10] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 4739299590 bad_octets_received: 21720586 mac_trans_error: 0 broadcast_frames_received: 12980 multicast_frames_received: 23697 frames_64_octets: 923 frames_65_to_127_octets: 40910 frames_128_to_255_octets: 2038 frames_256_to_511_octets: 4438055 frames_512_to_1023_octets: 13909561 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 1366 broadcast_frames_sent: 769 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 244 collisions: 0 late_collision: 0 unicast_frames_received: 11432680 unicast_frames_sent: 6926629 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3567492159 INFO asyncssh:logging.py:92 [conn=62, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=11] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=62, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=12] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=12] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 3567346338 bad_octets_received: 21595658 mac_trans_error: 0 broadcast_frames_received: 583 multicast_frames_received: 350 frames_64_octets: 932 frames_65_to_127_octets: 15760 frames_128_to_255_octets: 245 frames_256_to_511_octets: 3731394 frames_512_to_1023_octets: 13883106 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 13341 broadcast_frames_sent: 8062 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 6926716 unicast_frames_sent: 10689263 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4542533564 INFO asyncssh:logging.py:92 [conn=62, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=62, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=14] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=14] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 24693282 bad_octets_received: 21595658 mac_trans_error: 0 broadcast_frames_received: 120 multicast_frames_received: 350 frames_64_octets: 623 frames_65_to_127_octets: 15545 frames_128_to_255_octets: 267 frames_256_to_511_octets: 911 frames_512_to_1023_octets: 186365 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 13077 broadcast_frames_sent: 4095 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7744 unicast_frames_sent: 185203 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 117274998 INFO asyncssh:logging.py:92 [conn=62, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=62, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=16] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=16] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 24439842 bad_octets_received: 21595658 mac_trans_error: 0 broadcast_frames_received: 112 multicast_frames_received: 350 frames_64_octets: 622 frames_65_to_127_octets: 15550 frames_128_to_255_octets: 275 frames_256_to_511_octets: 894 frames_512_to_1023_octets: 185675 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 12722 broadcast_frames_sent: 4103 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7250 unicast_frames_sent: 185357 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 117172536 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=62, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=18] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=18] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 4739299590 bad_octets_received: 22477138 mac_trans_error: 0 broadcast_frames_received: 12980 multicast_frames_received: 23697 frames_64_octets: 923 frames_65_to_127_octets: 40910 frames_128_to_255_octets: 2038 frames_256_to_511_octets: 4438055 frames_512_to_1023_octets: 13909561 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 1366 broadcast_frames_sent: 769 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 244 collisions: 0 late_collision: 0 unicast_frames_received: 11432680 unicast_frames_sent: 6926629 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3567492159 INFO asyncssh:logging.py:92 [conn=62, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=19] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=62, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=20] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=20] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 3567346338 bad_octets_received: 22352210 mac_trans_error: 0 broadcast_frames_received: 583 multicast_frames_received: 350 frames_64_octets: 932 frames_65_to_127_octets: 15760 frames_128_to_255_octets: 245 frames_256_to_511_octets: 3731394 frames_512_to_1023_octets: 13883106 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 13341 broadcast_frames_sent: 8062 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 6926716 unicast_frames_sent: 10689263 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4542533564 INFO asyncssh:logging.py:92 [conn=62, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=21] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=62, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=22] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=22] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 24693282 bad_octets_received: 22352210 mac_trans_error: 0 broadcast_frames_received: 120 multicast_frames_received: 350 frames_64_octets: 623 frames_65_to_127_octets: 15545 frames_128_to_255_octets: 268 frames_256_to_511_octets: 911 frames_512_to_1023_octets: 186365 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 13078 broadcast_frames_sent: 4095 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7744 unicast_frames_sent: 185203 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 117275240 INFO asyncssh:logging.py:92 [conn=62, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=23] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=62, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=24] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=24] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 24439842 bad_octets_received: 22352210 mac_trans_error: 0 broadcast_frames_received: 112 multicast_frames_received: 350 frames_64_octets: 622 frames_65_to_127_octets: 15550 frames_128_to_255_octets: 276 frames_256_to_511_octets: 894 frames_512_to_1023_octets: 185675 frames_1024_to_max_octets: 6878 excessive_collision: 0 multicast_frames_sent: 12723 broadcast_frames_sent: 4103 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7250 unicast_frames_sent: 185357 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 117172778 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a26fb4c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 13044 Rx 0 Frames Delta 13044 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 13044 Rx 0 Frames Delta 13044 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 13044 Rx 0 Frames Delta 13044 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 13044 Rx 0 Frames Delta 13044 Loss 100.000 INFO asyncssh:logging.py:92 [conn=62, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=25] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp1","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp2","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp3","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp4","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:cc:58:dd","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:04:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:04:11 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=62, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":92,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=62, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=34] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_remove_restore_from_vlan.py::test_bridging_remove_restore_from_vlan | 178.37 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_remove_restore_from_vlan">Starting testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2846' coro=<test_bridging_remove_restore_from_vlan() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=63] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=63] Local address: 172.17.0.4, port 39702 INFO asyncssh:logging.py:92 [conn=63] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=63] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=63] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:04:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=63, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=8] Command: bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp2 vid 2 && bridge vlan add dev swp3 vid 2 && bridge vlan add dev swp4 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=10] Command: bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp2 vid 2 && bridge vlan add dev swp3 vid 2 && bridge vlan add dev swp4 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=12] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp1 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=14] Command: bridge vlan delete dev swp1 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:04","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp1","vlan":2,"flags":["offload"],"master":"br0","state":"static"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:07","ifname":"swp1","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:07","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:08","ifname":"swp2","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:08","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:09","ifname":"swp3","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:09","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"34:ef:b6:ec:38:0a","ifname":"swp4","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ec:38:0a","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:d0:cd:fc","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=63, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=17] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=18] Command: bridge vlan add dev swp1 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2e86890>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 253 Rx 253 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:07:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=63, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:07:09 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=63, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":93,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=63, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=26] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_robustness_macs.py::test_bridging_robustness_macs | 820.20 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_robustness_macs">Starting testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2882' coro=<test_bridging_robustness_macs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py:43> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=64] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=64] Local address: 172.17.0.4, port 39200 INFO asyncssh:logging.py:92 [conn=64] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=64] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=64] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:07:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=64, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a27c68c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 65562 Rx 65562 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=8] Channel closed DEBUG agg1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2e84e80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 67684 Rx 67684 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 67684 Rx 67684 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=10] Channel closed DEBUG agg1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a28990f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 67035 Rx 67035 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 67035 Rx 67035 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 67035 Rx 67035 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=12] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=12] Channel closed DEBUG agg1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a289a740>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 67550 Rx 67550 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 67550 Rx 67550 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 67550 Rx 67550 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 67550 Rx 67550 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=14] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=14] Channel closed DEBUG agg1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a27c5510>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 67358 Rx 67358 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 67358 Rx 67358 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 67358 Rx 67358 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 67358 Rx 67358 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 67358 Rx 67358 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=16] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=16] Channel closed DEBUG agg1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a289b400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 67743 Rx 67743 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 67743 Rx 67743 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 67743 Rx 67743 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 67743 Rx 67743 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 67743 Rx 67743 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 67743 Rx 67743 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=17] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=18] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=18] Channel closed DEBUG agg1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a270af80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 70795 Rx 70795 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 70795 Rx 70795 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 70795 Rx 70795 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 70795 Rx 70795 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 70795 Rx 70795 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 70795 Rx 70795 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #6 Tx 70795 Rx 70795 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=20] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=20] Channel closed DEBUG agg1:Logger.py:156 16004 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:20:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=64, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:20:49 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=64, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":94,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=64, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=28] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_static_entries.py::test_bridging_static_entries | 201.41 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_static_entries">Starting testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2920' coro=<test_bridging_static_entries() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=65] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=65] Local address: 172.17.0.4, port 40424 INFO asyncssh:logging.py:92 [conn=65] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=65] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=65] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:20:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=65, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=8] Command: bridge link set dev swp1 learning off flood off && bridge link set dev swp2 learning off flood off && bridge link set dev swp3 learning off flood off && bridge link set dev swp4 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp2 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp3 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp4 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp1 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp2 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp3 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp4 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2dbbf40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI bridge_1 SIP-DIP N/A Tx 344 Rx 344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI bridge_2 SIP-DIP N/A Tx 344 Rx 344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI bridge_3 SIP-DIP N/A Tx 344 Rx 344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI bridge_4 SIP-DIP N/A Tx 344 Rx 344 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:24:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=65, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:24:11 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=65, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":95,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=65, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=18] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_unreg_traffic_ipv6.py::test_bridging_unreg_traffic_ipv6 | 199.12 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unreg_traffic_ipv6">Starting testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2948' coro=<test_bridging_unreg_traffic_ipv6() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=66] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=66] Local address: 172.17.0.4, port 38724 INFO asyncssh:logging.py:92 [conn=66] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=66] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=66] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:24:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=66, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2708610>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 134527 Rx 134527 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI streamB SIP-DIP N/A Tx 134527 Rx 134527 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI streamC SIP-DIP N/A Tx 134527 Rx 134527 Loss 0.000 INFO asyncssh:logging.py:92 [conn=66, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 flood off && bridge link set dev swp2 flood off && bridge link set dev swp3 flood off && bridge link set dev swp4 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=8] Command: bridge link set dev swp1 flood off && bridge link set dev swp2 flood off && bridge link set dev swp3 flood off && bridge link set dev swp4 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2db9480>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 241891 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI streamB SIP-DIP N/A Tx 241891 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI streamC SIP-DIP N/A Tx 241891 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=66, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 flood on && bridge link set dev swp2 flood on && bridge link set dev swp3 flood on && bridge link set dev swp4 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=10] Command: bridge link set dev swp1 flood on && bridge link set dev swp2 flood on && bridge link set dev swp3 flood on && bridge link set dev swp4 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2d485b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 242459 Rx 242459 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI streamB SIP-DIP N/A Tx 242459 Rx 242459 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI streamC SIP-DIP N/A Tx 242459 Rx 242459 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:27:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=66, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:27:29 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=66, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":96,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=66, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=18] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_acl_with_dyn_traps | 214.19 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2974' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_acl_with_dyn_traps">Starting testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=67] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=67] Local address: 172.17.0.4, port 57354 INFO asyncssh:logging.py:92 [conn=67] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=67] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=67] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:27:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=67, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=67, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=67, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=67, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:27:30 UTC 2023 INFO DENT:Logger.py:84 [DENT aggregation 1] policer rate: 797Kbps, traffic frame size: 485, expected trap rate: 1643.0pps INFO asyncssh:logging.py:92 [conn=67, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=10] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=12] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=67, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=14] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=67, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 7500 flower skip_sw src_mac 02:1b:90:53:6d:9d dst_mac 02:a4:50:bd:bc:41 src_ip 28.113.237.25 dst_ip 120.1.20.89 ip_proto udp src_port 19053 dst_port 12207 action trap action police rate 797096bps burst 798096 && tc filter add dev swp1 ingress protocol ip pref 15000 flower skip_sw src_mac 02:1b:90:53:6d:9d dst_mac 02:a4:50:bd:bc:41 src_ip 28.113.237.25 dst_ip 120.1.20.89 ip_proto udp src_port 19053 dst_port 12207 action drop INFO asyncssh:logging.py:92 [conn=67, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=16] Command: tc filter add dev swp1 ingress protocol ip pref 7500 flower skip_sw src_mac 02:1b:90:53:6d:9d dst_mac 02:a4:50:bd:bc:41 src_ip 28.113.237.25 dst_ip 120.1.20.89 ip_proto udp src_port 19053 dst_port 12207 action trap action police rate 797096bps burst 798096 && tc filter add dev swp1 ingress protocol ip pref 15000 flower skip_sw src_mac 02:1b:90:53:6d:9d dst_mac 02:a4:50:bd:bc:41 src_ip 28.113.237.25 dst_ip 120.1.20.89 ip_proto udp src_port 19053 dst_port 12207 action drop INFO asyncssh:logging.py:92 [conn=67, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=67, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress pref 7500 INFO asyncssh:logging.py:92 [conn=67, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=18] Command: tc -j filter show dev swp1 ingress pref 7500 INFO asyncssh:logging.py:92 [conn=67, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:a4:50:bd:bc:41","src_mac":"02:1b:90:53:6d:9d","eth_type":"ipv4","ip_proto":"udp","dst_ip":"120.1.20.89","src_ip":"28.113.237.25","dst_port":12207,"src_port":19053},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:a4:50:bd:bc:41_src_mac_02:1b:90:53:6d:9d_eth_type_ipv4_ip_proto_udp_dst_ip_120.1.20.89_src_ip_28.113.237.25_dst_port_12207_src_port_19053 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=20] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=20] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=21] Channel closed DEBUG agg1:Logger.py:156 1633 INFO asyncssh:logging.py:92 [conn=67, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=22] Channel closed DEBUG agg1:Logger.py:156 1637 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a27096c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp1_dst_mac_02:a4:50:bd:bc:41_src_mac_02:1b:90:53:6d:9d_eth_type_ipv4_ip_proto_udp_dst_ip_120.1.20.89_src_ip_28.113.237.25_dst_port_12207_src_port_19053 Tx 49453325 Rx 32474 Frames Delta 49420851 Loss 99.934 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 7500 INFO asyncssh:logging.py:92 [conn=67, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=24] Command: tc filter delete dev swp1 ingress pref 7500 INFO asyncssh:logging.py:92 [conn=67, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 7500 flower skip_sw src_mac 02:1b:90:53:6d:9d dst_mac 02:a4:50:bd:bc:41 src_ip 28.113.237.25 dst_ip 120.1.20.89 ip_proto udp src_port 19053 dst_port 12207 action trap action police rate 797096bps burst 798096 INFO asyncssh:logging.py:92 [conn=67, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=26] Command: tc filter add dev swp1 ingress protocol ip pref 7500 flower skip_sw src_mac 02:1b:90:53:6d:9d dst_mac 02:a4:50:bd:bc:41 src_ip 28.113.237.25 dst_ip 120.1.20.89 ip_proto udp src_port 19053 dst_port 12207 action trap action police rate 797096bps burst 798096 INFO asyncssh:logging.py:92 [conn=67, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=28] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=28] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=29] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=30] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=29] Channel closed DEBUG agg1:Logger.py:156 1633 INFO asyncssh:logging.py:92 [conn=67, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=30] Channel closed DEBUG agg1:Logger.py:156 1637 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a26fba30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp1_dst_mac_02:a4:50:bd:bc:41_src_mac_02:1b:90:53:6d:9d_eth_type_ipv4_ip_proto_udp_dst_ip_120.1.20.89_src_ip_28.113.237.25_dst_port_12207_src_port_19053 Tx 64332701 Rx 42233 Frames Delta 64290468 Loss 99.934 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 7500 INFO asyncssh:logging.py:92 [conn=67, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=32] Command: tc filter delete dev swp1 ingress pref 7500 INFO asyncssh:logging.py:92 [conn=67, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 22500 flower skip_sw src_mac 02:1b:90:53:6d:9d dst_mac 02:a4:50:bd:bc:41 src_ip 28.113.237.25 dst_ip 120.1.20.89 ip_proto udp src_port 19053 dst_port 12207 action trap action police rate 797096bps burst 798096 INFO asyncssh:logging.py:92 [conn=67, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=34] Command: tc filter add dev swp1 ingress protocol ip pref 22500 flower skip_sw src_mac 02:1b:90:53:6d:9d dst_mac 02:a4:50:bd:bc:41 src_ip 28.113.237.25 dst_ip 120.1.20.89 ip_proto udp src_port 19053 dst_port 12207 action trap action police rate 797096bps burst 798096 INFO asyncssh:logging.py:92 [conn=67, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=36] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=36] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=37] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=38] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=37] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=67, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=38] Channel closed DEBUG agg1:Logger.py:156 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a276ef20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp1_dst_mac_02:a4:50:bd:bc:41_src_mac_02:1b:90:53:6d:9d_eth_type_ipv4_ip_proto_udp_dst_ip_120.1.20.89_src_ip_28.113.237.25_dst_port_12207_src_port_19053 Tx 59381834 Rx 0 Frames Delta 59381834 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=39] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=40] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:30:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=41] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=42] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:31:03 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=67, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=44] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":97,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=67, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=46] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=47] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=48] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:31:04 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=67, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=67, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=50] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=67, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=50] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=67, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=67, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=52] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=67, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=67, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=54] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=67, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=64] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=66] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=68] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=70] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=67, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=72] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=67, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=67, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=74] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=67, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=74] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=67, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=76] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=67, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=67, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=78] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=67, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=67, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=80] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=67, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=81] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=82] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=82] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_dyn_traps_lag | 261.59 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3078' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_dyn_traps_lag">Starting testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=68] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=68] Local address: 172.17.0.4, port 48712 INFO asyncssh:logging.py:92 [conn=68] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=68] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=68] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:31:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=68, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=68, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:31:05 UTC 2023 INFO DENT:Logger.py:84 [DENT aggregation 1] policer rate: 1771Kbps, traffic frame size: 1471, expected trap rate: 4000pps INFO asyncssh:logging.py:92 [conn=68, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=68, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=10] Command: ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=68, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 master lag && ip link set dev swp2 master lag && ip link set dev swp3 master lag && ip link set dev swp4 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=68, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=12] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp1 master lag && ip link set dev swp2 master lag && ip link set dev swp3 master lag && ip link set dev swp4 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=68, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress && tc qdisc add dev swp2 ingress && tc qdisc add dev swp3 ingress && tc qdisc add dev swp4 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=14] Command: tc qdisc add dev swp1 ingress && tc qdisc add dev swp2 ingress && tc qdisc add dev swp3 ingress && tc qdisc add dev swp4 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:c3:61:a1:56:9e dst_mac 02:f1:50:26:ed:c8 src_ip 31.17.197.119 dst_ip 47.133.59.13 ip_proto tcp src_port 18384 dst_port 29472 action trap action police rate 1771378bps burst 1772378 && tc filter add dev swp2 ingress protocol ip flower skip_sw src_mac 02:c3:61:a1:56:9e dst_mac 02:f1:50:26:ed:c8 src_ip 31.17.197.119 dst_ip 47.133.59.13 ip_proto tcp src_port 18384 dst_port 29472 action trap action police rate 1771378bps burst 1772378 && tc filter add dev swp3 ingress protocol ip flower skip_sw src_mac 02:c3:61:a1:56:9e dst_mac 02:f1:50:26:ed:c8 src_ip 31.17.197.119 dst_ip 47.133.59.13 ip_proto tcp src_port 18384 dst_port 29472 action trap action police rate 1771378bps burst 1772378 && tc filter add dev swp4 ingress protocol ip flower skip_sw src_mac 02:c3:61:a1:56:9e dst_mac 02:f1:50:26:ed:c8 src_ip 31.17.197.119 dst_ip 47.133.59.13 ip_proto tcp src_port 18384 dst_port 29472 action trap action police rate 1771378bps burst 1772378 INFO asyncssh:logging.py:92 [conn=68, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=16] Command: tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:c3:61:a1:56:9e dst_mac 02:f1:50:26:ed:c8 src_ip 31.17.197.119 dst_ip 47.133.59.13 ip_proto tcp src_port 18384 dst_port 29472 action trap action police rate 1771378bps burst 1772378 && tc filter add dev swp2 ingress protocol ip flower skip_sw src_mac 02:c3:61:a1:56:9e dst_mac 02:f1:50:26:ed:c8 src_ip 31.17.197.119 dst_ip 47.133.59.13 ip_proto tcp src_port 18384 dst_port 29472 action trap action police rate 1771378bps burst 1772378 && tc filter add dev swp3 ingress protocol ip flower skip_sw src_mac 02:c3:61:a1:56:9e dst_mac 02:f1:50:26:ed:c8 src_ip 31.17.197.119 dst_ip 47.133.59.13 ip_proto tcp src_port 18384 dst_port 29472 action trap action police rate 1771378bps burst 1772378 && tc filter add dev swp4 ingress protocol ip flower skip_sw src_mac 02:c3:61:a1:56:9e dst_mac 02:f1:50:26:ed:c8 src_ip 31.17.197.119 dst_ip 47.133.59.13 ip_proto tcp src_port 18384 dst_port 29472 action trap action police rate 1771378bps burst 1772378 INFO asyncssh:logging.py:92 [conn=68, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=68, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=68, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=18] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=68, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:f1:50:26:ed:c8","src_mac":"02:c3:61:a1:56:9e","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"47.133.59.13","src_ip":"31.17.197.119","dst_port":29472,"src_port":18384},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f1:50:26:ed:c8_src_mac_02:c3:61:a1:56:9e_eth_type_ipv4_ip_proto_tcp_dst_ip_47.133.59.13_src_ip_31.17.197.119_dst_port_29472_src_port_18384 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2_dst_mac_02:f1:50:26:ed:c8_src_mac_02:c3:61:a1:56:9e_eth_type_ipv4_ip_proto_tcp_dst_ip_47.133.59.13_src_ip_31.17.197.119_dst_port_29472_src_port_18384 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp3_dst_mac_02:f1:50:26:ed:c8_src_mac_02:c3:61:a1:56:9e_eth_type_ipv4_ip_proto_tcp_dst_ip_47.133.59.13_src_ip_31.17.197.119_dst_port_29472_src_port_18384 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp4_dst_mac_02:f1:50:26:ed:c8_src_mac_02:c3:61:a1:56:9e_eth_type_ipv4_ip_proto_tcp_dst_ip_47.133.59.13_src_ip_31.17.197.119_dst_port_29472_src_port_18384 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=68, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=20] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=21] Channel closed DEBUG agg1:Logger.py:156 4022 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=22] Channel closed DEBUG agg1:Logger.py:156 4030 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:35:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:35:24 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=68, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=28] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=68, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:35:24 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=68, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp3","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp4","parent":"ffff:fff1","options":{}},{"kind":"noqueue","handle":"0:","dev":"lag","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=68, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=54] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=68, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=56] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=68, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=68, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=58] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=68, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=68, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=60] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=68, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=68, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=68, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=68, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=64] Command: tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=68, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=68, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=66] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=68, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=68, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=68] Command: tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=68, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=68, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=70] Command: tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=68, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=71] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=72] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=73] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=74] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:35:25 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=68, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=68, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=76] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=68, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=76] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:24:75:28:9d:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:08","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:09","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":4,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":98,"ifname":"lag","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=68, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=77] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=78] Command: ip link delete bond0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=78] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=79] Channel closed DEBUG agg1:Logger.py:156 ip link delete lag INFO asyncssh:logging.py:92 [conn=68, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=80] Command: ip link delete lag INFO asyncssh:logging.py:92 [conn=68, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=80] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_static_traps_disabled | 161.50 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3177' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_static_traps_disabled">Starting testcase:test_devlink_interact_static_traps_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=69] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=69] Local address: 172.17.0.4, port 51800 INFO asyncssh:logging.py:92 [conn=69] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=69] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=69] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:35:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=69, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=1] Channel closed DEBUG agg1:Logger.py:156 cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=69, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=2] Command: cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=69, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=2] Channel closed DEBUG agg1:Logger.py:156 all_unspecified_cpu_opcodes: 100 (pps) sct_acl_trap_queue_0: 4000 (pps) sct_acl_trap_queue_1: 4000 (pps) sct_acl_trap_queue_2: 4000 (pps) sct_acl_trap_queue_3: 4000 (pps) sct_acl_trap_queue_4: 4000 (pps) sct_acl_trap_queue_5: 4000 (pps) sct_acl_trap_queue_6: 4000 (pps) sct_acl_trap_queue_7: 4000 (pps) sct_arp_intervention: 100 (pps) sct_arp_to_me: 300 (pps) sct_bgp: 1000 (pps) sct_bgp_all_routers_mc: 100 (pps) sct_cdp: 200 (pps) sct_default_route: 400 (pps) sct_dhcp: 100 (pps) sct_icmp: 100 (pps) sct_igmp: 400 (pps) sct_ip_bc: 100 (pps) sct_ip_to_me: 10000 (pps) sct_isis: 1000 (pps) sct_lacp: 200 (pps) sct_lldp: 200 (pps) sct_nat: 10000 (pps) sct_ospf: 1000 (pps) sct_special_ip4_icmp_redirect: 100 (pps) sct_special_ip4_mtu_exceed: 100 (pps) sct_special_ip4_options_in_ip_hdr: 100 (pps) sct_special_ip4_zero_ttl: 100 (pps) sct_ssh: 1000 (pps) sct_stp: 200 (pps) sct_telnet: 200 (pps) sct_vrrp: 200 (pps) INFO asyncssh:logging.py:92 [conn=69, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=3] Channel closed DEBUG agg1:Logger.py:156 for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=69, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=4] Command: for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=69, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:35:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=69, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=7] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=8] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=69, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=9] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=10] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=11] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=12] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=12] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:35:27 UTC 2023 INFO DENT:Logger.py:84 [DENT aggregation 1] policer rate: 7836Kbps, traffic frame size: 847, expected trap rate: 9252pps INFO asyncssh:logging.py:92 [conn=69, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=69, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=16] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=69, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=18] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:20:2b:6c:1e:82 dst_mac 02:1d:66:b7:65:d5 src_ip 93.28.29.184 dst_ip 70.63.133.74 ip_proto tcp src_port 24656 dst_port 38519 action trap action police rate 7836444bps burst 7837444 INFO asyncssh:logging.py:92 [conn=69, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=20] Command: tc filter add dev swp1 ingress protocol ip flower skip_sw src_mac 02:20:2b:6c:1e:82 dst_mac 02:1d:66:b7:65:d5 src_ip 93.28.29.184 dst_ip 70.63.133.74 ip_proto tcp src_port 24656 dst_port 38519 action trap action police rate 7836444bps burst 7837444 INFO asyncssh:logging.py:92 [conn=69, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=69, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=22] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:1d:66:b7:65:d5","src_mac":"02:20:2b:6c:1e:82","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"70.63.133.74","src_ip":"93.28.29.184","dst_port":38519,"src_port":24656},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:1d:66:b7:65:d5_src_mac_02:20:2b:6c:1e:82_eth_type_ipv4_ip_proto_tcp_dst_ip_70.63.133.74_src_ip_93.28.29.184_dst_port_38519_src_port_24656 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=69, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=24] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=24] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=25] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=26] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=25] Channel closed DEBUG agg1:Logger.py:156 9204 INFO asyncssh:logging.py:92 [conn=69, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=26] Channel closed DEBUG agg1:Logger.py:156 9234 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_static_traps_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:38:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:38:07 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=69, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=32] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=69, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=34] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:38:07 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=69, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=36] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=69, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=38] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=40] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=58] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=60] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=62] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=69, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=64] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=69, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=66] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=67] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=68] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=69] Channel closed DEBUG agg1:Logger.py:156 echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=69, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=70] Command: echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=69, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=70] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_sct_lag | 320.06 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3268' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_sct_lag">Starting testcase:test_devlink_interact_sct_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=70] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=70] Local address: 172.17.0.4, port 34506 INFO asyncssh:logging.py:92 [conn=70] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=70] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=70] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:38:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=70, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=70, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=70, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=70, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:38:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=70, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=70, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=10] Command: ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=70, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=70, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=12] Command: ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=70, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=70, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=14] Command: ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=70, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=70, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=16] Command: ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=70, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=18] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=70, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=20] Command: bridge -j vlan show dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev bond1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=70, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show bond1 INFO asyncssh:logging.py:92 [conn=70, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=22] Command: ip -j address show bond1 INFO asyncssh:logging.py:92 [conn=70, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":99,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"bond1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show bond1 ', 'rc': 0, 'result': '[{"ifindex":99,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"bond1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custom_stream_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=70, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=26] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=70, chan=30] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=70, chan=31] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=70, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=28] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=70, chan=33] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=70, chan=34] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=70, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=29] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=70, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=30] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=70, chan=31] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=70, chan=32] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=70, chan=33] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=70, chan=34] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=70, chan=35] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=70, chan=36] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=70, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=30] Channel closed DEBUG agg1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 203 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=70, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=35] Channel closed DEBUG agg1:Logger.py:156 303 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 303 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=70, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=31] Channel closed DEBUG agg1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 203 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=70, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=33] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=70, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=34] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=70, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=32] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=36] Received channel close DEBUG agg1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 201 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=70, chan=36] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=70, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=39] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=70, chan=45] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=70, chan=46] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=70, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=41] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=44] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=70, chan=48] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=70, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=45] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=70, chan=46] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=70, chan=47] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=70, chan=42] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=44] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=70, chan=50] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=70, chan=51] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=70, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=48] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=70, chan=49] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=70, chan=50] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=70, chan=51] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=70, chan=52] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=70, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=46] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=70, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=47] Channel closed DEBUG agg1:Logger.py:156 10059 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10059 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=70, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=45] Channel closed DEBUG agg1:Logger.py:156 1003 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1003 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=70, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=48] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=70, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=50] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=70, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=51] Received channel close DEBUG agg1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 201 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=70, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=49] Received channel close DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=70, chan=49] Channel closed DEBUG agg1:Logger.py:156 1004 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1004 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=70, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=58] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=70, chan=60] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=70, chan=61] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=70, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=59] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=63] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=70, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=60] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=70, chan=61] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=70, chan=62] Command: get_devlink_cpu_traps_rate_avg dhcp DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=70, chan=65] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=70, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=63] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=64] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=70, chan=65] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=70, chan=66] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=70, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=61] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=60] Received channel close DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=70, chan=60] Channel closed DEBUG agg1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 204 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=70, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=62] Channel closed DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=70, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=64] Received channel close DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=70, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=64] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=63] Received channel close DEBUG agg1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 204 expected 200 for trap_code lldp DEBUG agg1:Logger.py:156 306 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 306 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=70, chan=63] Channel closed DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=69] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=70, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=69] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=70, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=75] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=70, chan=76] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=70, chan=67] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=70, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=70] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=72] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=73] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=74] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=70, chan=78] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=79] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=80] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=70, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=77] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=70, chan=74] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=70, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=78] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=70, chan=79] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=80] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=81] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=70, chan=82] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=70, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=75] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=70, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=76] Channel closed DEBUG agg1:Logger.py:156 1009 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1009 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=70, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=77] Channel closed DEBUG agg1:Logger.py:156 1005 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1005 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=70, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=82] Received channel close DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=82] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=70, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=81] Channel closed DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=70, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=80] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=78] Channel closed DEBUG agg1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 103 expected 100 for trap_code ip_bc_mac DEBUG agg1:Logger.py:156 10148 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10148 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=70, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=70, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=84] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=70, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=84] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x9300 flower skip_sw dst_mac 02:d2:20:eb:59:93 action trap INFO asyncssh:logging.py:92 [conn=70, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=86] Command: tc filter add dev swp1 ingress protocol 0x9300 flower skip_sw dst_mac 02:d2:20:eb:59:93 action trap INFO asyncssh:logging.py:92 [conn=70, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=86] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=87] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=88] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=70, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=88] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=70, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=89] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=70, chan=90] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=70, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=89] Channel closed DEBUG agg1:Logger.py:156 4025 INFO asyncssh:logging.py:92 [conn=70, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=90] Channel closed DEBUG agg1:Logger.py:156 4037 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_sct_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=91] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=92] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:43:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=70, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=93] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=94] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=94] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:43:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=70, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=95] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=70, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=96] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=70, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=96] Channel closed DEBUG agg1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=70, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=97] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=98] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:43:26 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=70, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=70, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=100] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=70, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=100] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bond1","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=70, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=70, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=102] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=70, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=70, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=104] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=70, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=70, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=122] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=70, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=70, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=124] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=70, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=124] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=70, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=126] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=70, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=70, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=128] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=70, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=70, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=130] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=70, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bond1 root INFO asyncssh:logging.py:92 [conn=70, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=132] Command: tc qdisc delete dev bond1 root INFO asyncssh:logging.py:92 [conn=70, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=133] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=134] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=134] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=135] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=136] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=136] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:43:27 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=70, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=137] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=70, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=138] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=70, chan=138] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=138] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":99,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=70, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=139] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=70, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=140] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=70, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=140] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=141] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=142] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=142] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:43:27 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=70, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=143] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=70, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=144] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=70, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=144] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=145] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=70, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=146] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=70, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=146] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=70, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=147] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=70, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=148] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=70, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=148] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[1] | 312.64 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3467' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[1]">Starting testcase:test_devlink_sct_basic_ports[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=71] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=71] Local address: 172.17.0.4, port 60832 INFO asyncssh:logging.py:92 [conn=71] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=71] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=71] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:43:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=71, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=71, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=71, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=71, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:43:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=71, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=71, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=71, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=71, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=71, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=71, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=71, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=14] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=71, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=14] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=71, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=71, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=16] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=71, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=71, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=17] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=71, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=18] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=24] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=71, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=22] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=71, chan=25] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=71, chan=26] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=71, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=23] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=71, chan=28] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=71, chan=29] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=71, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=25] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=71, chan=26] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=71, chan=27] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=71, chan=28] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=71, chan=29] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=71, chan=30] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=71, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=24] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=71, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=28] Channel closed DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=71, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=29] Channel closed DEBUG agg1:Logger.py:156 305 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 305 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=71, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=26] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=71, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=25] Received channel close DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=71, chan=30] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=25] Channel closed DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for stat_code 29 DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=71, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=32] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=36] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=71, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=36] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=71, chan=40] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=71, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=34] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=39] Command: get_cpu_traps_rate_code_avg 208 sw DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=71, chan=42] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=71, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=38] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=71, chan=44] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=71, chan=45] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=71, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=40] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=71, chan=41] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=71, chan=42] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=71, chan=43] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=71, chan=44] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=71, chan=45] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=71, chan=46] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=71, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=39] Channel closed DEBUG agg1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 201 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=71, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=40] Channel closed DEBUG agg1:Logger.py:156 1003 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1003 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=71, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=43] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=71, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=44] Channel closed DEBUG agg1:Logger.py:156 10075 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10075 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=71, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=42] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=71, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=41] Channel closed DEBUG agg1:Logger.py:156 1011 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1011 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=71, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=46] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=45] Received channel close DEBUG agg1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 201 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=71, chan=45] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=71, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=48] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=50] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=71, chan=54] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=71, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=50] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=71, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=54] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=71, chan=55] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=71, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=53] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=71, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=56] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=71, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=53] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=58] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=71, chan=59] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=71, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=57] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=71, chan=58] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=59] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=71, chan=60] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=71, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=55] Channel closed DEBUG agg1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 203 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=71, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=54] Channel closed DEBUG agg1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 204 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=71, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=56] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=71, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=58] Channel closed DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=60] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=71, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=59] Received channel close DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=71, chan=59] Channel closed DEBUG agg1:Logger.py:156 307 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 307 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=71, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=61] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=62] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=63] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=64] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=71, chan=69] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=71, chan=70] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=71, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=64] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=68] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=71, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=69] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=71, chan=70] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=71, chan=71] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=71, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=68] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=73] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=74] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=71, chan=75] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=71, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=72] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=71, chan=73] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=74] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=75] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=71, chan=76] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=71, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=69] Channel closed DEBUG agg1:Logger.py:156 1005 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1005 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=71, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=70] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=71, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=76] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=71, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=74] Channel closed DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=73] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=72] Channel closed DEBUG agg1:Logger.py:156 10138 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10138 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=71, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=71] Received channel close DEBUG agg1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 103 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=71, chan=71] Channel closed DEBUG agg1:Logger.py:156 1020 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1020 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=71, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=71, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=78] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=71, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=78] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw src_mac 02:20:ea:17:00:b9 dst_mac 02:b3:a7:d1:08:3c vlan_id 1102 action trap INFO asyncssh:logging.py:92 [conn=71, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=80] Command: tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw src_mac 02:20:ea:17:00:b9 dst_mac 02:b3:a7:d1:08:3c vlan_id 1102 action trap INFO asyncssh:logging.py:92 [conn=71, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=80] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=81] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=82] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=71, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=82] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=71, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=83] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=71, chan=84] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=71, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=83] Channel closed DEBUG agg1:Logger.py:156 4025 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 4025 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=71, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=84] Channel closed DEBUG agg1:Logger.py:156 4035 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 4035 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=85] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=86] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:48:38 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=71, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=87] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=71, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=88] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=71, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=88] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=89] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=71, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=90] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=71, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=90] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=71, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=91] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=71, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=92] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=71, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=92] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=93] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=94] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=94] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:48:40 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=71, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=71, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=96] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=71, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=96] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=71, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=71, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=98] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=71, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=71, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=100] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=71, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=102] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=104] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=71, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=118] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=71, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=71, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=120] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=71, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=120] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=71, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=122] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=71, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=71, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=124] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=71, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=71, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=126] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=71, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=127] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=128] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=128] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[2] | 375.45 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3640' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[2]">Starting testcase:test_devlink_sct_basic_ports[2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=72] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=72] Local address: 172.17.0.4, port 42196 INFO asyncssh:logging.py:92 [conn=72] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=72] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=72] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:48:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=72, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=72, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=72, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=72, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:48:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=72, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=72, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=72, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=72, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=72, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp2 INFO asyncssh:logging.py:92 [conn=72, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=14] Command: ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp2 INFO asyncssh:logging.py:92 [conn=72, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_192.168.2.5/24', 'count': 1, 'ip': '192.168.2.5', 'gw': '192.168.2.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=72, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=72, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=16] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=72, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=72, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=18] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=72, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=72, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=20] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=72, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=72, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=22] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=72, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_192.168.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=72, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=28] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=72, chan=30] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=72, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=28] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=72, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=26] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=30] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=72, chan=31] Command: get_cpu_traps_rate_code_avg 27 sw DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=72, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=29] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=72, chan=34] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=72, chan=35] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=72, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=32] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=72, chan=33] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=72, chan=34] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=72, chan=35] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=72, chan=36] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=72, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=30] Channel closed DEBUG agg1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 203 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=72, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=31] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=72, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=33] Channel closed DEBUG agg1:Logger.py:156 303 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 303 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=72, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=35] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=72, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=32] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=72, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=36] Channel closed DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=72, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=34] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=72, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=41] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=43] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=72, chan=45] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=72, chan=46] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=72, chan=47] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=72, chan=48] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=72, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=44] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=42] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=43] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=72, chan=50] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=72, chan=51] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=72, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=45] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=72, chan=46] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=72, chan=47] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=72, chan=48] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=72, chan=49] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=72, chan=50] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=72, chan=51] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=72, chan=52] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=72, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=45] Channel closed DEBUG agg1:Logger.py:156 1006 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1006 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=72, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=46] Channel closed DEBUG agg1:Logger.py:156 1000 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1000 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=72, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=48] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=72, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=49] Channel closed DEBUG agg1:Logger.py:156 10094 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10094 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=72, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=51] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=72, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=50] Received channel close DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=72, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=52] Received channel close DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=72, chan=52] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=72, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=53] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=72, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=60] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=72, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=59] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=72, chan=61] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=62] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=72, chan=63] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=72, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=59] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=72, chan=65] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=72, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=61] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=72, chan=62] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=63] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=72, chan=64] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=72, chan=65] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=72, chan=66] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=72, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=60] Channel closed DEBUG agg1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 201 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=72, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=62] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=61] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=72, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=65] Channel closed DEBUG agg1:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 206 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=72, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=63] Channel closed DEBUG agg1:Logger.py:156 309 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 309 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=72, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=64] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=66] Received channel close DEBUG agg1:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 206 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=72, chan=66] Channel closed DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=72, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=68] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=72, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=68] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=72, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=75] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=72, chan=76] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=72, chan=69] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=72, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=73] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=70] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=77] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=72, chan=72] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=74] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=73] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=72, chan=79] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=80] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=72, chan=81] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=72, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=78] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=79] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=72, chan=80] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=81] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=72, chan=82] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=72, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=75] Channel closed DEBUG agg1:Logger.py:156 1011 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1011 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=72, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=76] Channel closed DEBUG agg1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 203 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=72, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=77] Received channel close DEBUG agg1:Logger.py:156 10105 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10105 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=72, chan=77] Channel closed DEBUG agg1:Logger.py:156 1010 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1010 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=72, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=80] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=82] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=78] Received channel close DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=72, chan=81] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=78] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code vrrp DEBUG agg1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 103 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=72, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=84] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=72, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=84] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q flower skip_sw dst_mac 02:02:a1:12:10:93 vlan_id 2658 action trap INFO asyncssh:logging.py:92 [conn=72, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=86] Command: tc filter add dev swp1 ingress protocol 802.1q flower skip_sw dst_mac 02:02:a1:12:10:93 vlan_id 2658 action trap INFO asyncssh:logging.py:92 [conn=72, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=86] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress INFO asyncssh:logging.py:92 [conn=72, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=88] Command: tc qdisc add dev swp2 ingress INFO asyncssh:logging.py:92 [conn=72, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=88] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp2 ingress protocol 802.1q flower skip_sw src_mac 02:b1:d2:6f:e8:0d vlan_id 2763 action trap INFO asyncssh:logging.py:92 [conn=72, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=90] Command: tc filter add dev swp2 ingress protocol 802.1q flower skip_sw src_mac 02:b1:d2:6f:e8:0d vlan_id 2763 action trap INFO asyncssh:logging.py:92 [conn=72, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=90] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=91] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=92] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=72, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=92] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=72, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=93] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=72, chan=94] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=72, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=93] Channel closed DEBUG agg1:Logger.py:156 4020 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 4020 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=72, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=94] Channel closed DEBUG agg1:Logger.py:156 4033 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 4033 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=95] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=96] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=96] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:54:53 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=72, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=97] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=72, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=98] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=72, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=98] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=99] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=72, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=100] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=72, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=100] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=72, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=101] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=72, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=102] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=72, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=102] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=103] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=104] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=104] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:54:55 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=72, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=72, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=106] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=72, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=106] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=72, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=72, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=108] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=72, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=72, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=110] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=72, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=124] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=126] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=72, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=128] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=72, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=72, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=130] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=72, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=130] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=72, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=132] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=72, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=72, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=134] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=72, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=134] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=72, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=136] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=72, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=72, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=138] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=72, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=139] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=140] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=140] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[4] | 541.81 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3825' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[4]">Starting testcase:test_devlink_sct_basic_ports[4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=73] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=73] Local address: 172.17.0.4, port 37668 INFO asyncssh:logging.py:92 [conn=73] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=73] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=73] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:54:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=73, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=73, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=73, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=73, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 18:54:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=73, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=73, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=73, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=73, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=73, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp2 INFO asyncssh:logging.py:92 [conn=73, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=14] Command: ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp2 INFO asyncssh:logging.py:92 [conn=73, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.3.4/24 broadcast 192.168.3.255 dev swp3 INFO asyncssh:logging.py:92 [conn=73, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=16] Command: ip address add 192.168.3.4/24 broadcast 192.168.3.255 dev swp3 INFO asyncssh:logging.py:92 [conn=73, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.4.4/24 broadcast 192.168.4.255 dev swp4 INFO asyncssh:logging.py:92 [conn=73, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=18] Command: ip address add 192.168.4.4/24 broadcast 192.168.4.255 dev swp4 INFO asyncssh:logging.py:92 [conn=73, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_192.168.2.5/24', 'count': 1, 'ip': '192.168.2.5', 'gw': '192.168.2.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_192.168.3.5/24', 'count': 1, 'ip': '192.168.3.5', 'gw': '192.168.3.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_192.168.4.5/24', 'count': 1, 'ip': '192.168.4.5', 'gw': '192.168.4.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=73, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=73, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=20] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=73, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=73, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=22] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=73, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=73, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=24] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=73, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=73, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=26] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=73, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=27] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=73, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=28] Command: bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=73, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=28] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp3 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=73, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=30] Command: ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=73, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.3.4","prefixlen":24,"broadcast":"192.168.3.255","scope":"global","label":"swp3","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp3 ', 'rc': 0, 'result': '[{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.3.4","prefixlen":24,"broadcast":"192.168.3.255","scope":"global","label":"swp3","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=31] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp4 INFO asyncssh:logging.py:92 [conn=73, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=32] Command: bridge -j vlan show dev swp4 INFO asyncssh:logging.py:92 [conn=73, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=32] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp4 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp4 INFO asyncssh:logging.py:92 [conn=73, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=34] Command: ip -j address show swp4 INFO asyncssh:logging.py:92 [conn=73, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.4.4","prefixlen":24,"broadcast":"192.168.4.255","scope":"global","label":"swp4","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp4 ', 'rc': 0, 'result': '[{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.4.4","prefixlen":24,"broadcast":"192.168.4.255","scope":"global","label":"swp4","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_192.168.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_192.168.3.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_192.168.4.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=73, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=36] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=35] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=73, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=38] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=73, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=41] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=73, chan=44] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=73, chan=45] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=73, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=42] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=73, chan=43] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=73, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=41] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=73, chan=47] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=73, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=44] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=73, chan=45] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=73, chan=46] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=73, chan=47] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=73, chan=48] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=73, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=43] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=73, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=42] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=73, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=47] Channel closed DEBUG agg1:Logger.py:156 322 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 322 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=73, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=44] Channel closed DEBUG agg1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 204 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=73, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=48] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=46] Received channel close DEBUG agg1:Logger.py:156 120 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 120 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=73, chan=46] Channel closed DEBUG agg1:Logger.py:156 119 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 119 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=73, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=45] Channel closed DEBUG agg1:Logger.py:156 121 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 121 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=73, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=51] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=73, chan=57] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=55] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=73, chan=59] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=73, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=56] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=73, chan=61] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=73, chan=62] Requesting new SSH session DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=73, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=57] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=73, chan=59] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=73, chan=60] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=73, chan=56] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=73, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=61] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=73, chan=62] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=73, chan=63] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=73, chan=64] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=73, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=59] Channel closed DEBUG agg1:Logger.py:156 119 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 119 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=73, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=60] Channel closed DEBUG agg1:Logger.py:156 10082 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10082 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=73, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=61] Channel closed DEBUG agg1:Logger.py:156 119 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 119 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=73, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=63] Channel closed DEBUG agg1:Logger.py:156 1026 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1026 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=73, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=62] Received channel close DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=73, chan=64] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=62] Channel closed DEBUG agg1:Logger.py:156 205 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 205 expected 200 for stat_code 30 DEBUG agg1:Logger.py:156 1009 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1009 expected 1000 for stat_code 207 DEBUG agg1:Logger.py:156 120 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 120 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=73, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=68] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=73, chan=72] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=73, chan=73] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=73, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=70] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=71] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=73, chan=75] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=73, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=72] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=73, chan=73] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=73, chan=74] Command: get_devlink_cpu_traps_rate_avg lldp DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=73, chan=77] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=75] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=73, chan=76] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=73, chan=77] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=73, chan=78] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=74] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=73, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=72] Channel closed DEBUG agg1:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 206 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=73, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=73] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=73, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=78] Channel closed DEBUG agg1:Logger.py:156 119 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 119 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=77] Channel closed DEBUG agg1:Logger.py:156 121 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 121 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=73, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=76] Received channel close DEBUG agg1:Logger.py:156 318 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 318 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=73, chan=76] Channel closed DEBUG agg1:Logger.py:156 120 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 120 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=73, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=80] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=81] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=73, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=81] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=73, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=86] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=73, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=87] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=73, chan=88] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=73, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=82] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=83] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=84] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=86] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=85] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=89] Command: get_devlink_cpu_traps_rate_avg ssh DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=73, chan=90] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=91] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=92] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=73, chan=93] Requesting new SSH session DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=73, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=90] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=73, chan=91] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=92] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=93] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=73, chan=94] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=73, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=88] Channel closed DEBUG agg1:Logger.py:156 1011 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1011 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=73, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=87] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=73, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=91] Channel closed DEBUG agg1:Logger.py:156 122 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 122 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=89] Channel closed DEBUG agg1:Logger.py:156 1024 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1024 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=73, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=94] Channel closed DEBUG agg1:Logger.py:156 119 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 119 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=73, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=93] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=92] Received channel close DEBUG agg1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 203 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=73, chan=90] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=92] Channel closed DEBUG agg1:Logger.py:156 10206 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 10206 expected 10000 for trap_code local_route DEBUG agg1:Logger.py:156 122 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 122 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=73, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=96] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=73, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=96] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x9200 flower skip_sw dst_mac 02:9e:19:9a:ef:c6 action trap INFO asyncssh:logging.py:92 [conn=73, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=98] Command: tc filter add dev swp1 ingress protocol 0x9200 flower skip_sw dst_mac 02:9e:19:9a:ef:c6 action trap INFO asyncssh:logging.py:92 [conn=73, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=98] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress INFO asyncssh:logging.py:92 [conn=73, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=100] Command: tc qdisc add dev swp2 ingress INFO asyncssh:logging.py:92 [conn=73, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=100] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp2 ingress protocol 0x9100 flower skip_sw src_mac 02:fb:f9:eb:75:48 dst_mac 02:85:49:80:5c:c2 action trap INFO asyncssh:logging.py:92 [conn=73, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=102] Command: tc filter add dev swp2 ingress protocol 0x9100 flower skip_sw src_mac 02:fb:f9:eb:75:48 dst_mac 02:85:49:80:5c:c2 action trap INFO asyncssh:logging.py:92 [conn=73, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=102] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp3 ingress INFO asyncssh:logging.py:92 [conn=73, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=104] Command: tc qdisc add dev swp3 ingress INFO asyncssh:logging.py:92 [conn=73, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=104] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp3 ingress protocol 0x9200 flower skip_sw dst_mac 02:3d:c9:23:65:5e action trap INFO asyncssh:logging.py:92 [conn=73, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=106] Command: tc filter add dev swp3 ingress protocol 0x9200 flower skip_sw dst_mac 02:3d:c9:23:65:5e action trap INFO asyncssh:logging.py:92 [conn=73, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=106] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp4 ingress INFO asyncssh:logging.py:92 [conn=73, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=108] Command: tc qdisc add dev swp4 ingress INFO asyncssh:logging.py:92 [conn=73, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=108] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp4 ingress protocol 0x9300 flower skip_sw src_mac 02:72:95:96:d5:ad action trap INFO asyncssh:logging.py:92 [conn=73, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=110] Command: tc filter add dev swp4 ingress protocol 0x9300 flower skip_sw src_mac 02:72:95:96:d5:ad action trap INFO asyncssh:logging.py:92 [conn=73, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=110] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=112] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=111] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=112] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=73, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=112] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=73, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=113] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=73, chan=114] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=73, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=113] Channel closed DEBUG agg1:Logger.py:156 4020 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 4020 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=73, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=114] Channel closed DEBUG agg1:Logger.py:156 4023 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 4023 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=115] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=116] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=116] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:03:55 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=73, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=117] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=73, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=118] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=73, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=118] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=119] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=73, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=120] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=73, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=120] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=73, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=121] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=73, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=122] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=73, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=122] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=123] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=124] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=124] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:03:57 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=73, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=73, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=126] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=73, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=126] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp3","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp4","parent":"ffff:fff1","options":{}}] INFO asyncssh:logging.py:92 [conn=73, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=73, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=128] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=73, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=73, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=130] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=73, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=132] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=134] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=136] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=138] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=140] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=142] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=144] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=146] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=73, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=148] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=73, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=73, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=150] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=73, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=150] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=73, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=152] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=73, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=73, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=154] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=73, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=154] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=73, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=156] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=73, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=73, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=158] Command: tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=73, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=158] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=73, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=160] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=73, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=73, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=162] Command: tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=73, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=162] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=163] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=164] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=164] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_static_trap_disable | 1370.51 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4034' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_static_trap_disable">Starting testcase:test_devlink_static_trap_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=74] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=74] Local address: 172.17.0.4, port 37422 INFO asyncssh:logging.py:92 [conn=74] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=74] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=74] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:03:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=74, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=1] Channel closed DEBUG agg1:Logger.py:156 cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=74, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=2] Command: cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=74, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=2] Channel closed DEBUG agg1:Logger.py:156 all_unspecified_cpu_opcodes: 100 (pps) sct_acl_trap_queue_0: 4000 (pps) sct_acl_trap_queue_1: 4000 (pps) sct_acl_trap_queue_2: 4000 (pps) sct_acl_trap_queue_3: 4000 (pps) sct_acl_trap_queue_4: 4000 (pps) sct_acl_trap_queue_5: 4000 (pps) sct_acl_trap_queue_6: 4000 (pps) sct_acl_trap_queue_7: 4000 (pps) sct_arp_intervention: 100 (pps) sct_arp_to_me: 300 (pps) sct_bgp: 1000 (pps) sct_bgp_all_routers_mc: 100 (pps) sct_cdp: 200 (pps) sct_default_route: 400 (pps) sct_dhcp: 100 (pps) sct_icmp: 100 (pps) sct_igmp: 400 (pps) sct_ip_bc: 100 (pps) sct_ip_to_me: 10000 (pps) sct_isis: 1000 (pps) sct_lacp: 200 (pps) sct_lldp: 200 (pps) sct_nat: 10000 (pps) sct_ospf: 1000 (pps) sct_special_ip4_icmp_redirect: 100 (pps) sct_special_ip4_mtu_exceed: 100 (pps) sct_special_ip4_options_in_ip_hdr: 100 (pps) sct_special_ip4_zero_ttl: 100 (pps) sct_ssh: 1000 (pps) sct_stp: 200 (pps) sct_telnet: 200 (pps) sct_vrrp: 200 (pps) INFO asyncssh:logging.py:92 [conn=74, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=3] Channel closed DEBUG agg1:Logger.py:156 for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=74, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=4] Command: for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=74, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:03:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=74, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=7] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=8] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=74, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=9] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=74, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=10] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=74, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=11] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=12] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=12] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:03:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=74, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=74, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=16] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=74, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=74, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=18] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp1 INFO asyncssh:logging.py:92 [conn=74, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=74, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=74, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=20] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=74, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=74, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=74, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=22] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=74, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=24] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=74, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=24] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=74, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=25] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=74, chan=26] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=74, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=25] Channel closed DEBUG agg1:Logger.py:156 65872 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65872 expected 65000 for stat_code 26 INFO asyncssh:logging.py:92 [conn=74, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=26] Channel closed DEBUG agg1:Logger.py:156 66050 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66050 expected 65000 for trap_code stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=28] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=74, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=28] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=74, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=29] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=74, chan=30] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=74, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=29] Channel closed DEBUG agg1:Logger.py:156 65867 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65867 expected 65000 for stat_code 27 INFO asyncssh:logging.py:92 [conn=74, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=30] Channel closed DEBUG agg1:Logger.py:156 66030 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66030 expected 65000 for trap_code lacp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: lacp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=32] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=31] Received channel close DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=74, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=31] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=74, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=33] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=74, chan=34] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=74, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=34] Channel closed DEBUG agg1:Logger.py:156 66268 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66268 expected 65000 for stat_code 28 INFO asyncssh:logging.py:92 [conn=74, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=33] Channel closed DEBUG agg1:Logger.py:156 66653 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66653 expected 65000 for trap_code lldp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: lldp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=36] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=74, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=36] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=74, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=37] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=74, chan=38] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=74, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=37] Channel closed DEBUG agg1:Logger.py:156 65902 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65902 expected 65000 for stat_code 33 INFO asyncssh:logging.py:92 [conn=74, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=38] Channel closed DEBUG agg1:Logger.py:156 66040 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66040 expected 65000 for trap_code dhcp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: dhcp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=40] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=74, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=40] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=74, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=41] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=74, chan=42] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=74, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=41] Channel closed DEBUG agg1:Logger.py:156 65847 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65847 expected 65000 for stat_code 5 INFO asyncssh:logging.py:92 [conn=74, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=42] Channel closed DEBUG agg1:Logger.py:156 65977 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65977 expected 65000 for trap_code arp_bc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: arp_bc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=44] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=74, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=44] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=74, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=45] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=74, chan=46] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=74, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=45] Channel closed DEBUG agg1:Logger.py:156 65867 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65867 expected 65000 for stat_code 188 INFO asyncssh:logging.py:92 [conn=74, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=46] Channel closed DEBUG agg1:Logger.py:156 66014 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66014 expected 65000 for trap_code arp_response INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: arp_response_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=48] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=74, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=48] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=74, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=49] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=74, chan=50] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=74, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=49] Channel closed DEBUG agg1:Logger.py:156 65879 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65879 expected 65000 for stat_code 29 INFO asyncssh:logging.py:92 [conn=74, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=50] Channel closed DEBUG agg1:Logger.py:156 66024 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66024 expected 65000 for trap_code router_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: router_mc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=52] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=74, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=52] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=74, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=53] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=74, chan=54] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=74, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=53] Channel closed DEBUG agg1:Logger.py:156 65867 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65867 expected 65000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=74, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=54] Channel closed DEBUG agg1:Logger.py:156 66055 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66055 expected 65000 for trap_code ssh INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ssh_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=56] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=74, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=56] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=74, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=57] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=74, chan=58] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=74, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=57] Channel closed DEBUG agg1:Logger.py:156 65852 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65852 expected 65000 for stat_code 208 INFO asyncssh:logging.py:92 [conn=74, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=58] Channel closed DEBUG agg1:Logger.py:156 66023 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66023 expected 65000 for trap_code telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: telnet_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=60] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=74, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=60] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=74, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=61] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=74, chan=62] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=74, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=61] Channel closed DEBUG agg1:Logger.py:156 65841 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65841 expected 65000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=74, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=62] Channel closed DEBUG agg1:Logger.py:156 66037 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66037 expected 65000 for trap_code bgp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bgp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=63] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=64] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=74, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=64] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=74, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=65] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=74, chan=66] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=74, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=65] Channel closed DEBUG agg1:Logger.py:156 65856 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65856 expected 65000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=74, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=66] Channel closed DEBUG agg1:Logger.py:156 65951 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65951 expected 65000 for trap_code local_route INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: local_route_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=68] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=74, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=68] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=74, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=69] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=74, chan=70] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=74, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=69] Channel closed DEBUG agg1:Logger.py:156 65858 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65858 expected 65000 for stat_code 65 INFO asyncssh:logging.py:92 [conn=74, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=70] Channel closed DEBUG agg1:Logger.py:156 65977 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65977 expected 65000 for trap_code mac_to_me INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: mac_to_me_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=72] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=74, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=72] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=74, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=73] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=74, chan=74] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=74, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=73] Channel closed DEBUG agg1:Logger.py:156 65857 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65857 expected 65000 for stat_code 19 INFO asyncssh:logging.py:92 [conn=74, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=74] Channel closed DEBUG agg1:Logger.py:156 66010 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66010 expected 65000 for trap_code ip_bc_mac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_bc_mac_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=76] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=74, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=76] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=74, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=77] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=74, chan=78] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=74, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=77] Channel closed DEBUG agg1:Logger.py:156 65861 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65861 expected 65000 for stat_code 209 INFO asyncssh:logging.py:92 [conn=74, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=78] Channel closed DEBUG agg1:Logger.py:156 66023 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66023 expected 65000 for trap_code icmp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=80] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=74, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=80] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=74, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=81] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=74, chan=82] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=74, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=81] Channel closed DEBUG agg1:Logger.py:156 65859 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65859 expected 65000 for stat_code 30 INFO asyncssh:logging.py:92 [conn=74, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=82] Channel closed DEBUG agg1:Logger.py:156 66013 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66013 expected 65000 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: vrrp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=74, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=84] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=74, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=84] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x9300 flower skip_sw dst_mac 02:b5:da:78:ac:86 action trap INFO asyncssh:logging.py:92 [conn=74, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=86] Command: tc filter add dev swp1 ingress protocol 0x9300 flower skip_sw dst_mac 02:b5:da:78:ac:86 action trap INFO asyncssh:logging.py:92 [conn=74, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=86] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=87] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=88] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=74, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=88] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=74, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=89] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=74, chan=90] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=74, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=89] Channel closed DEBUG agg1:Logger.py:156 65865 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 65865 expected 65000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=74, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=90] Channel closed DEBUG agg1:Logger.py:156 66046 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 66046 expected 65000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_static_trap_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=91] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=92] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:26:46 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=74, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=93] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=74, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=94] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=74, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=94] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=95] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=74, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=96] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=74, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=96] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=74, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=97] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=74, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=98] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=74, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=98] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=99] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=100] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=100] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:26:47 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=74, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=74, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=102] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=74, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=102] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=74, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=74, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=104] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=74, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=74, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=106] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=74, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=74, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=124] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=74, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=74, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=126] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=74, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=126] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=74, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=128] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=74, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=74, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=130] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=74, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=74, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=132] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=74, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=133] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=134] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=134] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=135] Channel closed DEBUG agg1:Logger.py:156 echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=74, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=136] Command: echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=74, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=136] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_same_rule_pref[single_block] | 231.71 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4217' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_same_rule_pref[single_block]">Starting testcase:test_devlink_same_rule_pref[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=75] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=75] Local address: 172.17.0.4, port 57318 INFO asyncssh:logging.py:92 [conn=75] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=75] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=75] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:26:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=75, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=75, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=75, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=75, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=75, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:26:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=75, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=75, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=75, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=75, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=75, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=75, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 22879 flower skip_sw dst_mac 02:a3:9b:30:d4:08 vlan_id 1520 action trap action police rate 2741580bps burst 2742580 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=14] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 22879 flower skip_sw dst_mac 02:a3:9b:30:d4:08 vlan_id 1520 action trap action police rate 2741580bps burst 2742580 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 22879 flower skip_sw dst_mac 02:a3:9b:30:d4:08 vlan_id 1520 src_mac 02:1c:28:45:62:f4 action trap action police rate 913860bps burst 914860 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=16] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 22879 flower skip_sw dst_mac 02:a3:9b:30:d4:08 vlan_id 1520 src_mac 02:1c:28:45:62:f4 action trap action police rate 913860bps burst 914860 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=75, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=19] Channel closed DEBUG agg1:Logger.py:156 2273 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2273 expected 2263.8976052848884 for stat_code 195 INFO asyncssh:logging.py:92 [conn=75, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=20] Channel closed DEBUG agg1:Logger.py:156 2280 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2280 expected 2263.8976052848884 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress handle 0x1 pref 22879 flower INFO asyncssh:logging.py:92 [conn=75, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=22] Command: tc filter delete dev swp1 ingress handle 0x1 pref 22879 flower INFO asyncssh:logging.py:92 [conn=75, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 22879 flower skip_sw dst_mac 02:a3:9b:30:d4:08 vlan_id 1520 action trap action police rate 2741580bps burst 2742580 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=24] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 22879 flower skip_sw dst_mac 02:a3:9b:30:d4:08 vlan_id 1520 action trap action police rate 2741580bps burst 2742580 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=75, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=26] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=26] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=27] Channel closed DEBUG agg1:Logger.py:156 757 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 757 expected 754.6325350949628 for stat_code 195 INFO asyncssh:logging.py:92 [conn=75, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=28] Channel closed DEBUG agg1:Logger.py:156 759 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 759 expected 754.6325350949628 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_same_rule_pref[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=75, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:30:39 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=75, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=75, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=75, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=75, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=75, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=75, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=75, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=75, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=75, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=54] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=75, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=75, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=56] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=75, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=75, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=58] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=75, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=75, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=60] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=75, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=75, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=62] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=75, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=63] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=64] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=64] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_same_rule_pref[shared_block] | 237.03 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4295' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_same_rule_pref[shared_block]">Starting testcase:test_devlink_same_rule_pref[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=75, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=76] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=76] Local address: 172.17.0.4, port 53570 INFO asyncssh:logging.py:92 [conn=76] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=76] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=76] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:30:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=76, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=76, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=76, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=76, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=76, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:30:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=76, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=76, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=76, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=76, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=76, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=76, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 5100 flower skip_sw dst_mac 02:0e:19:3d:0d:bf vlan_id 183 action trap action police rate 31536bps burst 32536 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=14] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 5100 flower skip_sw dst_mac 02:0e:19:3d:0d:bf vlan_id 183 action trap action police rate 31536bps burst 32536 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 5100 flower skip_sw dst_mac 02:0e:19:3d:0d:bf vlan_id 183 src_mac 02:80:7e:88:57:89 action trap action police rate 7884bps burst 8884 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=16] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 5100 flower skip_sw dst_mac 02:0e:19:3d:0d:bf vlan_id 183 src_mac 02:80:7e:88:57:89 action trap action police rate 7884bps burst 8884 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=76, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=19] Channel closed DEBUG agg1:Logger.py:156 44 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 44 expected 43.860917941585534 for stat_code 195 INFO asyncssh:logging.py:92 [conn=76, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=20] Channel closed DEBUG agg1:Logger.py:156 44 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 44 expected 43.860917941585534 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress handle 0x1 pref 5100 flower INFO asyncssh:logging.py:92 [conn=76, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=22] Command: tc filter delete dev swp1 ingress handle 0x1 pref 5100 flower INFO asyncssh:logging.py:92 [conn=76, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 5100 flower skip_sw dst_mac 02:0e:19:3d:0d:bf vlan_id 183 action trap action police rate 31536bps burst 32536 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=24] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 5100 flower skip_sw dst_mac 02:0e:19:3d:0d:bf vlan_id 183 action trap action police rate 31536bps burst 32536 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=76, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=26] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=26] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=27] Channel closed DEBUG agg1:Logger.py:156 11 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 11 expected 10.965229485396383 for stat_code 195 INFO asyncssh:logging.py:92 [conn=76, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=28] Channel closed DEBUG agg1:Logger.py:156 11 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 11 expected 10.965229485396383 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_same_rule_pref[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=76, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:34:36 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=76, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=76, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=76, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=76, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=76, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=76, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=76, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=76, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=76, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=54] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=76, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=76, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=56] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=76, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=76, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=58] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=76, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=76, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=60] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=76, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=76, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=62] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=76, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=63] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=64] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=64] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_rule_priority[single_block] | 272.12 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4373' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_rule_priority[single_block]">Starting testcase:test_devlink_rule_priority[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=76, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=77] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=77] Local address: 172.17.0.4, port 38870 INFO asyncssh:logging.py:92 [conn=77] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=77] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=77] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:34:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=77, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=77, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=77, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=77, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=77, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:34:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=77, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=77, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=77, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=77, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=77, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=77, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 20113 flower skip_sw dst_mac 02:ca:be:92:6d:78 vlan_id 2466 vlan_ethtype ipv4 src_ip 61.30.102.28 ip_proto udp src_port 37103 action trap action police rate 1160315bps burst 1161315 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=14] Command: tc filter add dev swp1 ingress protocol 802.1q pref 20113 flower skip_sw dst_mac 02:ca:be:92:6d:78 vlan_id 2466 vlan_ethtype ipv4 src_ip 61.30.102.28 ip_proto udp src_port 37103 action trap action police rate 1160315bps burst 1161315 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 21113 flower skip_sw dst_mac 02:ca:be:92:6d:78 vlan_id 2466 vlan_ethtype ipv4 src_ip 61.30.102.28 ip_proto udp src_port 37103 action trap action police rate 290078bps burst 291078 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=16] Command: tc filter add dev swp1 ingress protocol 802.1q pref 21113 flower skip_sw dst_mac 02:ca:be:92:6d:78 vlan_id 2466 vlan_ethtype ipv4 src_ip 61.30.102.28 ip_proto udp src_port 37103 action trap action police rate 290078bps burst 291078 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=19] Channel closed DEBUG agg1:Logger.py:156 3068 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3068 expected 3077.7586206896553 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=20] Channel closed DEBUG agg1:Logger.py:156 3078 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3078 expected 3077.7586206896553 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 20113 INFO asyncssh:logging.py:92 [conn=77, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=22] Command: tc filter delete dev swp1 ingress pref 20113 INFO asyncssh:logging.py:92 [conn=77, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 20113 flower skip_sw dst_mac 02:ca:be:92:6d:78 vlan_id 2466 vlan_ethtype ipv4 src_ip 61.30.102.28 ip_proto udp src_port 37103 action trap action police rate 1160315bps burst 1161315 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=24] Command: tc filter add dev swp1 ingress protocol 802.1q pref 20113 flower skip_sw dst_mac 02:ca:be:92:6d:78 vlan_id 2466 vlan_ethtype ipv4 src_ip 61.30.102.28 ip_proto udp src_port 37103 action trap action police rate 1160315bps burst 1161315 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=26] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=26] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=27] Channel closed DEBUG agg1:Logger.py:156 3068 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3068 expected 3077.7586206896553 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=28] Channel closed DEBUG agg1:Logger.py:156 3077 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3077 expected 3077.7586206896553 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 20113 INFO asyncssh:logging.py:92 [conn=77, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=30] Command: tc filter delete dev swp1 ingress pref 20113 INFO asyncssh:logging.py:92 [conn=77, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q pref 22113 flower skip_sw dst_mac 02:ca:be:92:6d:78 vlan_id 2466 vlan_ethtype ipv4 src_ip 61.30.102.28 ip_proto udp src_port 37103 action trap action police rate 1160315bps burst 1161315 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=32] Command: tc filter add dev swp1 ingress protocol 802.1q pref 22113 flower skip_sw dst_mac 02:ca:be:92:6d:78 vlan_id 2466 vlan_ethtype ipv4 src_ip 61.30.102.28 ip_proto udp src_port 37103 action trap action police rate 1160315bps burst 1161315 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=34] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=34] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=35] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=36] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=35] Channel closed DEBUG agg1:Logger.py:156 773 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 773 expected 769.4376657824934 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=36] Channel closed DEBUG agg1:Logger.py:156 775 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 775 expected 769.4376657824934 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_rule_priority[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=77, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=38] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:39:08 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=77, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=77, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=40] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=77, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=77, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=77, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=42] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=77, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=77, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=44] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=77, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=77, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=62] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=77, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=77, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=64] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=77, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=77, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=66] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=77, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=77, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=68] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=77, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=77, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=70] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=77, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=71] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=72] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_rule_priority[shared_block] | 276.95 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4461' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_rule_priority[shared_block]">Starting testcase:test_devlink_rule_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=77, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=78] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=78] Local address: 172.17.0.4, port 51252 INFO asyncssh:logging.py:92 [conn=78] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=78] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=78] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:39:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=78, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=78, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=78, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=78, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=78, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:39:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=78, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=78, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=78, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=78, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=78, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=78, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 pref 21498 flower skip_sw dst_mac 02:e5:af:04:89:de src_ip 125.161.241.221 dst_ip 113.175.210.40 ip_proto udp src_port 17397 action trap action police rate 4309906bps burst 4310906 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=14] Command: tc filter add dev swp1 ingress protocol 0x0800 pref 21498 flower skip_sw dst_mac 02:e5:af:04:89:de src_ip 125.161.241.221 dst_ip 113.175.210.40 ip_proto udp src_port 17397 action trap action police rate 4309906bps burst 4310906 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 pref 22498 flower skip_sw dst_mac 02:e5:af:04:89:de src_ip 125.161.241.221 dst_ip 113.175.210.40 ip_proto udp src_port 17397 action trap action police rate 1077476bps burst 1078476 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=16] Command: tc filter add dev swp1 ingress protocol 0x0800 pref 22498 flower skip_sw dst_mac 02:e5:af:04:89:de src_ip 125.161.241.221 dst_ip 113.175.210.40 ip_proto udp src_port 17397 action trap action police rate 1077476bps burst 1078476 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=19] Channel closed DEBUG agg1:Logger.py:156 3383 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3383 expected 3409.7357594936707 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=20] Channel closed DEBUG agg1:Logger.py:156 3393 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3393 expected 3409.7357594936707 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 21498 INFO asyncssh:logging.py:92 [conn=78, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=22] Command: tc filter delete dev swp1 ingress pref 21498 INFO asyncssh:logging.py:92 [conn=78, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 pref 21498 flower skip_sw dst_mac 02:e5:af:04:89:de src_ip 125.161.241.221 dst_ip 113.175.210.40 ip_proto udp src_port 17397 action trap action police rate 4309906bps burst 4310906 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=24] Command: tc filter add dev swp1 ingress protocol 0x0800 pref 21498 flower skip_sw dst_mac 02:e5:af:04:89:de src_ip 125.161.241.221 dst_ip 113.175.210.40 ip_proto udp src_port 17397 action trap action police rate 4309906bps burst 4310906 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=26] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=26] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=27] Channel closed DEBUG agg1:Logger.py:156 3384 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3384 expected 3409.7357594936707 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=28] Channel closed DEBUG agg1:Logger.py:156 3392 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3392 expected 3409.7357594936707 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 21498 INFO asyncssh:logging.py:92 [conn=78, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=30] Command: tc filter delete dev swp1 ingress pref 21498 INFO asyncssh:logging.py:92 [conn=78, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 pref 23498 flower skip_sw dst_mac 02:e5:af:04:89:de src_ip 125.161.241.221 dst_ip 113.175.210.40 ip_proto udp src_port 17397 action trap action police rate 4309906bps burst 4310906 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=32] Command: tc filter add dev swp1 ingress protocol 0x0800 pref 23498 flower skip_sw dst_mac 02:e5:af:04:89:de src_ip 125.161.241.221 dst_ip 113.175.210.40 ip_proto udp src_port 17397 action trap action police rate 4309906bps burst 4310906 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=34] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=34] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=35] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=36] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=35] Channel closed DEBUG agg1:Logger.py:156 855 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 855 expected 852.4335443037975 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=36] Channel closed DEBUG agg1:Logger.py:156 858 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 858 expected 852.4335443037975 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_rule_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=78, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=38] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:43:45 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=78, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=78, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=40] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=78, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=78, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=78, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=42] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=78, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=78, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=44] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=78, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=78, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=62] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=78, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=78, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=64] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=78, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=78, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=66] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=78, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=78, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=68] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=78, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=78, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=70] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=78, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=71] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=72] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_basic[l2] | 167.64 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4549' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l2]">Starting testcase:test_devlink_basic[l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=78, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=79] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=79] Local address: 172.17.0.4, port 59558 INFO asyncssh:logging.py:92 [conn=79] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=79] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=79] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:43:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=79, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=79, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=79, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=79, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=79, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:43:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=79, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=79, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=79, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=79, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=79, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=79, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q flower skip_sw src_mac aa:aa:aa:aa:aa:00 dst_mac aa:00:00:00:00:55 vlan_id 393 action trap action police rate 540586bps burst 541586 conform-exceed drop INFO asyncssh:logging.py:92 [conn=79, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=14] Command: tc filter add dev swp1 ingress protocol 802.1q flower skip_sw src_mac aa:aa:aa:aa:aa:00 dst_mac aa:00:00:00:00:55 vlan_id 393 action trap action police rate 540586bps burst 541586 conform-exceed drop INFO asyncssh:logging.py:92 [conn=79, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=79, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=79, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":393,"dst_mac":"aa:00:00:00:00:55","src_mac":"aa:aa:aa:aa:aa:00"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_393_dst_mac_aa:00:00:00:00:55_src_mac_aa:aa:aa:aa:aa:00 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=79, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=79, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=79, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=79, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=79, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=79, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=19] Channel closed DEBUG agg1:Logger.py:156 440 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 440 expected 440.5753871230644 for stat_code 195 INFO asyncssh:logging.py:92 [conn=79, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=20] Channel closed DEBUG agg1:Logger.py:156 441 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 441 expected 440.5753871230644 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=79, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:46:33 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=79, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=79, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=79, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=79, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=79, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=79, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=79, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=79, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=79, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=79, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=79, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=79, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=79, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=79, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=79, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=79, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=79, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=79, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=56] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_basic[l3] | 166.27 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4617' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l3]">Starting testcase:test_devlink_basic[l3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=79, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=80] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=80] Local address: 172.17.0.4, port 60226 INFO asyncssh:logging.py:92 [conn=80] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=80] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=80] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:46:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=80, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=80, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=80, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=80, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=80, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:46:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=80, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=80, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=80, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=80, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=80, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=80, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw src_ip 48.65.20.110 dst_ip 86.10.245.222 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 332636bps burst 333636 conform-exceed drop INFO asyncssh:logging.py:92 [conn=80, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=14] Command: tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw src_ip 48.65.20.110 dst_ip 86.10.245.222 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 332636bps burst 333636 conform-exceed drop INFO asyncssh:logging.py:92 [conn=80, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=80, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=80, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"00:00:00:00:00:02","src_mac":"00:00:00:00:00:01","eth_type":"ipv4","dst_ip":"86.10.245.222","src_ip":"48.65.20.110"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_00:00:00:00:00:02_src_mac_00:00:00:00:00:01_eth_type_ipv4_dst_ip_86.10.245.222_src_ip_48.65.20.110 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=80, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=80, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=80, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=80, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=80, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=80, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=19] Channel closed DEBUG agg1:Logger.py:156 1332 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1332 expected 1325.2430278884462 for stat_code 195 INFO asyncssh:logging.py:92 [conn=80, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=20] Channel closed DEBUG agg1:Logger.py:156 1335 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1335 expected 1325.2430278884462 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=80, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:49:19 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=80, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=80, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=80, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=80, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=80, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=80, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=80, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=80, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=80, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=80, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=80, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=80, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=80, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=80, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=80, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=80, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=80, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=80, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=56] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_basic[l4] | 172.14 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4685' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l4]">Starting testcase:test_devlink_basic[l4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=80, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=81] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=81] Local address: 172.17.0.4, port 34552 INFO asyncssh:logging.py:92 [conn=81] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=81] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=81] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:49:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=81, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=81, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=81, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=81, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=81, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:49:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=81, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=81, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=81, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=81, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=81, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=81, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip flower skip_sw src_ip 1.1.1.2 dst_ip 2.2.2.3 ip_proto udp src_port 34884 dst_port 11309 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 1887795bps burst 1888795 conform-exceed drop INFO asyncssh:logging.py:92 [conn=81, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=14] Command: tc filter add dev swp1 ingress protocol ip flower skip_sw src_ip 1.1.1.2 dst_ip 2.2.2.3 ip_proto udp src_port 34884 dst_port 11309 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 1887795bps burst 1888795 conform-exceed drop INFO asyncssh:logging.py:92 [conn=81, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=81, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=81, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"00:00:00:00:00:02","src_mac":"00:00:00:00:00:01","eth_type":"ipv4","ip_proto":"udp","dst_ip":"2.2.2.3","src_ip":"1.1.1.2","dst_port":11309,"src_port":34884},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_00:00:00:00:00:02_src_mac_00:00:00:00:00:01_eth_type_ipv4_ip_proto_udp_dst_ip_2.2.2.3_src_ip_1.1.1.2_dst_port_11309_src_port_34884 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=81, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=81, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=81, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=81, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=81, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=81, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=19] Channel closed DEBUG agg1:Logger.py:156 3285 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3285 expected 3266.081314878893 for stat_code 195 INFO asyncssh:logging.py:92 [conn=81, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=20] Channel closed DEBUG agg1:Logger.py:156 3294 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3294 expected 3266.081314878893 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=81, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:52:11 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=81, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=81, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=81, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=81, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=81, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=81, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=81, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=81, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=81, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=81, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=81, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=81, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=81, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=81, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=81, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=81, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=81, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=81, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=56] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_random | 165.00 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4753' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_random">Starting testcase:test_devlink_random from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=81, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=82] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=82] Local address: 172.17.0.4, port 37266 INFO asyncssh:logging.py:92 [conn=82] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=82] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=82] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:52:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=82, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=82, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=82, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=82, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=82, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:52:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=82, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=82, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=82, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=82, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=82, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=82, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw dst_mac 02:f2:12:35:b2:76 src_ip 91.0.1.137 dst_ip 104.133.11.97 ip_proto tcp dst_port 21596 action trap action police rate 2409538bps burst 2410538 conform-exceed drop INFO asyncssh:logging.py:92 [conn=82, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=14] Command: tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw dst_mac 02:f2:12:35:b2:76 src_ip 91.0.1.137 dst_ip 104.133.11.97 ip_proto tcp dst_port 21596 action trap action police rate 2409538bps burst 2410538 conform-exceed drop INFO asyncssh:logging.py:92 [conn=82, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=82, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=82, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:f2:12:35:b2:76","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"104.133.11.97","src_ip":"91.0.1.137","dst_port":21596},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:f2:12:35:b2:76_eth_type_ipv4_ip_proto_tcp_dst_ip_104.133.11.97_src_ip_91.0.1.137_dst_port_21596 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=82, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=82, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=82, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=82, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=82, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=82, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=19] Channel closed DEBUG agg1:Logger.py:156 3826 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3826 expected 3818.6022187004755 for stat_code 195 INFO asyncssh:logging.py:92 [conn=82, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=20] Channel closed DEBUG agg1:Logger.py:156 3838 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3838 expected 3818.6022187004755 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_random from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=82, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:54:56 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=82, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=82, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=82, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=82, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=82, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=82, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=82, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=82, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=82, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=82, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=82, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=82, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=82, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=82, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=82, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=82, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=82, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=82, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=56] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_policer_log | 167.00 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4821' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_policer_log">Starting testcase:test_devlink_policer_log from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=82, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=83] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=83] Local address: 172.17.0.4, port 41402 INFO asyncssh:logging.py:92 [conn=83] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=83] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=83] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:54:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=83, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=83, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=83, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=83, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=83, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:54:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=83, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=83, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=83, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=83, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=83, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=83, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q flower skip_sw dst_mac 02:37:8f:fa:28:15 vlan_id 1852 vlan_ethtype ip src_ip 90.34.50.17 dst_ip 111.3.212.150 action trap action police rate 100kbit burst 6250 conform-exceed drop INFO asyncssh:logging.py:92 [conn=83, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=14] Command: tc filter add dev swp1 ingress protocol 802.1q flower skip_sw dst_mac 02:37:8f:fa:28:15 vlan_id 1852 vlan_ethtype ip src_ip 90.34.50.17 dst_ip 111.3.212.150 action trap action police rate 100kbit burst 6250 conform-exceed drop INFO asyncssh:logging.py:92 [conn=83, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=83, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=83, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1852,"vlan_ethtype":"ip","dst_mac":"02:37:8f:fa:28:15","eth_type":"ipv4","dst_ip":"111.3.212.150","src_ip":"90.34.50.17"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=83, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q flower dst_mac 02:37:8f:fa:28:15 vlan_id 1852 vlan_ethtype ip src_ip 90.34.50.17 dst_ip 111.3.212.150 action xt limit 3/sec -j LOG INFO asyncssh:logging.py:92 [conn=83, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=18] Command: tc filter add dev swp1 ingress protocol 802.1q flower dst_mac 02:37:8f:fa:28:15 vlan_id 1852 vlan_ethtype ip src_ip 90.34.50.17 dst_ip 111.3.212.150 action xt limit 3/sec -j LOG INFO asyncssh:logging.py:92 [conn=83, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=18] Channel closed DEBUG agg1:Logger.py:156 tablename: mangle hook: NF_IP_POST_ROUTING target: LOG level warning index 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1852_vlan_ethtype_ip_dst_mac_02:37:8f:fa:28:15_eth_type_ipv4_dst_ip_111.3.212.150_src_ip_90.34.50.17 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=83, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=19] Channel closed DEBUG agg1:Logger.py:156 tail -50 /var/log/messages | grep -Eo "IN=swp1" | wc -l INFO asyncssh:logging.py:92 [conn=83, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=20] Command: tail -50 /var/log/messages | grep -Eo "IN=swp1" | wc -l INFO asyncssh:logging.py:92 [conn=83, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=20] Channel closed DEBUG agg1:Logger.py:156 50 INFO asyncssh:logging.py:92 [conn=83, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=83, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=22] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=83, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=22] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=83, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=23] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=83, chan=24] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=83, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=23] Channel closed DEBUG agg1:Logger.py:156 16 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 16 expected 16 for stat_code 195 INFO asyncssh:logging.py:92 [conn=83, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=24] Channel closed DEBUG agg1:Logger.py:156 16 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 16 expected 16 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_policer_log from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=83, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:57:43 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=83, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=83, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=83, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=83, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=83, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=83, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=83, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=83, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=83, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=50] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=83, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=83, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=52] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=83, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=83, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=83, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=83, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=83, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=83, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=83, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=59] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=60] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=60] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[bit] | 166.86 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4893' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[bit]">Starting testcase:test_devlink_diff_rate_units[bit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=83, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=84] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=84] Local address: 172.17.0.4, port 59202 INFO asyncssh:logging.py:92 [conn=84] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=84] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=84] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:57:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=84, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=84, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=84, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=84, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=84, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 19:57:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=84, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=84, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=84, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=84, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=84, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=84, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q flower skip_sw src_mac 02:5b:85:19:f6:89 vlan_id 919 vlan_ethtype ipv4 src_ip 108.105.90.81 dst_ip 17.240.255.183 ip_proto udp dst_port 900 action trap action police rate 13436773.0bit burst 13437773.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=84, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=14] Command: tc filter add dev swp1 ingress protocol 802.1q flower skip_sw src_mac 02:5b:85:19:f6:89 vlan_id 919 vlan_ethtype ipv4 src_ip 108.105.90.81 dst_ip 17.240.255.183 ip_proto udp dst_port 900 action trap action police rate 13436773.0bit burst 13437773.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=84, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=84, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=84, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":919,"vlan_ethtype":"ip","src_mac":"02:5b:85:19:f6:89","eth_type":"ipv4","ip_proto":"udp","dst_ip":"17.240.255.183","src_ip":"108.105.90.81","dst_port":900},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_919_vlan_ethtype_ip_src_mac_02:5b:85:19:f6:89_eth_type_ipv4_ip_proto_udp_dst_ip_17.240.255.183_src_ip_108.105.90.81_dst_port_900 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=84, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=84, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=84, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=84, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=84, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=84, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=19] Channel closed DEBUG agg1:Logger.py:156 3479 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3479 expected 3573.6098404255317 for stat_code 195 INFO asyncssh:logging.py:92 [conn=84, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=20] Channel closed DEBUG agg1:Logger.py:156 3488 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3488 expected 3573.6098404255317 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[bit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=84, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:00:30 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=84, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=84, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=84, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=84, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=84, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=84, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=84, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=84, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=84, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=84, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=84, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=84, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=84, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=84, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=84, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=84, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=84, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=84, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=56] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[kbit] | 171.35 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4961' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[kbit]">Starting testcase:test_devlink_diff_rate_units[kbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=84, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=85] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=85] Local address: 172.17.0.4, port 42902 INFO asyncssh:logging.py:92 [conn=85] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=85] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=85] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:00:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=85, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=85, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=85, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=85, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=85, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:00:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=85, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=85, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=85, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=85, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=85, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=85, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q flower skip_sw dst_mac 02:44:62:23:f2:e0 vlan_id 3955 vlan_ethtype ipv4 src_ip 89.46.99.249 dst_ip 67.137.137.141 action trap action police rate 2704.008kbit burst 3704.008 conform-exceed drop INFO asyncssh:logging.py:92 [conn=85, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=14] Command: tc filter add dev swp1 ingress protocol 802.1q flower skip_sw dst_mac 02:44:62:23:f2:e0 vlan_id 3955 vlan_ethtype ipv4 src_ip 89.46.99.249 dst_ip 67.137.137.141 action trap action police rate 2704.008kbit burst 3704.008 conform-exceed drop INFO asyncssh:logging.py:92 [conn=85, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=85, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=85, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3955,"vlan_ethtype":"ip","dst_mac":"02:44:62:23:f2:e0","eth_type":"ipv4","dst_ip":"67.137.137.141","src_ip":"89.46.99.249"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3955_vlan_ethtype_ip_dst_mac_02:44:62:23:f2:e0_eth_type_ipv4_dst_ip_67.137.137.141_src_ip_89.46.99.249 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=85, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=85, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=85, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=85, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=19] Channel closed DEBUG agg1:Logger.py:156 1805 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1805 expected 1797.877659574468 for stat_code 195 INFO asyncssh:logging.py:92 [conn=85, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=20] Channel closed DEBUG agg1:Logger.py:156 1811 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 1811 expected 1797.877659574468 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[kbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=85, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:03:21 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=85, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=85, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=85, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=85, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=85, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=85, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=85, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=85, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=85, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=85, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=85, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=85, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=85, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=85, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=85, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=85, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=85, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=85, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=56] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[gbit] | 173.58 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5029' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[gbit]">Starting testcase:test_devlink_diff_rate_units[gbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=85, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=86] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=86] Local address: 172.17.0.4, port 41034 INFO asyncssh:logging.py:92 [conn=86] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=86] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=86] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:03:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=86, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=86, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=86, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=86, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=86, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:03:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=86, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=86, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=86, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=86, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=86, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=86, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x9100 flower skip_sw src_mac 02:a6:69:88:66:11 action trap action police rate 0.003111965gbit burst 1000.003111965 conform-exceed drop INFO asyncssh:logging.py:92 [conn=86, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=14] Command: tc filter add dev swp1 ingress protocol 0x9100 flower skip_sw src_mac 02:a6:69:88:66:11 action trap action police rate 0.003111965gbit burst 1000.003111965 conform-exceed drop INFO asyncssh:logging.py:92 [conn=86, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=86, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=86, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"src_mac":"02:a6:69:88:66:11","eth_type":"9100"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_src_mac_02:a6:69:88:66:11_eth_type_9100 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=86, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=86, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=86, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=86, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=86, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=86, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=19] Channel closed DEBUG agg1:Logger.py:156 2209 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2209 expected 2197.715395480226 for stat_code 195 INFO asyncssh:logging.py:92 [conn=86, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=20] Channel closed DEBUG agg1:Logger.py:156 2215 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2215 expected 2197.715395480226 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[gbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=86, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:06:15 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=86, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=86, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=86, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=86, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=86, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=86, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=86, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=86, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=86, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=86, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=86, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=86, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=86, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=86, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=86, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=86, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=86, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=86, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=56] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[bps] | 171.29 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5097' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[bps]">Starting testcase:test_devlink_diff_rate_units[bps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=86, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=87] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=87] Local address: 172.17.0.4, port 44640 INFO asyncssh:logging.py:92 [conn=87] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=87] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=87] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:06:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=87, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=87, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=87, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=87, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=87, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:06:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=87, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=87, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=87, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=87, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=87, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=87, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q flower skip_sw src_mac 02:0c:67:b6:ef:1e dst_mac 02:d4:cd:7d:d0:53 vlan_id 167 action trap action police rate 363815.75bps burst 364815.75 conform-exceed drop INFO asyncssh:logging.py:92 [conn=87, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=14] Command: tc filter add dev swp1 ingress protocol 802.1q flower skip_sw src_mac 02:0c:67:b6:ef:1e dst_mac 02:d4:cd:7d:d0:53 vlan_id 167 action trap action police rate 363815.75bps burst 364815.75 conform-exceed drop INFO asyncssh:logging.py:92 [conn=87, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=87, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=87, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":167,"dst_mac":"02:d4:cd:7d:d0:53","src_mac":"02:0c:67:b6:ef:1e"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_167_dst_mac_02:d4:cd:7d:d0:53_src_mac_02:0c:67:b6:ef:1e INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=87, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=87, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=87, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=87, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=87, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=87, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=19] Channel closed DEBUG agg1:Logger.py:156 856 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 856 expected 852.0275175644028 for stat_code 195 INFO asyncssh:logging.py:92 [conn=87, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=20] Channel closed DEBUG agg1:Logger.py:156 859 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 859 expected 852.0275175644028 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[bps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=87, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:09:06 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=87, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=87, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=87, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=87, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=87, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=87, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=87, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=87, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=87, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=87, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=87, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=87, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=87, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=87, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=87, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=87, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=87, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=87, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=56] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[kbps] | 167.36 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5165' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[kbps]">Starting testcase:test_devlink_diff_rate_units[kbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=87, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=88] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=88] Local address: 172.17.0.4, port 58628 INFO asyncssh:logging.py:92 [conn=88] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=88] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=88] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:09:07 UTC 2023 INFO asyncssh:logging.py:92 [conn=88, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=88, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=88, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=88, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=88, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:09:07 UTC 2023 INFO asyncssh:logging.py:92 [conn=88, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=88, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=88, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=88, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=88, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=88, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x9300 flower skip_sw dst_mac 02:8c:7c:1a:e2:84 action trap action police rate 1106.00075kbps burst 2106.00075 conform-exceed drop INFO asyncssh:logging.py:92 [conn=88, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=14] Command: tc filter add dev swp1 ingress protocol 0x9300 flower skip_sw dst_mac 02:8c:7c:1a:e2:84 action trap action police rate 1106.00075kbps burst 2106.00075 conform-exceed drop INFO asyncssh:logging.py:92 [conn=88, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=88, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=88, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:8c:7c:1a:e2:84","eth_type":"9300"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:8c:7c:1a:e2:84_eth_type_9300 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=88, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=88, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=88, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=88, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=88, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=88, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=19] Channel closed DEBUG agg1:Logger.py:156 3506 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3506 expected 3488.961356466877 for stat_code 195 INFO asyncssh:logging.py:92 [conn=88, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=20] Channel closed DEBUG agg1:Logger.py:156 3515 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3515 expected 3488.961356466877 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[kbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=88, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:11:54 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=88, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=88, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=88, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=88, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=88, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=88, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=88, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=88, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=88, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=88, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=88, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=88, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=88, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=88, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=88, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=88, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=88, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=88, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=56] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[mbps] | 170.64 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5233' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[mbps]">Starting testcase:test_devlink_diff_rate_units[mbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=88, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=89] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=89] Local address: 172.17.0.4, port 38520 INFO asyncssh:logging.py:92 [conn=89] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=89] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=89] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:11:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=89, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=89, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=89, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=89, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=89, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:11:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=89, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=89, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=89, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=89, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=89, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=89, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x9300 flower skip_sw dst_mac 02:17:58:05:e7:61 action trap action police rate 1.158555625mbps burst 1001.158555625 conform-exceed drop INFO asyncssh:logging.py:92 [conn=89, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=14] Command: tc filter add dev swp1 ingress protocol 0x9300 flower skip_sw dst_mac 02:17:58:05:e7:61 action trap action police rate 1.158555625mbps burst 1001.158555625 conform-exceed drop INFO asyncssh:logging.py:92 [conn=89, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=89, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=89, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:17:58:05:e7:61","eth_type":"9300"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:17:58:05:e7:61_eth_type_9300 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=89, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=89, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=89, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=89, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=89, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=89, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=19] Channel closed DEBUG agg1:Logger.py:156 3805 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3805 expected 3786.1294934640523 for stat_code 195 INFO asyncssh:logging.py:92 [conn=89, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=20] Channel closed DEBUG agg1:Logger.py:156 3814 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 3814 expected 3786.1294934640523 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[mbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=89, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:14:44 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=89, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=89, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=89, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=89, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=89, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=89, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=89, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=89, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=89, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=89, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=89, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=89, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=89, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=89, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=89, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=89, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=89, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=89, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=56] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[gbps] | 174.77 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5301' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[gbps]">Starting testcase:test_devlink_diff_rate_units[gbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=89, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=90] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=90] Local address: 172.17.0.4, port 37306 INFO asyncssh:logging.py:92 [conn=90] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=90] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=90] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:14:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=90, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=90, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=90, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=90, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=90, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:14:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=90, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=90, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=90, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=90, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=90, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=90, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x9100 flower skip_sw src_mac 02:5a:1c:d9:66:09 action trap action police rate 0.000436233gbps burst 1000.000436233 conform-exceed drop INFO asyncssh:logging.py:92 [conn=90, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=14] Command: tc filter add dev swp1 ingress protocol 0x9100 flower skip_sw src_mac 02:5a:1c:d9:66:09 action trap action police rate 0.000436233gbps burst 1000.000436233 conform-exceed drop INFO asyncssh:logging.py:92 [conn=90, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=90, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=90, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"src_mac":"02:5a:1c:d9:66:09","eth_type":"9100"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_src_mac_02:5a:1c:d9:66:09_eth_type_9100 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=90, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=90, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=90, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=90, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=90, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=90, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=19] Channel closed DEBUG agg1:Logger.py:156 2054 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2054 expected 2048.042253521127 for stat_code 195 INFO asyncssh:logging.py:92 [conn=90, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=20] Channel closed DEBUG agg1:Logger.py:156 2060 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2060 expected 2048.042253521127 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[gbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=90, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:17:39 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=90, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=90, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=90, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=90, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=90, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=90, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=90, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=90, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=90, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=90, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=90, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=90, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=90, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=90, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=90, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=90, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=90, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=90, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=56] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[tbps] | 167.91 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5369' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[tbps]">Starting testcase:test_devlink_diff_rate_units[tbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=90, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=91] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=91] Local address: 172.17.0.4, port 51746 INFO asyncssh:logging.py:92 [conn=91] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=91] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=91] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:17:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=91, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=91, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=91, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=91, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=91, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:17:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=91, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=91, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=91, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=91, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=91, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=12] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=91, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x9100 flower skip_sw dst_mac 02:e1:2f:a6:ce:c8 action trap action police rate 6.6419625e-07tbps burst 1000.0000006641962 conform-exceed drop INFO asyncssh:logging.py:92 [conn=91, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=14] Command: tc filter add dev swp1 ingress protocol 0x9100 flower skip_sw dst_mac 02:e1:2f:a6:ce:c8 action trap action police rate 6.6419625e-07tbps burst 1000.0000006641962 conform-exceed drop INFO asyncssh:logging.py:92 [conn=91, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=91, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=91, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:e1:2f:a6:ce:c8","eth_type":"9100"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e1:2f:a6:ce:c8_eth_type_9100 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=91, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=91, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=18] Received channel close DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=91, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=18] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=91, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=91, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=91, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=19] Channel closed DEBUG agg1:Logger.py:156 2660 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2660 expected 2646.2001992031874 for stat_code 195 INFO asyncssh:logging.py:92 [conn=91, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=20] Channel closed DEBUG agg1:Logger.py:156 2666 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 2666 expected 2646.2001992031874 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[tbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=91, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:20:27 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=91, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=91, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=91, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=91, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=91, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=91, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=91, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=91, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=91, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=91, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=91, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=91, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=91, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=91, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=91, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=91, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=91, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=91, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=56] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_nexthops_down[1] | 154.43 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5437' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_nexthops_down[1]">Starting testcase:test_ecmp_nexthops_down[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=91, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=92] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=92] Local address: 172.17.0.4, port 44048 INFO asyncssh:logging.py:92 [conn=92] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=92] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=92] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:20:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=92, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=92, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=2] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=92, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 INFO asyncssh:logging.py:92 [conn=92, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=92, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=4] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=92, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:20:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=92, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=92, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=92, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=8] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=92, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=92, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=92, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:20:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=92, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=92, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=14] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=92, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=92, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=16] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=92, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=92, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=92, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=92, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=92, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=92, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=92, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=22] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=92, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=22] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=92, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=92, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=24] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=92, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=92, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=92, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=26] Command: ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=92, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2613a00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 61433042 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 30716523 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 30716521 INFO asyncssh:logging.py:92 [conn=92, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=92, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=28] Command: ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=92, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=28] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_nexthops_down[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=92, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=29] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=30] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=30] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:23:00 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=34] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:23:00 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=92, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=92, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=36] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=92, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=92, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=92, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=92, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=92, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=40] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=92, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=92, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=41] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=42] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=42] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_nexthops_down[3] | 162.12 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5493' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_nexthops_down[3]">Starting testcase:test_ecmp_nexthops_down[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=93] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=93] Local address: 172.17.0.4, port 43560 INFO asyncssh:logging.py:92 [conn=93] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=93] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=93] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:23:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=93, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=93, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=2] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=93, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 INFO asyncssh:logging.py:92 [conn=93, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=93, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=4] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=93, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:23:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=93, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=93, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=93, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=8] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=93, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=93, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=93, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:23:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=93, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=93, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=14] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=93, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=93, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=16] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=93, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=93, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=93, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=93, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=93, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=93, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=93, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=22] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=93, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=22] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=93, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=93, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=24] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=93, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=93, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=93, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=26] Command: ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=93, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2610b20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 63998884 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=93, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=93, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=28] Command: ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=93, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=28] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_nexthops_down[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=93, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=29] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=30] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=30] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:25:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=34] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:25:43 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=93, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=93, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=36] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=93, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=93, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=93, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=93, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=93, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=40] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=93, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=93, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=41] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=93, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=42] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=93, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=42] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_hash_policy | 289.94 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5549' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_hash_policy">Starting testcase:test_ecmp_hash_policy from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=94] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=94] Local address: 172.17.0.4, port 60138 INFO asyncssh:logging.py:92 [conn=94] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=94] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=94] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:25:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=94, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy INFO asyncssh:logging.py:92 [conn=94, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=2] Command: sysctl net.ipv4.fib_multipath_hash_policy INFO asyncssh:logging.py:92 [conn=94, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 0 INFO asyncssh:logging.py:92 [conn=94, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy=1 INFO asyncssh:logging.py:92 [conn=94, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=4] Command: sysctl net.ipv4.fib_multipath_hash_policy=1 INFO asyncssh:logging.py:92 [conn=94, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:25:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=94, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=94, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=94, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=8] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=94, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=94, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=94, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:25:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=94, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=94, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=14] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=94, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=94, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=16] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=94, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=94, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=94, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=94, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=94, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=94, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=94, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=22] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=94, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=22] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=94, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=94, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=24] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=94, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_11 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_12 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_13 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_17 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_18 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_19 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a252f550>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 20000 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 6002 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 6003 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 8002 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_hash_policy from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=94, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=25] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=26] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=26] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:30:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:30:32 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=94, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=94, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=32] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=94, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=94, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=94, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=94, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=94, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=36] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=94, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=94, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=37] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy=0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=38] Command: sysctl net.ipv4.fib_multipath_hash_policy=0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=38] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 0 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[basic] | 153.59 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5603' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[basic]">Starting testcase:test_ecmp_traffic_distribution[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=95] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=95] Local address: 172.17.0.4, port 41214 INFO asyncssh:logging.py:92 [conn=95] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=95] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=95] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:30:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=95, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=95, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=95, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=95, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=95, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=95, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:30:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=95, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=95, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=95, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=95, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=95, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=95, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=95, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=12] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=95, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=95, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=14] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=95, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=95, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=16] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=95, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=95, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=95, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=18] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=95, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a252f910>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 60115530 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 22042363 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 18034661 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 20038512 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=95, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=19] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=20] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:33:06 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:33:06 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=95, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=95, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=26] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=95, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=95, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=95, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=95, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=95, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=30] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=95, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=30] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[nexthop_down] | 160.87 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5645' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[nexthop_down]">Starting testcase:test_ecmp_traffic_distribution[nexthop_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=96] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=96] Local address: 172.17.0.4, port 52692 INFO asyncssh:logging.py:92 [conn=96] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=96] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=96] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:33:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=96, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=96, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=96, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=96, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=96, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=96, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:33:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=96, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=96, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=96, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=96, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=96, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=96, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=96, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=12] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp2 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp3 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp4 INFO asyncssh:logging.py:92 [conn=96, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=96, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=14] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=96, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=96, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=16] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=96, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=96, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=96, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=18] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=96, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=96, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=96, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=20] Command: ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=96, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a252cf40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 63507858 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 31753931 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 31753930 INFO asyncssh:logging.py:92 [conn=96, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=96, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=22] Command: ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=96, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=22] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[nexthop_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=96, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=23] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=24] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:35:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:35:47 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=96, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=96, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=30] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=96, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=96, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=96, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=96, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=96, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=34] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=96, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=34] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[dynamic] | 159.66 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5691' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[dynamic]">Starting testcase:test_ecmp_traffic_distribution[dynamic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=97] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=97] Local address: 172.17.0.4, port 51906 INFO asyncssh:logging.py:92 [conn=97] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=97] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=97] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:35:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=97, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=97, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=97, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=97, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=97, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=97, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:35:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=97, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=97, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=97, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=97, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev swp2 && ip address add 12.0.0.1/16 dev swp3 && ip address add 13.0.0.1/20 dev swp4 INFO asyncssh:logging.py:92 [conn=97, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=97, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=97, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=12] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=97, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=97, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=14] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=97, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=14] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=97, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=97, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=16] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=97, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a268f3d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 60545548 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 20181851 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 22200037 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 18163667 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[dynamic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=97, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=17] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=18] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=18] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:38:26 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:38:27 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=97, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=97, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=24] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=97, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=97, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=97, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=97, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=97, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=28] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=97, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=28] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_distribution_lags | 164.31 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5732' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_distribution_lags">Starting testcase:test_ecmp_distribution_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=98] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=98] Local address: 172.17.0.4, port 35580 INFO asyncssh:logging.py:92 [conn=98] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=98] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=98] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:38:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=98, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=98, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=98, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=98, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=98, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=98, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:38:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=98, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add name bond1 type bond mode 802.3ad && ip link add name bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=98, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=8] Command: ip link add name bond1 type bond mode 802.3ad && ip link add name bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=98, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=98, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=10] Command: ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=98, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bond1 && ip link set dev swp3 master bond2 && ip link set dev swp4 master bond2 INFO asyncssh:logging.py:92 [conn=98, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=12] Command: ip link set dev swp2 master bond1 && ip link set dev swp3 master bond2 && ip link set dev swp4 master bond2 INFO asyncssh:logging.py:92 [conn=98, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev bond1 up && ip link set dev bond2 up INFO asyncssh:logging.py:92 [conn=98, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=14] Command: ip link set dev swp1 up && ip link set dev bond1 up && ip link set dev bond2 up INFO asyncssh:logging.py:92 [conn=98, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev bond1 && ip address add 12.0.0.1/16 dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=16] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 11.0.0.1/8 dev bond1 && ip address add 12.0.0.1/16 dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond1 with ports ['/api/v1/sessions/16/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond1_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:6']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond2 with ports ['/api/v1/sessions/16/ixnetwork/vport/3', '/api/v1/sessions/16/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond2_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:7', '10.36.118.199:1:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=98, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev bond1 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev bond1 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=98, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=98, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=98, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=22] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=98, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=22] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=98, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=98, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=24] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=98, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on bond1_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on bond2_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2611f30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 60699833 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 30349917 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 16186626 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 14163295 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_distribution_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=98, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=25] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=26] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=26] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:41:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:41:10 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=98, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=98, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=32] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=98, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=98, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=98, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":100,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":101,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=98, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=98, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=36] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=98, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=38] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:41:12 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=98, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=98, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=40] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=98, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":5,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":4,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":4,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":100,"ifname":"bond1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":101,"ifname":"bond2","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=98, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=98, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=42] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=98, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=98, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=44] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=98, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=44] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3[1] | 611.00 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5788' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3[1]">Starting testcase:test_hw_drop_l3[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=99] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=99] Local address: 172.17.0.4, port 59214 INFO asyncssh:logging.py:92 [conn=99] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=99] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=99] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:41:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=99, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=99, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=99, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=99, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:41:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=99, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=99, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=99, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp1 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp2 INFO asyncssh:logging.py:92 [conn=99, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=12] Command: ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp1 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp2 INFO asyncssh:logging.py:92 [conn=99, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_0.0.0.0/24', 'count': 1, 'ip': '0.0.0.0', 'gw': '0.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=99, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 2.2.2.2 lladdr 02:ad:1a:e1:74:b5 dev swp1 INFO asyncssh:logging.py:92 [conn=99, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=14] Command: ip neigh add 2.2.2.2 lladdr 02:ad:1a:e1:74:b5 dev swp1 INFO asyncssh:logging.py:92 [conn=99, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=99, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=16] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=99, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=99, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=18] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=99, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=99, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=20] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=99, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=22] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=99, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"0.0.0.1","prefixlen":24,"broadcast":"0.0.0.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"0.0.0.1","prefixlen":24,"broadcast":"0.0.0.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a252c340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 3967765 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 8 INFO asyncssh:logging.py:92 [conn=99, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=23] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=99, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=24] Command: get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=99, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=24] Channel closed DEBUG agg1:Logger.py:156 1108053 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a252f490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 4385759 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 11 INFO asyncssh:logging.py:92 [conn=99, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=25] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=26] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=26] Channel closed DEBUG agg1:Logger.py:156 1108133 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a26621d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 4468532 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 13 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 14 INFO asyncssh:logging.py:92 [conn=99, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=27] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=28] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=28] Channel closed DEBUG agg1:Logger.py:156 1108167 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a276ef20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 5658644 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 17 INFO asyncssh:logging.py:92 [conn=99, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=29] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=30] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=30] Channel closed DEBUG agg1:Logger.py:156 1108078 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a268f310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 6697341 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 18 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 19 INFO asyncssh:logging.py:92 [conn=99, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=31] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=32] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=32] Channel closed DEBUG agg1:Logger.py:156 1108297 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2660820>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 7034487 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 23 INFO asyncssh:logging.py:92 [conn=99, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=33] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=34] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=34] Channel closed DEBUG agg1:Logger.py:156 1108419 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a26635b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 9006841 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 25 INFO asyncssh:logging.py:92 [conn=99, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=35] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=99, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=36] Command: get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=99, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=36] Channel closed DEBUG agg1:Logger.py:156 1108423 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=38] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:51:22 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=99, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=99, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=40] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=99, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=99, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=99, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=99, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=99, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=44] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=99, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=45] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=46] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=46] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3[3] | 698.91 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5844' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3[3]">Starting testcase:test_hw_drop_l3[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=100] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=100] Local address: 172.17.0.4, port 38236 INFO asyncssh:logging.py:92 [conn=100] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=100] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=100] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:51:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=100, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=100, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=100, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=100, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 20:51:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=100, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=100, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=100, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp1 && ip address add 2.2.3.1/24 broadcast 2.2.3.255 dev swp2 && ip address add 2.2.4.1/24 broadcast 2.2.4.255 dev swp3 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp4 INFO asyncssh:logging.py:92 [conn=100, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=12] Command: ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp1 && ip address add 2.2.3.1/24 broadcast 2.2.3.255 dev swp2 && ip address add 2.2.4.1/24 broadcast 2.2.4.255 dev swp3 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp4 INFO asyncssh:logging.py:92 [conn=100, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.3.2/24', 'count': 1, 'ip': '2.2.3.2', 'gw': '2.2.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2.2.4.2/24', 'count': 1, 'ip': '2.2.4.2', 'gw': '2.2.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_0.0.0.0/24', 'count': 1, 'ip': '0.0.0.0', 'gw': '0.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=100, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 2.2.2.2 lladdr 02:b8:fb:a3:e7:b6 dev swp1 && ip neigh add 2.2.3.2 lladdr 02:14:6f:b3:39:92 dev swp2 && ip neigh add 2.2.4.2 lladdr 02:99:62:eb:a0:52 dev swp3 INFO asyncssh:logging.py:92 [conn=100, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=14] Command: ip neigh add 2.2.2.2 lladdr 02:b8:fb:a3:e7:b6 dev swp1 && ip neigh add 2.2.3.2 lladdr 02:14:6f:b3:39:92 dev swp2 && ip neigh add 2.2.4.2 lladdr 02:99:62:eb:a0:52 dev swp3 INFO asyncssh:logging.py:92 [conn=100, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=100, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=16] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=100, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=100, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=18] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=100, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=100, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=20] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=100, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=100, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=22] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=100, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.3.1","prefixlen":24,"broadcast":"2.2.3.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.3.1","prefixlen":24,"broadcast":"2.2.3.255","scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=100, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=24] Command: bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=100, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp3 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=100, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=26] Command: ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=100, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.4.1","prefixlen":24,"broadcast":"2.2.4.255","scope":"global","label":"swp3","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp3 ', 'rc': 0, 'result': '[{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.4.1","prefixlen":24,"broadcast":"2.2.4.255","scope":"global","label":"swp3","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a252e110>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 22551637 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 22551637 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 22551637 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=27] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=100, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=28] Command: get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=100, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=28] Channel closed DEBUG agg1:Logger.py:156 16737328 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a252fcd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 22580930 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 22580930 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 22580930 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=29] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=30] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=30] Channel closed DEBUG agg1:Logger.py:156 16738097 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a252c460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 23063777 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 23063777 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 23063777 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=31] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=32] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=32] Channel closed DEBUG agg1:Logger.py:156 16738484 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2613640>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 31228302 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 31228302 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 31228302 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=33] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=34] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=34] Channel closed DEBUG agg1:Logger.py:156 16737916 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2678730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 30770073 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 30770073 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 30770073 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=35] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=36] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=36] Channel closed DEBUG agg1:Logger.py:156 16738359 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2679210>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 25645565 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 25645565 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 25645565 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=37] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=38] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=38] Channel closed DEBUG agg1:Logger.py:156 16738229 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2678460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 25380117 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 25380117 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 25380117 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=39] Channel closed DEBUG agg1:Logger.py:156 get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=100, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=40] Command: get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=100, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=40] Channel closed DEBUG agg1:Logger.py:156 16738151 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=41] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=42] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:03:01 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=100, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=100, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=44] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=100, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=100, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=46] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=100, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=100, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=100, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=48] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=100, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=49] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=50] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=50] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3_exp_counters | 157.47 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5904' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3_exp_counters">Starting testcase:test_hw_drop_l3_exp_counters from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=101] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=101] Local address: 172.17.0.4, port 34938 INFO asyncssh:logging.py:92 [conn=101] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=101] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=101] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:03:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=101, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=101, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=101, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=101, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:03:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=101, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=9] Channel closed DEBUG agg1:Logger.py:156 cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=10] Command: cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=10] Channel closed DEBUG agg1:Logger.py:156 62:81001849 136:1291322263 137:863680771 138:432655295 145:431505612 INFO asyncssh:logging.py:92 [conn=101, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=101, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=12] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=101, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address add 3.3.3.3/24 broadcast 3.3.3.255 dev swp1 && ip address add 0.0.0.0/24 broadcast 0.0.0.255 dev swp2 INFO asyncssh:logging.py:92 [conn=101, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=14] Command: ip address add 3.3.3.3/24 broadcast 3.3.3.255 dev swp1 && ip address add 0.0.0.0/24 broadcast 0.0.0.255 dev swp2 INFO asyncssh:logging.py:92 [conn=101, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_3.3.3.1/24', 'count': 1, 'ip': '3.3.3.1', 'gw': '3.3.3.3', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_0.0.0.1/24', 'count': 1, 'ip': '0.0.0.1', 'gw': '0.0.0.0', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=101, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 3.3.3.1 lladdr 02:0c:83:d8:58:41 dev swp1 && ip neigh add 0.0.0.1 lladdr 02:de:9e:80:e8:2f dev swp2 INFO asyncssh:logging.py:92 [conn=101, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=16] Command: ip neigh add 3.3.3.1 lladdr 02:0c:83:d8:58:41 dev swp1 && ip neigh add 0.0.0.1 lladdr 02:de:9e:80:e8:2f dev swp2 INFO asyncssh:logging.py:92 [conn=101, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=17] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=101, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=18] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=101, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=18] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=101, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=20] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=101, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"3.3.3.3","prefixlen":24,"broadcast":"3.3.3.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"3.3.3.3","prefixlen":24,"broadcast":"3.3.3.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=101, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=22] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=101, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=22] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=101, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=24] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=101, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_3.3.3.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=101, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=25] Channel closed DEBUG agg1:Logger.py:156 cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=26] Command: cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=26] Channel closed DEBUG agg1:Logger.py:156 62:81001849 136:1295271463 137:866314915 138:433973040 145:432828065 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3_exp_counters from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:05:38 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=101, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=101, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=30] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=101, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=101, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=101, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=101, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=101, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=34] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=101, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=35] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=36] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=36] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_diff_source_addrs | 247.46 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_diff_source_addrs">Starting testcase:test_igmp_snooping_diff_source_addrs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6101' coro=<test_igmp_snooping_diff_source_addrs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:363> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=106, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=107] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=107] Local address: 172.17.0.4, port 57886 INFO asyncssh:logging.py:92 [conn=107] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=107] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=107] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:41:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=107, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=107, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=107, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=107, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=107, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=107, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=107, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=107, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=107, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=10] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=107, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":107,"dev":"br0","port":"swp2","grp":"226.1.1.1","src":"80.1.1.5","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":107,"dev":"br0","port":"swp2","grp":"226.1.1.1","state":"temp","filter_mode":"include","source_list":[{"address":"80.1.1.5","timer":"257.74"}],"protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":107,"dev":"br0","port":"swp3","grp":"238.2.2.2","src":"70.1.1.5","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":107,"dev":"br0","port":"swp3","grp":"238.2.2.2","state":"temp","filter_mode":"include","source_list":[{"address":"70.1.1.5","timer":"257.74"}],"protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":107,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 100.90"},{"index":107,"dev":"br0","port":"br0","grp":"ff02::1:ff3f:f37c","state":"temp","flags":[],"vid":1,"timer":" 100.90"}],"router":{"br0":[{"port":"swp1","timer":" 252.74","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2282fb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 26163591 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 13093908 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 13080837 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 27763 INFO asyncssh:logging.py:92 [conn=107, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge mdb delete dev br0 port swp2 grp 226.1.1.1 temp vid 1 INFO asyncssh:logging.py:92 [conn=107, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=12] Command: bridge mdb delete dev br0 port swp2 grp 226.1.1.1 temp vid 1 INFO asyncssh:logging.py:92 [conn=107, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=107, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=107, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"mdb":[{"index":107,"dev":"br0","port":"swp3","grp":"238.2.2.2","src":"70.1.1.5","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":107,"dev":"br0","port":"swp3","grp":"238.2.2.2","state":"temp","filter_mode":"include","source_list":[{"address":"70.1.1.5","timer":"234.50"}],"protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":107,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 77.66"},{"index":107,"dev":"br0","port":"br0","grp":"ff02::1:ff3f:f37c","state":"temp","flags":[],"vid":1,"timer":" 77.66"}],"router":{"br0":[{"port":"swp1","timer":" 229.50","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2281480>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 40735061 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 19244664 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 20366572 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 27763 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_diff_source_addrs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=107, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:45:59 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=107, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=107, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=107, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":107,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=107, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=107, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=107, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=20] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_addr.py::test_ipv4_addr | 150.31 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6158' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_addr">Starting testcase:test_ipv4_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_addr.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=108, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=109] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=109] Local address: 172.17.0.4, port 34866 INFO asyncssh:logging.py:92 [conn=109] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=109] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=109] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:49:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=109, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=109, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=109, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=109, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=109, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=109, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:49:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=109, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=109, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=8] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=109, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=109, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=109, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=109, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=109, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=13] Received channel close DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 10 1.1.1.2 INFO asyncssh:logging.py:92 [conn=109, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=14] Received channel close DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 10 2.2.2.2 INFO asyncssh:logging.py:92 [conn=109, chan=16] Requesting new SSH session DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 10 3.3.3.2 INFO asyncssh:logging.py:92 [conn=109, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=15] Command: echo onl | sudo -S ping -c 10 1.1.1.2 DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 10 4.4.4.2 INFO asyncssh:logging.py:92 [conn=109, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=16] Command: echo onl | sudo -S ping -c 10 2.2.2.2 INFO asyncssh:logging.py:92 [conn=109, chan=17] Command: echo onl | sudo -S ping -c 10 3.3.3.2 INFO asyncssh:logging.py:92 [conn=109, chan=18] Command: echo onl | sudo -S ping -c 10 4.4.4.2 INFO asyncssh:logging.py:92 [conn=109, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=18] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=15] Received channel close DEBUG agg1:Logger.py:156 PING 3.3.3.2 (3.3.3.2) 56(84) bytes of data. 64 bytes from 3.3.3.2: icmp_seq=1 ttl=64 time=0.162 ms 64 bytes from 3.3.3.2: icmp_seq=2 ttl=64 time=0.130 ms 64 bytes from 3.3.3.2: icmp_seq=3 ttl=64 time=0.157 ms 64 bytes from 3.3.3.2: icmp_seq=4 ttl=64 time=0.169 ms 64 bytes from 3.3.3.2: icmp_seq=5 ttl=64 time=0.171 ms 64 bytes from 3.3.3.2: icmp_seq=6 ttl=64 time=0.156 ms 64 bytes from 3.3.3.2: icmp_seq=7 ttl=64 time=0.172 ms 64 bytes from 3.3.3.2: icmp_seq=8 ttl=64 time=0.156 ms 64 bytes from 3.3.3.2: icmp_seq=9 ttl=64 time=0.129 ms 64 bytes from 3.3.3.2: icmp_seq=10 ttl=64 time=0.168 ms --- 3.3.3.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9188ms rtt min/avg/max/mdev = 0.129/0.157/0.172/0.014 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 10 3.3.3.2 on agg1 with rc 0 and out PING 3.3.3.2 (3.3.3.2) 56(84) bytes of data. 64 bytes from 3.3.3.2: icmp_seq=1 ttl=64 time=0.162 ms 64 bytes from 3.3.3.2: icmp_seq=2 ttl=64 time=0.130 ms 64 bytes from 3.3.3.2: icmp_seq=3 ttl=64 time=0.157 ms 64 bytes from 3.3.3.2: icmp_seq=4 ttl=64 time=0.169 ms 64 bytes from 3.3.3.2: icmp_seq=5 ttl=64 time=0.171 ms 64 bytes from 3.3.3.2: icmp_seq=6 ttl=64 time=0.156 ms 64 bytes from 3.3.3.2: icmp_seq=7 ttl=64 time=0.172 ms 64 bytes from 3.3.3.2: icmp_seq=8 ttl=64 time=0.156 ms 64 bytes from 3.3.3.2: icmp_seq=9 ttl=64 time=0.129 ms 64 bytes from 3.3.3.2: icmp_seq=10 ttl=64 time=0.168 ms --- 3.3.3.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9188ms rtt min/avg/max/mdev = 0.129/0.157/0.172/0.014 ms DEBUG agg1:Logger.py:156 PING 4.4.4.2 (4.4.4.2) 56(84) bytes of data. 64 bytes from 4.4.4.2: icmp_seq=1 ttl=64 time=0.138 ms 64 bytes from 4.4.4.2: icmp_seq=2 ttl=64 time=0.120 ms 64 bytes from 4.4.4.2: icmp_seq=3 ttl=64 time=0.163 ms 64 bytes from 4.4.4.2: icmp_seq=4 ttl=64 time=0.169 ms 64 bytes from 4.4.4.2: icmp_seq=5 ttl=64 time=0.173 ms 64 bytes from 4.4.4.2: icmp_seq=6 ttl=64 time=0.156 ms 64 bytes from 4.4.4.2: icmp_seq=7 ttl=64 time=0.172 ms 64 bytes from 4.4.4.2: icmp_seq=8 ttl=64 time=0.179 ms 64 bytes from 4.4.4.2: icmp_seq=9 ttl=64 time=0.163 ms 64 bytes from 4.4.4.2: icmp_seq=10 ttl=64 time=0.167 ms --- 4.4.4.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9187ms rtt min/avg/max/mdev = 0.120/0.160/0.179/0.017 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 10 4.4.4.2 on agg1 with rc 0 and out PING 4.4.4.2 (4.4.4.2) 56(84) bytes of data. 64 bytes from 4.4.4.2: icmp_seq=1 ttl=64 time=0.138 ms 64 bytes from 4.4.4.2: icmp_seq=2 ttl=64 time=0.120 ms 64 bytes from 4.4.4.2: icmp_seq=3 ttl=64 time=0.163 ms 64 bytes from 4.4.4.2: icmp_seq=4 ttl=64 time=0.169 ms 64 bytes from 4.4.4.2: icmp_seq=5 ttl=64 time=0.173 ms 64 bytes from 4.4.4.2: icmp_seq=6 ttl=64 time=0.156 ms 64 bytes from 4.4.4.2: icmp_seq=7 ttl=64 time=0.172 ms 64 bytes from 4.4.4.2: icmp_seq=8 ttl=64 time=0.179 ms 64 bytes from 4.4.4.2: icmp_seq=9 ttl=64 time=0.163 ms 64 bytes from 4.4.4.2: icmp_seq=10 ttl=64 time=0.167 ms --- 4.4.4.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9187ms rtt min/avg/max/mdev = 0.120/0.160/0.179/0.017 ms DEBUG agg1:Logger.py:156 PING 2.2.2.2 (2.2.2.2) 56(84) bytes of data. 64 bytes from 2.2.2.2: icmp_seq=1 ttl=64 time=0.212 ms 64 bytes from 2.2.2.2: icmp_seq=2 ttl=64 time=0.157 ms 64 bytes from 2.2.2.2: icmp_seq=3 ttl=64 time=0.163 ms 64 bytes from 2.2.2.2: icmp_seq=4 ttl=64 time=0.158 ms 64 bytes from 2.2.2.2: icmp_seq=5 ttl=64 time=0.172 ms 64 bytes from 2.2.2.2: icmp_seq=6 ttl=64 time=0.162 ms 64 bytes from 2.2.2.2: icmp_seq=7 ttl=64 time=0.172 ms 64 bytes from 2.2.2.2: icmp_seq=8 ttl=64 time=0.179 ms 64 bytes from 2.2.2.2: icmp_seq=9 ttl=64 time=0.129 ms 64 bytes from 2.2.2.2: icmp_seq=10 ttl=64 time=0.168 ms --- 2.2.2.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9192ms rtt min/avg/max/mdev = 0.129/0.167/0.212/0.021 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 10 2.2.2.2 on agg1 with rc 0 and out PING 2.2.2.2 (2.2.2.2) 56(84) bytes of data. 64 bytes from 2.2.2.2: icmp_seq=1 ttl=64 time=0.212 ms 64 bytes from 2.2.2.2: icmp_seq=2 ttl=64 time=0.157 ms 64 bytes from 2.2.2.2: icmp_seq=3 ttl=64 time=0.163 ms 64 bytes from 2.2.2.2: icmp_seq=4 ttl=64 time=0.158 ms 64 bytes from 2.2.2.2: icmp_seq=5 ttl=64 time=0.172 ms 64 bytes from 2.2.2.2: icmp_seq=6 ttl=64 time=0.162 ms 64 bytes from 2.2.2.2: icmp_seq=7 ttl=64 time=0.172 ms 64 bytes from 2.2.2.2: icmp_seq=8 ttl=64 time=0.179 ms 64 bytes from 2.2.2.2: icmp_seq=9 ttl=64 time=0.129 ms 64 bytes from 2.2.2.2: icmp_seq=10 ttl=64 time=0.168 ms --- 2.2.2.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9192ms rtt min/avg/max/mdev = 0.129/0.167/0.212/0.021 ms INFO asyncssh:logging.py:92 [conn=109, chan=15] Channel closed DEBUG agg1:Logger.py:156 PING 1.1.1.2 (1.1.1.2) 56(84) bytes of data. 64 bytes from 1.1.1.2: icmp_seq=1 ttl=64 time=0.169 ms 64 bytes from 1.1.1.2: icmp_seq=2 ttl=64 time=0.124 ms 64 bytes from 1.1.1.2: icmp_seq=3 ttl=64 time=0.169 ms 64 bytes from 1.1.1.2: icmp_seq=4 ttl=64 time=0.169 ms 64 bytes from 1.1.1.2: icmp_seq=5 ttl=64 time=0.174 ms 64 bytes from 1.1.1.2: icmp_seq=6 ttl=64 time=0.162 ms 64 bytes from 1.1.1.2: icmp_seq=7 ttl=64 time=0.172 ms 64 bytes from 1.1.1.2: icmp_seq=8 ttl=64 time=0.179 ms 64 bytes from 1.1.1.2: icmp_seq=9 ttl=64 time=0.135 ms 64 bytes from 1.1.1.2: icmp_seq=10 ttl=64 time=0.146 ms --- 1.1.1.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9190ms rtt min/avg/max/mdev = 0.124/0.159/0.179/0.024 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 10 1.1.1.2 on agg1 with rc 0 and out PING 1.1.1.2 (1.1.1.2) 56(84) bytes of data. 64 bytes from 1.1.1.2: icmp_seq=1 ttl=64 time=0.169 ms 64 bytes from 1.1.1.2: icmp_seq=2 ttl=64 time=0.124 ms 64 bytes from 1.1.1.2: icmp_seq=3 ttl=64 time=0.169 ms 64 bytes from 1.1.1.2: icmp_seq=4 ttl=64 time=0.169 ms 64 bytes from 1.1.1.2: icmp_seq=5 ttl=64 time=0.174 ms 64 bytes from 1.1.1.2: icmp_seq=6 ttl=64 time=0.162 ms 64 bytes from 1.1.1.2: icmp_seq=7 ttl=64 time=0.172 ms 64 bytes from 1.1.1.2: icmp_seq=8 ttl=64 time=0.179 ms 64 bytes from 1.1.1.2: icmp_seq=9 ttl=64 time=0.135 ms 64 bytes from 1.1.1.2: icmp_seq=10 ttl=64 time=0.146 ms --- 1.1.1.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9190ms rtt min/avg/max/mdev = 0.124/0.159/0.179/0.024 ms -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_addr.py INFO asyncssh:logging.py:92 [conn=109, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=19] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=109, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=109, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=20] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:51:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:52:00 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=109, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=109, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=26] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=109, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=109, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=109, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=109, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=109, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=109, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=30] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=109, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=30] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_dynamic_arp | 147.27 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6204' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_dynamic_arp">Starting testcase:test_ipv4_dynamic_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=110] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=110] Local address: 172.17.0.4, port 40426 INFO asyncssh:logging.py:92 [conn=110] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=110] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=110] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:52:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=110, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=110, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=110, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=110, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=110, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=110, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:52:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=110, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=110, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=110, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=110, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=110, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a268d630>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 <-> 10.36.118.199:1:6 Tx 8868 Rx 8868 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:7 <-> 10.36.118.199:1:8 Tx 8868 Rx 8868 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=110, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=12] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=110, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=110, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=110, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=16] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=110, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=110, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=18] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=110, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=20] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_dynamic_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=110, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=21] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=110, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=110, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=22] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:54:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:54:27 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=110, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=110, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=28] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=110, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=110, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=110, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=110, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=110, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=32] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=110, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=32] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_static_arp | 2.50 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6248' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_arp">Starting testcase:test_ipv4_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=111] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=111] Local address: 172.17.0.4, port 52970 INFO asyncssh:logging.py:92 [conn=111] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=111] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=111] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:54:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=111, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=111, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=111, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=111, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=111, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=111, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:54:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=111, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=111, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=111, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=111, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=111, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=111, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=111, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=111, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=111, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=111, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=18] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=111, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=111, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=20] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=111, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=111, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=23] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=111, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=111, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=24] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:54:30 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:54:30 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=111, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=111, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=30] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=111, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=111, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=111, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=111, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=111, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=34] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=111, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=34] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_replace_dyn_stat_arp | 144.66 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6294' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_replace_dyn_stat_arp">Starting testcase:test_ipv4_replace_dyn_stat_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=112] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=112] Local address: 172.17.0.4, port 56750 INFO asyncssh:logging.py:92 [conn=112] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=112] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=112] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:54:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=112, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=112, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=112, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=112, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=112, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=112, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:54:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=112, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=112, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=112, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=112, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=112, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=112, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=112, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=112, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=112, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=112, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=112, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=18] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=112, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=112, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=20] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=112, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a268d0c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 <-> 10.36.118.199:1:6 Tx 8820 Rx 8820 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:7 <-> 10.36.118.199:1:8 Tx 8820 Rx 8820 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=112, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=24] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=112, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=26] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=112, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=112, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=28] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=112, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=112, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=30] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=112, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=32] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=112, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=112, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=34] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=112, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=36] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=112, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=38] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=112, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=112, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=40] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=112, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=112, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=42] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=112, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=44] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_replace_dyn_stat_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=112, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=45] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=112, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=46] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=112, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=46] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=47] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=48] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:56:54 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=49] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=50] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:56:55 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=112, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=112, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=52] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=112, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=112, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=54] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=112, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=54] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=112, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=112, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=56] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=112, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=56] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_static_arp_with_traffic | 146.63 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6362' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_arp_with_traffic">Starting testcase:test_ipv4_static_arp_with_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=113] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=113] Local address: 172.17.0.4, port 58580 INFO asyncssh:logging.py:92 [conn=113] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=113] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=113] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:56:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=113, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=113, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=113, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=113, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=113, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=113, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:56:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=113, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=113, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=113, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=113, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=113, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=113, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=113, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp3 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp4 INFO asyncssh:logging.py:92 [conn=113, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2613df0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 <-> 10.36.118.199:1:6 Tx 8828 Rx 8828 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:7 <-> 10.36.118.199:1:8 Tx 8828 Rx 8828 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=113, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=113, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=113, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=18] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=113, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=113, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=20] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=113, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_arp_with_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=113, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=23] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=113, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=113, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=24] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:59:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:59:21 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=113, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=113, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=30] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=113, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=113, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=113, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=113, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=113, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=34] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=113, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=34] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_static_route_over_static_arp | 146.41 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6408' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_route_over_static_arp">Starting testcase:test_ipv4_static_route_over_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=114] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=114] Local address: 172.17.0.4, port 56096 INFO asyncssh:logging.py:92 [conn=114] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=114] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=114] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:59:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=114, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=114, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=114, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=114, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=114, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=114, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 21:59:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=114, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=114, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=114, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=114, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=114, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=114, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=114, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=12] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=114, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=12] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=114, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=14] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=114, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=16] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=114, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=18] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=114, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=20] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=114, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip route add 20.0.0.1 nexthop via 1.1.1.2 dev swp1 && ip route add 21.0.0.1 nexthop via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=24] Command: ip route add 20.0.0.1 nexthop via 1.1.1.2 dev swp1 && ip route add 21.0.0.1 nexthop via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"20.0.0.1","gateway":"1.1.1.2","dev":"swp1","flags":["offload","rt_offload"]},{"dst":"21.0.0.1","gateway":"2.2.2.2","dev":"swp2","flags":["offload","rt_offload"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 21.0.0.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 -> 20.0.0.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a27084f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 21.0.0.1 Tx 4423 Rx 4423 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:6 -> 20.0.0.1 Tx 4423 Rx 4423 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:7 <-> 10.36.118.199:1:8 Tx 8846 Rx 8846 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=114, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=28] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=114, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip route delete 20.0.0.1 nexthop via 1.1.1.2 dev swp1 && ip route delete 21.0.0.1 nexthop via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=30] Command: ip route delete 20.0.0.1 nexthop via 1.1.1.2 dev swp1 && ip route delete 21.0.0.1 nexthop via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=114, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=32] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=114, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=34] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=114, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=114, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=36] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=114, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=114, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=38] Command: ip neigh delete 4.4.4.2 dev swp4 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=114, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=40] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_route_over_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=114, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=41] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=114, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=114, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=42] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=44] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:01:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=45] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=46] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:01:48 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=114, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=114, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=48] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=114, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=114, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=50] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=114, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=50] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=114, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=114, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=52] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=114, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=52] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_arp_reachable_timeout | 153.70 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6472' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_arp_reachable_timeout">Starting testcase:test_ipv4_arp_reachable_timeout from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=115] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=115] Local address: 172.17.0.4, port 35666 INFO asyncssh:logging.py:92 [conn=115] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=115] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=115] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:01:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=115, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=115, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=115, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=115, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=115, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=115, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:01:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=115, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=115, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=115, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=115, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=115, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=115, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.neigh.swp1.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp2.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp3.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp4.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=115, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=12] Command: sysctl net.ipv4.neigh.swp1.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp2.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp3.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp4.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=115, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.neigh.swp1.base_reachable_time_ms = 30000 net.ipv4.neigh.swp2.base_reachable_time_ms = 30000 net.ipv4.neigh.swp3.base_reachable_time_ms = 30000 net.ipv4.neigh.swp4.base_reachable_time_ms = 30000 INFO asyncssh:logging.py:92 [conn=115, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=13] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.neigh.swp1.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp2.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp3.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp4.base_reachable_time_ms=1000 INFO asyncssh:logging.py:92 [conn=115, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=14] Command: sysctl net.ipv4.neigh.swp1.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp2.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp3.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp4.base_reachable_time_ms=1000 INFO asyncssh:logging.py:92 [conn=115, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=14] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.neigh.swp1.base_reachable_time_ms = 1000 net.ipv4.neigh.swp2.base_reachable_time_ms = 1000 net.ipv4.neigh.swp3.base_reachable_time_ms = 1000 net.ipv4.neigh.swp4.base_reachable_time_ms = 1000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2253ca0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 <-> 10.36.118.199:1:6 Tx 7764 Rx 7764 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:7 <-> 10.36.118.199:1:8 Tx 7764 Rx 7764 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=115, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=115, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=17] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.neigh.swp1.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp2.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp3.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp4.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=115, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=18] Command: sysctl net.ipv4.neigh.swp1.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp2.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp3.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp4.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=115, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=18] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.neigh.swp1.base_reachable_time_ms = 30000 net.ipv4.neigh.swp2.base_reachable_time_ms = 30000 net.ipv4.neigh.swp3.base_reachable_time_ms = 30000 net.ipv4.neigh.swp4.base_reachable_time_ms = 30000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a268e200>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 <-> 10.36.118.199:1:6 Tx 3976 Rx 3976 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:7 <-> 10.36.118.199:1:8 Tx 3976 Rx 3976 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=115, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=20] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_arp_reachable_timeout from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=115, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=21] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=115, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=115, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=22] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:04:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:04:21 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=115, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=115, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=28] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=115, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=115, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=115, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=115, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=115, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=32] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=115, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=32] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_arp_ageing | 232.29 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6516' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_arp_ageing">Starting testcase:test_ipv4_arp_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=116] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=116] Local address: 172.17.0.4, port 47952 INFO asyncssh:logging.py:92 [conn=116] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=116] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=116] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:04:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=116, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=116, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=116, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=116, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=116, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=116, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:04:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=116, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=116, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=116, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=116, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=116, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=116, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1&& sysctl net.ipv4.neigh.default.gc_stale_time INFO asyncssh:logging.py:92 [conn=116, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=12] Command: sysctl net.ipv4.neigh.default.gc_thresh1&& sysctl net.ipv4.neigh.default.gc_stale_time INFO asyncssh:logging.py:92 [conn=116, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_stale_time = 60 INFO asyncssh:logging.py:92 [conn=116, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=13] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1=0&& sysctl net.ipv4.neigh.default.gc_stale_time=1 INFO asyncssh:logging.py:92 [conn=116, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=14] Command: sysctl net.ipv4.neigh.default.gc_thresh1=0&& sysctl net.ipv4.neigh.default.gc_stale_time=1 INFO asyncssh:logging.py:92 [conn=116, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=14] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 0 net.ipv4.neigh.default.gc_stale_time = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2610820>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 <-> 10.36.118.199:1:6 Tx 8928 Rx 8928 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:7 <-> 10.36.118.199:1:8 Tx 8928 Rx 8928 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=116, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=116, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=116, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=116, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=17] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1=128&& sysctl net.ipv4.neigh.default.gc_stale_time=60 INFO asyncssh:logging.py:92 [conn=116, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=18] Command: sysctl net.ipv4.neigh.default.gc_thresh1=128&& sysctl net.ipv4.neigh.default.gc_stale_time=60 INFO asyncssh:logging.py:92 [conn=116, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=18] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_stale_time = 60 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_arp_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=116, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=19] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=116, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=116, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=20] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:08:13 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:08:14 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=116, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=116, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=26] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=116, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=116, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=116, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=116, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=116, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=30] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=116, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=30] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_best_match.py::test_ipv4_bm_traffic_forwarding | 134.52 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6558' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_bm_traffic_forwarding">Starting testcase:test_ipv4_bm_traffic_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_best_match.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=117] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=117] Local address: 172.17.0.4, port 46712 INFO asyncssh:logging.py:92 [conn=117] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=117] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=117] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:08:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=117, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=117, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=117, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=117, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=117, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=117, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:08:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=117, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=117, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=8] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=117, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=8] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=117, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=117, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=10] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=117, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=117, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=117, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=12] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=117, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=12] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=117, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=117, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=14] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=117, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=117, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=117, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=16] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=117, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.1.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=117, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=18] Command: ip address add 192.168.1.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=117, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_20.1.1.2/24', 'count': 1, 'ip': '20.1.1.2', 'gw': '20.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_192.168.1.3/24', 'count': 1, 'ip': '192.168.1.3', 'gw': '192.168.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=117, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip address add 20.1.1.1/24 dev swp1 metric 20 && ip address add 20.1.1.1/24 dev lo metric 10 INFO asyncssh:logging.py:92 [conn=117, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=20] Command: ip address add 20.1.1.1/24 dev swp1 metric 20 && ip address add 20.1.1.1/24 dev lo metric 10 INFO asyncssh:logging.py:92 [conn=117, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=22] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"20.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"20.1.1.1","metric":20,"flags":[]},{"dst":"192.168.1.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"192.168.1.1","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 -> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_20.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_192.168.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2251f00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:6 -> 10.36.118.199:1:5 Tx 4456 Rx 0 Frames Delta 4456 Loss 100.000 INFO asyncssh:logging.py:92 [conn=117, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip address delete 20.1.1.1/24 dev lo INFO asyncssh:logging.py:92 [conn=117, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=24] Command: ip address delete 20.1.1.1/24 dev lo INFO asyncssh:logging.py:92 [conn=117, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"20.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"20.1.1.1","metric":20,"flags":["rt_trap"]},{"dst":"192.168.1.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"192.168.1.1","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2253ca0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:6 -> 10.36.118.199:1:5 Tx 8077 Rx 8077 Frames Delta 0 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_bm_traffic_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_best_match.py INFO asyncssh:logging.py:92 [conn=117, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=27] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=117, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=117, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=28] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:10:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:10:28 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=117, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=117, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=34] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=117, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=117, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=117, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=117, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=117, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=38] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=117, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=38] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_a_dis | 115.45 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6608' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_a_dis">Starting testcase:test_ipv4_class_a_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=118] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=118] Local address: 172.17.0.4, port 54718 INFO asyncssh:logging.py:92 [conn=118] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=118] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=118] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:10:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=118, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=118, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=118, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=118, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=118, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=118, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:10:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=118, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=118, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=118, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/8 dev swp1 && ip address add 0.0.0.1/8 dev swp2 INFO asyncssh:logging.py:92 [conn=118, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=10] Command: ip address add 1.1.1.1/8 dev swp1 && ip address add 0.0.0.1/8 dev swp2 INFO asyncssh:logging.py:92 [conn=118, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/8', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_0.0.0.2/8', 'count': 1, 'ip': '0.0.0.2', 'gw': '0.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/8 to 10.36.118.199:1:6_0.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_0.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22515a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 10.36.118.199:1:6 SIP-DIP 1.1.1.2-0.0.0.2 Tx 4446 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_a_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=118, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=118, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=118, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:12:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:12:24 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=118, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=118, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=18] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=118, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=118, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=118, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=118, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=118, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=22] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=118, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_b_dis | 113.32 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6642' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_b_dis">Starting testcase:test_ipv4_class_b_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=119] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=119] Local address: 172.17.0.4, port 34506 INFO asyncssh:logging.py:92 [conn=119] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=119] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=119] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:12:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=119, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=119, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=119, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=119, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=119, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=119, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:12:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=119, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=119, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=119, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=119, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 128.1.1.1/16 dev swp1 && ip address add 191.255.1.1/16 dev swp2 INFO asyncssh:logging.py:92 [conn=119, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=10] Command: ip address add 128.1.1.1/16 dev swp1 && ip address add 191.255.1.1/16 dev swp2 INFO asyncssh:logging.py:92 [conn=119, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_128.1.1.2/16', 'count': 1, 'ip': '128.1.1.2', 'gw': '128.1.1.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_191.255.1.2/16', 'count': 1, 'ip': '191.255.1.2', 'gw': '191.255.1.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_128.1.1.2/16 to 10.36.118.199:1:6_191.255.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_128.1.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_191.255.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2250640>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 10.36.118.199:1:6 SIP-DIP 128.1.1.2-191.255.1.2 Tx 4514 Rx 4514 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_b_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=119, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=119, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=119, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:14:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:14:17 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=119, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=119, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=18] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=119, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=119, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=119, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=119, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=119, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=119, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=22] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=119, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_c_dis | 116.39 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6676' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_c_dis">Starting testcase:test_ipv4_class_c_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=120] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=120] Local address: 172.17.0.4, port 44720 INFO asyncssh:logging.py:92 [conn=120] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=120] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=120] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:14:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=120, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=120, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=120, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=120, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=120, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=120, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:14:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=120, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=120, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=120, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.1.1.1/24 dev swp1 && ip address add 223.255.255.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=120, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=10] Command: ip address add 192.1.1.1/24 dev swp1 && ip address add 223.255.255.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=120, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_192.1.1.2/24', 'count': 1, 'ip': '192.1.1.2', 'gw': '192.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_223.255.255.2/24', 'count': 1, 'ip': '223.255.255.2', 'gw': '223.255.255.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_192.1.1.2/24 to 10.36.118.199:1:6_223.255.255.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_223.255.255.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2253250>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 10.36.118.199:1:6 SIP-DIP 192.1.1.2-223.255.255.2 Tx 4470 Rx 4470 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_c_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=120, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:16:13 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:16:13 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=120, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=120, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=18] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=120, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=120, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=120, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=120, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=120, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=22] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=120, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_d_dis | 2.03 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6710' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_d_dis">Starting testcase:test_ipv4_class_d_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=121] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=121] Local address: 172.17.0.4, port 37030 INFO asyncssh:logging.py:92 [conn=121] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=121] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=121] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:16:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=121, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=121, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=121, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=121, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=121, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=121, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:16:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=121, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip address add 224.0.0.1/8 dev swp1 INFO asyncssh:logging.py:92 [conn=121, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=8] Command: ip address add 224.0.0.1/8 dev swp1 INFO asyncssh:logging.py:92 [conn=121, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=121, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=8] Channel closed DEBUG agg1:Logger.py:156 RTNETLINK answers: Invalid argument -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_d_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=121, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=121, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=10] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=121, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:16:15 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:16:15 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=121, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=121, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=16] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=121, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=121, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=121, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=121, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=121, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=121, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=20] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=121, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=20] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_e_dis | 211.56 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6742' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_e_dis">Starting testcase:test_ipv4_class_e_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=122] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=122] Local address: 172.17.0.4, port 37040 INFO asyncssh:logging.py:92 [conn=122] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=122] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=122] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:16:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=122, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=122, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=122, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=122, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=122, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=122, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:16:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=122, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=122, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=122, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=122, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 240.0.0.0/32 dev swp1 && ip address add 223.255.254.1/32 dev swp2 INFO asyncssh:logging.py:92 [conn=122, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=10] Command: ip address add 240.0.0.0/32 dev swp1 && ip address add 223.255.254.1/32 dev swp2 INFO asyncssh:logging.py:92 [conn=122, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_240.0.0.1/32', 'count': 1, 'ip': '240.0.0.1', 'gw': '240.0.0.0', 'plen': 32, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_223.255.254.2/32', 'count': 1, 'ip': '223.255.254.2', 'gw': '223.255.254.1', 'plen': 32, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_240.0.0.1/32 to 10.36.118.199:1:6_223.255.254.2/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_240.0.0.1/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_223.255.254.2/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a276fd30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 10.36.118.199:1:6 SIP-DIP 240.0.0.1-223.255.254.2 Tx 4459 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_e_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=122, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=122, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=122, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:19:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:19:47 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=122, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=122, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=18] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=122, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=122, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=122, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=122, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=122, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=122, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=22] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=122, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_crc.py::test_ipv4_checksum | 146.34 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6776' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_checksum">Starting testcase:test_ipv4_checksum from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_crc.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=123] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=123] Local address: 172.17.0.4, port 59924 INFO asyncssh:logging.py:92 [conn=123] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=123] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=123] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:19:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=123, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=123, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=123, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=123, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=123, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=123, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:19:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=123, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=123, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=123, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=123, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=123, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 bad crc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 good crc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=123, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=11] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=123, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=12] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=123, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=12] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 1674827340342 bad_octets_received: 22477138 mac_trans_error: 0 broadcast_frames_received: 12266383 multicast_frames_received: 438559274 frames_64_octets: 2682 frames_65_to_127_octets: 1898384 frames_128_to_255_octets: 2342192472 frames_256_to_511_octets: 804882344 frames_512_to_1023_octets: 703633160 frames_1024_to_max_octets: 390797306 excessive_collision: 0 multicast_frames_sent: 2807 broadcast_frames_sent: 1540 fc_sent: 0 fc_received: 0 buffer_overrun: 1841 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 244 collisions: 0 late_collision: 0 unicast_frames_received: 3783093356 unicast_frames_sent: 9482744 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4288443197 INFO asyncssh:logging.py:92 [conn=123, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=13] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=123, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=14] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=123, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=14] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 333451286656 bad_octets_received: 22352210 mac_trans_error: 0 broadcast_frames_received: 3426704 multicast_frames_received: 4657499 frames_64_octets: 2391 frames_65_to_127_octets: 1147473 frames_128_to_255_octets: 1330102079 frames_256_to_511_octets: 5467956 frames_512_to_1023_octets: 287484301 frames_1024_to_max_octets: 56499292 excessive_collision: 0 multicast_frames_sent: 270911951 broadcast_frames_sent: 8701 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 1315388624 unicast_frames_sent: 86310013 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 158830436690 INFO asyncssh:logging.py:92 [conn=123, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=15] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=123, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=16] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=123, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=16] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 287915251592 bad_octets_received: 22352210 mac_trans_error: 0 broadcast_frames_received: 1791491 multicast_frames_received: 2435391 frames_64_octets: 1633 frames_65_to_127_octets: 1147199 frames_128_to_255_octets: 1366921954 frames_256_to_511_octets: 919 frames_512_to_1023_octets: 280953991 frames_1024_to_max_octets: 20663884 excessive_collision: 0 multicast_frames_sent: 278099325 broadcast_frames_sent: 4636 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 1265949419 unicast_frames_sent: 121409318 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 166985756734 INFO asyncssh:logging.py:92 [conn=123, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=123, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=18] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=123, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=18] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 32581784328 bad_octets_received: 22352210 mac_trans_error: 0 broadcast_frames_received: 1791473 multicast_frames_received: 2435391 frames_64_octets: 1632 frames_65_to_127_octets: 1147204 frames_128_to_255_octets: 125252229 frames_256_to_511_octets: 900 frames_512_to_1023_octets: 145440686 frames_1024_to_max_octets: 20663884 excessive_collision: 0 multicast_frames_sent: 142586603 broadcast_frames_sent: 4652 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 27582382 unicast_frames_sent: 118106034 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 97176767058 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=123, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=19] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=123, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=20] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=123, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=20] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 1674827340342 bad_octets_received: 24720210 mac_trans_error: 0 broadcast_frames_received: 12266383 multicast_frames_received: 438559274 frames_64_octets: 2682 frames_65_to_127_octets: 1898384 frames_128_to_255_octets: 2342192473 frames_256_to_511_octets: 804882344 frames_512_to_1023_octets: 703637541 frames_1024_to_max_octets: 390797306 excessive_collision: 0 multicast_frames_sent: 2808 broadcast_frames_sent: 1540 fc_sent: 0 fc_received: 0 buffer_overrun: 1841 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 4625 collisions: 0 late_collision: 0 unicast_frames_received: 3783093356 unicast_frames_sent: 9482744 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4288443439 INFO asyncssh:logging.py:92 [conn=123, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=21] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=123, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=22] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=123, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=22] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 333451286656 bad_octets_received: 24595282 mac_trans_error: 0 broadcast_frames_received: 3426704 multicast_frames_received: 4657499 frames_64_octets: 2391 frames_65_to_127_octets: 1147474 frames_128_to_255_octets: 1330102080 frames_256_to_511_octets: 5467956 frames_512_to_1023_octets: 287488682 frames_1024_to_max_octets: 56499292 excessive_collision: 0 multicast_frames_sent: 270911953 broadcast_frames_sent: 8701 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 4381 collisions: 0 late_collision: 0 unicast_frames_received: 1315388624 unicast_frames_sent: 86310013 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 158830437006 INFO asyncssh:logging.py:92 [conn=123, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=23] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=123, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=24] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=123, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=24] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 287917494728 bad_octets_received: 22352210 mac_trans_error: 0 broadcast_frames_received: 1791491 multicast_frames_received: 2435391 frames_64_octets: 1635 frames_65_to_127_octets: 1147200 frames_128_to_255_octets: 1366921955 frames_256_to_511_octets: 919 frames_512_to_1023_octets: 280962753 frames_1024_to_max_octets: 20663884 excessive_collision: 0 multicast_frames_sent: 278099327 broadcast_frames_sent: 4636 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 1265953801 unicast_frames_sent: 121413700 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 166988000186 INFO asyncssh:logging.py:92 [conn=123, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=25] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=123, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=26] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=123, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=26] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 32584027464 bad_octets_received: 22352210 mac_trans_error: 0 broadcast_frames_received: 1791473 multicast_frames_received: 2435391 frames_64_octets: 1634 frames_65_to_127_octets: 1147205 frames_128_to_255_octets: 125252230 frames_256_to_511_octets: 900 frames_512_to_1023_octets: 145449448 frames_1024_to_max_octets: 20663884 excessive_collision: 0 multicast_frames_sent: 142586605 broadcast_frames_sent: 4652 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 27586764 unicast_frames_sent: 118110416 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 97179010510 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a268e920>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 bad crc SIP-DIP 1.1.1.2-2.2.2.2 Tx 4381 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 bad crc SIP-DIP 2.2.2.2-1.1.1.2 Tx 4381 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 good crc SIP-DIP 3.3.3.2-4.4.4.2 Tx 4381 Rx 4381 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 good crc SIP-DIP 4.4.4.2-3.3.3.2 Tx 4381 Rx 4381 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_checksum from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_crc.py INFO asyncssh:logging.py:92 [conn=123, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=27] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=123, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=123, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=28] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:22:13 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:22:13 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=123, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=123, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=34] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=123, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=123, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=123, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=123, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=123, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=38] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=123, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=38] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_en_dis_fwd.py::test_ipv4_en_dis_fwd | 157.65 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6826' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_en_dis_fwd">Starting testcase:test_ipv4_en_dis_fwd from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_en_dis_fwd.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=124] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=124] Local address: 172.17.0.4, port 60002 INFO asyncssh:logging.py:92 [conn=124] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=124] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=124] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:22:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=124, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=124, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=124, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=124, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=124, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=124, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:22:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=124, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=124, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=124, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=124, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=124, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2613130>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 1.1.1.2-2.2.2.2 Tx 4310 Rx 4310 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2.2.2.2-1.1.1.2 Tx 4310 Rx 4310 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 SIP-DIP 3.3.3.2-4.4.4.2 Tx 4310 Rx 4310 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 SIP-DIP 4.4.4.2-3.3.3.2 Tx 4310 Rx 4310 Loss 0.000 INFO asyncssh:logging.py:92 [conn=124, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=12] Command: sysctl -n net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=12] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=124, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 && ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 INFO asyncssh:logging.py:92 [conn=124, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=14] Command: ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 && ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 INFO asyncssh:logging.py:92 [conn=124, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a27c4d90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 1.1.1.2-2.2.2.2 Tx 8074 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2.2.2.2-1.1.1.2 Tx 8074 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 SIP-DIP 3.3.3.2-4.4.4.2 Tx 8074 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:8 SIP-DIP 4.4.4.2-3.3.3.2 Tx 8074 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_en_dis_fwd from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_en_dis_fwd.py INFO asyncssh:logging.py:92 [conn=124, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=15] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=16] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=16] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=18] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:24:50 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:24:50 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=124, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=124, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=22] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=124, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=124, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=24] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=124, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=124, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=124, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=26] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=124, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=26] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_gw.py::test_ipv4_default_gw | 209.39 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6862' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_default_gw">Starting testcase:test_ipv4_default_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=125] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=125] Local address: 172.17.0.4, port 44678 INFO asyncssh:logging.py:92 [conn=125] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=125] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=125] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:24:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=125, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=2] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=125, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=4] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=4] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=125, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=6] Command: ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:24:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=125, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=125, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=125, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=10] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=125, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=125, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=125, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:24:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=125, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=125, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=16] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=125, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=125, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=18] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=125, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=125, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=20] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=125, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=125, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=22] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=125, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=125, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=24] Command: bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=125, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=24] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp3 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=125, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=26] Command: ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=125, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp3 ', 'rc': 0, 'result': '[{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=27] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp4 INFO asyncssh:logging.py:92 [conn=125, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=28] Command: bridge -j vlan show dev swp4 INFO asyncssh:logging.py:92 [conn=125, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=28] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp4 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp4 INFO asyncssh:logging.py:92 [conn=125, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=30] Command: ip -j address show swp4 INFO asyncssh:logging.py:92 [conn=125, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp4 ', 'rc': 0, 'result': '[{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=125, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=32] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=125, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=125, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=34] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=125, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> 10.36.118.199:1:5 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> 10.36.118.199:1:6 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> 10.36.118.199:1:7 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=125, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip route add default metric 100 via 1.1.1.2 dev swp1 && ip route add default metric 200 via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=125, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=36] Command: ip route add default metric 100 via 1.1.1.2 dev swp1 && ip route add default metric 200 via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=125, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2252110>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:8 -> 10.36.118.199:1:5 5.5.5.5 Tx 4360 Rx 4360 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:8 -> 10.36.118.199:1:6 5.5.5.5 Tx 4360 Rx 0 Frames Delta 4360 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:8 -> 10.36.118.199:1:7 5.5.5.5 Tx 4360 Rx 0 Frames Delta 4360 Loss 100.000 INFO asyncssh:logging.py:92 [conn=125, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=38] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"1.1.1.2","dev":"swp1","metric":100,"flags":["offload","rt_offload"]},{"dst":"default","gateway":"2.2.2.2","dev":"swp2","metric":200,"flags":[]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=125, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip route add default via 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=125, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=40] Command: ip route add default via 3.3.3.2 dev swp3 INFO asyncssh:logging.py:92 [conn=125, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a26110c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:8 -> 10.36.118.199:1:5 5.5.5.5 Tx 8123 Rx 0 Frames Delta 8123 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:8 -> 10.36.118.199:1:6 5.5.5.5 Tx 8123 Rx 0 Frames Delta 8123 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:8 -> 10.36.118.199:1:7 5.5.5.5 Tx 8123 Rx 8123 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=125, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=42] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"3.3.3.2","dev":"swp3","flags":["offload","rt_offload"]},{"dst":"default","gateway":"1.1.1.2","dev":"swp1","metric":100,"flags":["offload"]},{"dst":"default","gateway":"2.2.2.2","dev":"swp2","metric":200,"flags":[]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_default_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py INFO asyncssh:logging.py:92 [conn=125, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=43] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=125, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=44] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=125, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=44] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=45] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=46] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:28:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=47] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=48] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:28:20 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=125, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=125, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=50] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=125, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=125, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=52] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=125, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=125, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=125, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=54] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=125, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=56] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=56] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=125, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=58] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=58] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=125, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=60] Command: ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=60] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_gw.py::test_ipv4_not_connected_gw | 2.12 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6938' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_not_connected_gw">Starting testcase:test_ipv4_not_connected_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=126] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=126] Local address: 172.17.0.4, port 37940 INFO asyncssh:logging.py:92 [conn=126] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=126] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=126] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:28:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=126, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=126, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=126, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=126, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=126, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=126, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:28:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=126, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 INFO asyncssh:logging.py:92 [conn=126, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=8] Command: ip address add 1.1.1.1/24 dev swp1 INFO asyncssh:logging.py:92 [conn=126, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip route add default via 5.5.5.5 dev swp1 INFO asyncssh:logging.py:92 [conn=126, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=10] Command: ip route add default via 5.5.5.5 dev swp1 INFO asyncssh:logging.py:92 [conn=126, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=10] Channel closed DEBUG agg1:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=126, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.2/24 dev swp2 INFO asyncssh:logging.py:92 [conn=126, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=12] Command: ip address add 2.2.2.2/24 dev swp2 INFO asyncssh:logging.py:92 [conn=126, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip route add default via 5.5.5.5 dev swp2 INFO asyncssh:logging.py:92 [conn=126, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=14] Command: ip route add default via 5.5.5.5 dev swp2 INFO asyncssh:logging.py:92 [conn=126, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=14] Channel closed DEBUG agg1:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=126, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip address add 3.3.3.3/24 dev swp3 INFO asyncssh:logging.py:92 [conn=126, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=16] Command: ip address add 3.3.3.3/24 dev swp3 INFO asyncssh:logging.py:92 [conn=126, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip route add default via 5.5.5.5 dev swp3 INFO asyncssh:logging.py:92 [conn=126, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=18] Command: ip route add default via 5.5.5.5 dev swp3 INFO asyncssh:logging.py:92 [conn=126, chan=18] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=18] Channel closed DEBUG agg1:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=126, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip address add 4.4.4.4/24 dev swp4 INFO asyncssh:logging.py:92 [conn=126, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=20] Command: ip address add 4.4.4.4/24 dev swp4 INFO asyncssh:logging.py:92 [conn=126, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip route add default via 5.5.5.5 dev swp4 INFO asyncssh:logging.py:92 [conn=126, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=22] Command: ip route add default via 5.5.5.5 dev swp4 INFO asyncssh:logging.py:92 [conn=126, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=22] Channel closed DEBUG agg1:Logger.py:156 Error: Nexthop has invalid gateway. -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_not_connected_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py INFO asyncssh:logging.py:92 [conn=126, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=23] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=126, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=126, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=24] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:28:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:28:23 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=126, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=126, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=30] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=126, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=126, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=126, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=126, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=126, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=34] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=126, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=34] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_icmp_disabled | 157.63 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6984' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_icmp_disabled">Starting testcase:test_ipv4_icmp_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=127] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=127] Local address: 172.17.0.4, port 37946 INFO asyncssh:logging.py:92 [conn=127] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=127] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=127] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:28:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=127, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=127, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=127, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=127, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=127, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=127, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:28:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=127, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=127, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=127, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=127, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=127, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=127, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.icmp_echo_ignore_all INFO asyncssh:logging.py:92 [conn=127, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=12] Command: sysctl -n net.ipv4.icmp_echo_ignore_all INFO asyncssh:logging.py:92 [conn=127, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=12] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=127, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=13] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.icmp_echo_ignore_all=1 INFO asyncssh:logging.py:92 [conn=127, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=14] Command: sysctl net.ipv4.icmp_echo_ignore_all=1 INFO asyncssh:logging.py:92 [conn=127, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=14] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.icmp_echo_ignore_all = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2251960>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ipv4 SIP-DIP 1.1.1.2-2.2.2.2 Tx 447 Rx 447 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:5_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:6_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:7_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:8_4.4.4.2/24 to 4.4.4.1 WARNING DENT:Logger.py:111 [Ixia Traffic Generator] Some pings did not reach their destination [{'ixia': {'command': 'send_ping&& send_ping&& send_ping&& send_ping', 'rc': 1, 'result': [{'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 1.1.1.2 -> 1.1.1.1 failed - timeout', 'port': '10.36.118.199:1:5', 'src_ip': '1.1.1.2', 'dst_ip': '1.1.1.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 2.2.2.2 -> 2.2.2.1 failed - timeout', 'port': '10.36.118.199:1:6', 'src_ip': '2.2.2.2', 'dst_ip': '2.2.2.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 3.3.3.2 -> 3.3.3.1 failed - timeout', 'port': '10.36.118.199:1:7', 'src_ip': '3.3.3.2', 'dst_ip': '3.3.3.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 4.4.4.2 -> 4.4.4.1 failed - timeout', 'port': '10.36.118.199:1:8', 'src_ip': '4.4.4.2', 'dst_ip': '4.4.4.1'}]}}] INFO asyncssh:logging.py:92 [conn=127, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=15] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.icmp_echo_ignore_all=0 INFO asyncssh:logging.py:92 [conn=127, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=16] Command: sysctl net.ipv4.icmp_echo_ignore_all=0 INFO asyncssh:logging.py:92 [conn=127, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=16] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.icmp_echo_ignore_all = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:5_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:6_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:7_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:8_4.4.4.2/24 to 4.4.4.1 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_icmp_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=127, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=17] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=18] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=18] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:31:00 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:31:00 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=127, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=127, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=24] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=127, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=127, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=127, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=127, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=127, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=28] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=127, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=28] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_stability | 236.45 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7024' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_stability">Starting testcase:test_ipv4_ping_stability from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=128] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=128] Local address: 172.17.0.4, port 53422 INFO asyncssh:logging.py:92 [conn=128] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=128] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=128] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:31:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=128, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=128, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=128, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=128, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=128, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=128, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:31:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=128, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=128, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=128, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=128, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=128, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=128, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=13] Received channel close DEBUG agg1:Logger.py:156 ping -I swp1 -i 0.005 -w 120 1.1.1.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=14] Received channel close DEBUG agg1:Logger.py:156 ping -I swp2 -i 0.005 -w 120 2.2.2.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=16] Requesting new SSH session DEBUG agg1:Logger.py:156 ping -I swp3 -i 0.005 -w 120 3.3.3.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=15] Command: ping -I swp1 -i 0.005 -w 120 1.1.1.2 | grep "bytes from" | wc -l DEBUG agg1:Logger.py:156 ping -I swp4 -i 0.005 -w 120 4.4.4.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=16] Command: ping -I swp2 -i 0.005 -w 120 2.2.2.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=17] Command: ping -I swp3 -i 0.005 -w 120 3.3.3.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=18] Command: ping -I swp4 -i 0.005 -w 120 4.4.4.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=15] Channel closed DEBUG agg1:Logger.py:156 3016 INFO asyncssh:logging.py:92 [conn=128, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=18] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=16] Received channel close DEBUG agg1:Logger.py:156 3041 DEBUG agg1:Logger.py:156 2929 INFO asyncssh:logging.py:92 [conn=128, chan=16] Channel closed DEBUG agg1:Logger.py:156 3014 INFO DENT:Logger.py:84 [DENT aggregation 1] Total run time: 120.09s, pings received: 12000 INFO DENT:Logger.py:84 [DENT aggregation 1] Actual icmp rate: 99.93pps, expected: 100pps -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_stability from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=128, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=19] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=128, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=128, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=20] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:34:56 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:34:56 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=128, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=128, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=26] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=128, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=128, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=128, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=128, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=128, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=30] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=128, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=30] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_static_ip | 124.69 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7128' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_static_ip">Starting testcase:test_ipv4_ping_static_ip from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=130] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=130] Local address: 172.17.0.4, port 53760 INFO asyncssh:logging.py:92 [conn=130] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=130] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=130] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:37:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=130, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=130, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=130, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=130, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=130, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=130, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:37:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=130, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=130, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=130, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=130, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=130, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:5_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:6_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:7_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:8_4.4.4.2/24 to 4.4.4.1 INFO asyncssh:logging.py:92 [conn=130, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=13] Received channel close DEBUG agg1:Logger.py:156 ping -I swp1 -c 1 -i 0.1 -s 0 -w 120 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=14] Received channel close DEBUG agg1:Logger.py:156 ping -I swp2 -c 1 -i 0.1 -s 0 -w 120 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=16] Requesting new SSH session DEBUG agg1:Logger.py:156 ping -I swp3 -c 1 -i 0.1 -s 0 -w 120 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=15] Command: ping -I swp1 -c 1 -i 0.1 -s 0 -w 120 1.1.1.2 | grep "ping statistics" -A 2 DEBUG agg1:Logger.py:156 ping -I swp4 -c 1 -i 0.1 -s 0 -w 120 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=16] Command: ping -I swp2 -c 1 -i 0.1 -s 0 -w 120 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=17] Command: ping -I swp3 -c 1 -i 0.1 -s 0 -w 120 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=18] Command: ping -I swp4 -c 1 -i 0.1 -s 0 -w 120 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=15] Channel closed DEBUG agg1:Logger.py:156 --- 1.1.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms INFO asyncssh:logging.py:92 [conn=130, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=18] Received channel close DEBUG agg1:Logger.py:156 --- 2.2.2.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms INFO asyncssh:logging.py:92 [conn=130, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=18] Channel closed DEBUG agg1:Logger.py:156 --- 3.3.3.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms DEBUG agg1:Logger.py:156 --- 4.4.4.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_static_ip from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=130, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=19] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=20] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:39:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:39:14 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=130, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=130, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=26] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=130, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=130, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=130, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=130, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=130, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=30] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=130, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=30] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_fwd_disable | 128.44 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7174' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_fwd_disable">Starting testcase:test_ipv4_fwd_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=131] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=131] Local address: 172.17.0.4, port 58262 INFO asyncssh:logging.py:92 [conn=131] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=131] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=131] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:39:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=131, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=131, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=131, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=131, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:39:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=131, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=131, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=131, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=131, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=131, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=131, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 INFO asyncssh:logging.py:92 [conn=131, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=12] Command: ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 INFO asyncssh:logging.py:92 [conn=131, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=13] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=14] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=14] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP from 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP from 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:5_1.1.1.2/24 to 4.4.4.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:6_2.2.2.2/24 to 3.3.3.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:7_3.3.3.2/24 to 2.2.2.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:8_4.4.4.2/24 to 1.1.1.2 WARNING DENT:Logger.py:111 [Ixia Traffic Generator] Some pings did not reach their destination [{'ixia': {'command': 'send_ping&& send_ping&& send_ping&& send_ping', 'rc': 1, 'result': [{'success': True, 'info': '1 requests sent, 1 replies received., \nPing: 1.1.1.2 -> 4.4.4.2 succeeded - reply received (sequence number = 0)', 'port': '10.36.118.199:1:5', 'src_ip': None, 'dst_ip': '4.4.4.2'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 2.2.2.2 -> 3.3.3.2 failed - timeout', 'port': '10.36.118.199:1:6', 'src_ip': None, 'dst_ip': '3.3.3.2'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 3.3.3.2 -> 2.2.2.2 failed - timeout', 'port': '10.36.118.199:1:7', 'src_ip': None, 'dst_ip': '2.2.2.2'}, {'success': True, 'info': '1 requests sent, 1 replies received., \nPing: 4.4.4.2 -> 1.1.1.2 succeeded - reply received (sequence number = 0)', 'port': '10.36.118.199:1:8', 'src_ip': None, 'dst_ip': '1.1.1.2'}]}}] INFO asyncssh:logging.py:92 [conn=131, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=15] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=16] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=16] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 INFO asyncssh:logging.py:92 [conn=131, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 INFO asyncssh:logging.py:92 [conn=131, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=18] Command: ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp3 && ip neigh flush dev swp4 INFO asyncssh:logging.py:92 [conn=131, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:5_1.1.1.2/24 to 4.4.4.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:6_2.2.2.2/24 to 3.3.3.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:7_3.3.3.2/24 to 2.2.2.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:1:8_4.4.4.2/24 to 1.1.1.2 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_fwd_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=131, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=19] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=20] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:41:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:41:22 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=131, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=131, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=26] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=131, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=131, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=131, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=131, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=131, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=30] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=131, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=30] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_mtu.py::test_ipv4_oversized_mtu | 146.47 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7214' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_oversized_mtu">Starting testcase:test_ipv4_oversized_mtu from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=132] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=132] Local address: 172.17.0.4, port 34052 INFO asyncssh:logging.py:92 [conn=132] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=132] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=132] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:41:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=132, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=3] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=4] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:41:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=132, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=5] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=132, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=6] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=132, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=6] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=132, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=132, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=8] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=132, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=8] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=10] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:41:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=132, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=132, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=12] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=132, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=132, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=14] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=132, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 <-> 10.36.118.199:1:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2.2.2.2/24 to 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_3.3.3.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 <-> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:8_4.4.4.2/24 to 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=132, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 1000 && ip link set dev swp2 mtu 1000 && ip link set dev swp3 mtu 1000 && ip link set dev swp4 mtu 1000 INFO asyncssh:logging.py:92 [conn=132, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=16] Command: ip link set dev swp1 mtu 1000 && ip link set dev swp2 mtu 1000 && ip link set dev swp3 mtu 1000 && ip link set dev swp4 mtu 1000 INFO asyncssh:logging.py:92 [conn=132, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=17] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=132, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=18] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=132, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=18] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 1674835280838 bad_octets_received: 24720210 mac_trans_error: 0 broadcast_frames_received: 12266408 multicast_frames_received: 438559274 frames_64_octets: 2912 frames_65_to_127_octets: 1925343 frames_128_to_255_octets: 2342192518 frames_256_to_511_octets: 804882344 frames_512_to_1023_octets: 703667762 frames_1024_to_max_octets: 390797451 excessive_collision: 0 multicast_frames_sent: 2984 broadcast_frames_sent: 1541 fc_sent: 0 fc_received: 0 buffer_overrun: 1841 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 4625 collisions: 0 late_collision: 0 unicast_frames_received: 3783119619 unicast_frames_sent: 9513879 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4298969453 INFO asyncssh:logging.py:92 [conn=132, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=19] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=132, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=20] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=132, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=20] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 333458997650 bad_octets_received: 24595282 mac_trans_error: 0 broadcast_frames_received: 3426728 multicast_frames_received: 4657499 frames_64_octets: 2616 frames_65_to_127_octets: 1174418 frames_128_to_255_octets: 1330102125 frames_256_to_511_octets: 5467956 frames_512_to_1023_octets: 287505823 frames_1024_to_max_octets: 56499437 excessive_collision: 0 multicast_frames_sent: 270912124 broadcast_frames_sent: 8702 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 4381 collisions: 0 late_collision: 0 unicast_frames_received: 1315414434 unicast_frames_sent: 86328507 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 158834493856 INFO asyncssh:logging.py:92 [conn=132, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=21] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=132, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=22] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=132, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=22] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 287925201502 bad_octets_received: 22352210 mac_trans_error: 0 broadcast_frames_received: 1791515 multicast_frames_received: 2435391 frames_64_octets: 1862 frames_65_to_127_octets: 1174057 frames_128_to_255_octets: 1366921997 frames_256_to_511_octets: 919 frames_512_to_1023_octets: 281003816 frames_1024_to_max_octets: 20664029 excessive_collision: 0 multicast_frames_sent: 278099492 broadcast_frames_sent: 4637 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 1265979570 unicast_frames_sent: 121456075 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 167004299852 INFO asyncssh:logging.py:92 [conn=132, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=23] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=132, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=24] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=132, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=24] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 32610914068 bad_octets_received: 22352210 mac_trans_error: 0 broadcast_frames_received: 1791498 multicast_frames_received: 2435391 frames_64_octets: 1866 frames_65_to_127_octets: 1174178 frames_128_to_255_octets: 125252269 frames_256_to_511_octets: 900 frames_512_to_1023_octets: 145503591 frames_1024_to_max_octets: 20664029 excessive_collision: 0 multicast_frames_sent: 142586769 broadcast_frames_sent: 4653 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 14189 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 27650040 unicast_frames_sent: 118128482 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 97182838756 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=132, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=25] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=132, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=26] Command: ethtool -S swp1 INFO asyncssh:logging.py:92 [conn=132, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=26] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 1674835280838 bad_octets_received: 29388706 mac_trans_error: 0 broadcast_frames_received: 12266408 multicast_frames_received: 438559274 frames_64_octets: 2912 frames_65_to_127_octets: 1925343 frames_128_to_255_octets: 2342192518 frames_256_to_511_octets: 804882344 frames_512_to_1023_octets: 703667762 frames_1024_to_max_octets: 390797451 excessive_collision: 0 multicast_frames_sent: 2984 broadcast_frames_sent: 1541 fc_sent: 0 fc_received: 0 buffer_overrun: 1841 undersize: 13044 fragments: 0 oversize: 18757 jabber: 0 rx_error_frame_received: 0 bad_crc: 4625 collisions: 0 late_collision: 0 unicast_frames_received: 3783119619 unicast_frames_sent: 9513879 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4298969453 INFO asyncssh:logging.py:92 [conn=132, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=27] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=132, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=28] Command: ethtool -S swp2 INFO asyncssh:logging.py:92 [conn=132, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=28] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 333458997650 bad_octets_received: 29263778 mac_trans_error: 0 broadcast_frames_received: 3426728 multicast_frames_received: 4657499 frames_64_octets: 2616 frames_65_to_127_octets: 1174418 frames_128_to_255_octets: 1330102125 frames_256_to_511_octets: 5467956 frames_512_to_1023_octets: 287505823 frames_1024_to_max_octets: 56499437 excessive_collision: 0 multicast_frames_sent: 270912124 broadcast_frames_sent: 8702 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 18757 jabber: 0 rx_error_frame_received: 0 bad_crc: 4381 collisions: 0 late_collision: 0 unicast_frames_received: 1315414434 unicast_frames_sent: 86328507 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 158834493856 INFO asyncssh:logging.py:92 [conn=132, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=29] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=132, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=30] Command: ethtool -S swp3 INFO asyncssh:logging.py:92 [conn=132, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=30] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 287925201502 bad_octets_received: 27020706 mac_trans_error: 0 broadcast_frames_received: 1791515 multicast_frames_received: 2435391 frames_64_octets: 1862 frames_65_to_127_octets: 1174057 frames_128_to_255_octets: 1366921998 frames_256_to_511_octets: 919 frames_512_to_1023_octets: 281003816 frames_1024_to_max_octets: 20664029 excessive_collision: 0 multicast_frames_sent: 278099493 broadcast_frames_sent: 4637 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 18757 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 1265979570 unicast_frames_sent: 121456075 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 167004300094 INFO asyncssh:logging.py:92 [conn=132, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=31] Channel closed DEBUG agg1:Logger.py:156 ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=132, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=32] Command: ethtool -S swp4 INFO asyncssh:logging.py:92 [conn=132, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=32] Channel closed DEBUG agg1:Logger.py:156 NIC statistics: good_octets_received: 32610914068 bad_octets_received: 27020706 mac_trans_error: 0 broadcast_frames_received: 1791498 multicast_frames_received: 2435391 frames_64_octets: 1866 frames_65_to_127_octets: 1174178 frames_128_to_255_octets: 125252270 frames_256_to_511_octets: 900 frames_512_to_1023_octets: 145503591 frames_1024_to_max_octets: 20664029 excessive_collision: 0 multicast_frames_sent: 142586770 broadcast_frames_sent: 4653 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13044 fragments: 0 oversize: 18757 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 27650040 unicast_frames_sent: 118128482 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 97182838998 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a252c6a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:8 SIP-DIP 1.1.1.2-4.4.4.2 Tx 4568 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2.2.2.2-3.3.3.2 Tx 4568 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:7 <-> 10.36.118.199:1:6 SIP-DIP 3.3.3.2-2.2.2.2 Tx 4568 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:8 <-> 10.36.118.199:1:5 SIP-DIP 4.4.4.2-1.1.1.2 Tx 4568 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_oversized_mtu from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py INFO asyncssh:logging.py:92 [conn=132, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=33] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=132, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=34] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=132, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=34] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=36] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:43:48 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=38] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:43:49 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=132, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=132, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=40] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=132, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=132, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=132, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=44] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=132, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=132, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=46] Command: ip link set dev swp1 mtu 1500 && ip link set dev swp2 mtu 1500 && ip link set dev swp3 mtu 1500 && ip link set dev swp4 mtu 1500 INFO asyncssh:logging.py:92 [conn=132, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=46] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_random_routing | 163.83 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7310' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_random_routing">Starting testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=134] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=134] Local address: 172.17.0.4, port 56610 INFO asyncssh:logging.py:92 [conn=134] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=134] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=134] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:46:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=134, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=134, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=134, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=134, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=134, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=134, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:46:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=134, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=134, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=134, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 89.123.226.197/6 dev swp1 && ip address add 117.5.195.238/23 dev swp2 && ip address add 69.34.157.108/26 dev swp3 && ip address add 124.23.125.224/14 dev swp4 INFO asyncssh:logging.py:92 [conn=134, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=10] Command: ip address add 89.123.226.197/6 dev swp1 && ip address add 117.5.195.238/23 dev swp2 && ip address add 69.34.157.108/26 dev swp3 && ip address add 124.23.125.224/14 dev swp4 INFO asyncssh:logging.py:92 [conn=134, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_89.123.226.196/6', 'count': 1, 'ip': '89.123.226.196', 'gw': '89.123.226.197', 'plen': 6, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_117.5.195.239/23', 'count': 1, 'ip': '117.5.195.239', 'gw': '117.5.195.238', 'plen': 23, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_69.34.157.109/26', 'count': 1, 'ip': '69.34.157.109', 'gw': '69.34.157.108', 'plen': 26, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_124.23.125.225/14', 'count': 1, 'ip': '124.23.125.225', 'gw': '124.23.125.224', 'plen': 14, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_89.123.226.196/6 to 10.36.118.199:1:6_117.5.195.239/23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_89.123.226.196/6 to 10.36.118.199:1:7_69.34.157.109/26 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_89.123.226.196/6 to 10.36.118.199:1:8_124.23.125.225/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_117.5.195.239/23 to 10.36.118.199:1:5_89.123.226.196/6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_117.5.195.239/23 to 10.36.118.199:1:7_69.34.157.109/26 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_117.5.195.239/23 to 10.36.118.199:1:8_124.23.125.225/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_69.34.157.109/26 to 10.36.118.199:1:5_89.123.226.196/6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_69.34.157.109/26 to 10.36.118.199:1:6_117.5.195.239/23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_69.34.157.109/26 to 10.36.118.199:1:8_124.23.125.225/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:8_124.23.125.225/14 to 10.36.118.199:1:5_89.123.226.196/6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:8_124.23.125.225/14 to 10.36.118.199:1:6_117.5.195.239/23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:8_124.23.125.225/14 to 10.36.118.199:1:7_69.34.157.109/26 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_89.123.226.196/6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_117.5.195.239/23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_69.34.157.109/26 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_124.23.125.225/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a268d0c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI ipv4 SIP-DIP 89.123.226.196-69.34.157.109 Tx 4440 Rx 4440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI ipv4 SIP-DIP 89.123.226.196-117.5.195.239 Tx 4440 Rx 4440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI ipv4 SIP-DIP 89.123.226.196-124.23.125.225 Tx 4440 Rx 4440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI ipv4 #1 SIP-DIP 117.5.195.239-69.34.157.109 Tx 4440 Rx 4440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI ipv4 #1 SIP-DIP 117.5.195.239-89.123.226.196 Tx 4440 Rx 4440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI ipv4 #1 SIP-DIP 117.5.195.239-124.23.125.225 Tx 4440 Rx 4440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI ipv4 #2 SIP-DIP 69.34.157.109-89.123.226.196 Tx 4440 Rx 4440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI ipv4 #2 SIP-DIP 69.34.157.109-117.5.195.239 Tx 4440 Rx 4440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI ipv4 #2 SIP-DIP 69.34.157.109-124.23.125.225 Tx 4440 Rx 4440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI ipv4 #3 SIP-DIP 124.23.125.225-69.34.157.109 Tx 4440 Rx 4440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI ipv4 #3 SIP-DIP 124.23.125.225-89.123.226.196 Tx 4440 Rx 4440 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI ipv4 #3 SIP-DIP 124.23.125.225-117.5.195.239 Tx 4440 Rx 4440 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=134, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:48:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=16] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:48:55 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=134, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=134, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=18] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=134, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=134, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=134, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=134, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=134, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=22] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=134, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_nexthop_route | 125.17 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7344' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_nexthop_route">Starting testcase:test_ipv4_nexthop_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=135] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=135] Local address: 172.17.0.4, port 38666 INFO asyncssh:logging.py:92 [conn=135] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=135] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=135] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:48:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=135, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=135, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=135, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=135, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=135, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=135, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:48:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=135, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=135, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=135, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=135, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=135, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=135, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.5 lladdr aa:bb:cc:dd:ee:01 dev swp1 && ip neigh add 2.2.2.5 lladdr aa:bb:cc:dd:ee:02 dev swp2 INFO asyncssh:logging.py:92 [conn=135, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=12] Command: ip neigh add 1.1.1.5 lladdr aa:bb:cc:dd:ee:01 dev swp1 && ip neigh add 2.2.2.5 lladdr aa:bb:cc:dd:ee:02 dev swp2 INFO asyncssh:logging.py:92 [conn=135, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 16.0.0.0/24 nexthop via 2.2.2.5 INFO asyncssh:logging.py:92 [conn=135, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=14] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 16.0.0.0/24 nexthop via 2.2.2.5 INFO asyncssh:logging.py:92 [conn=135, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=135, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=16] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=135, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=135, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=135, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=18] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=135, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=135, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=135, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=20] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=135, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=135, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=135, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=22] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=135, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp2","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 -> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22571f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 10.36.118.199:1:6 Tx 4476 Rx 4476 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:6 -> 10.36.118.199:1:5 Tx 4476 Rx 4476 Frames Delta 0 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_nexthop_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=135, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=23] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=135, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=135, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=24] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:51:00 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:51:00 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=135, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=135, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=30] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=135, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=135, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=135, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=135, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=135, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=34] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=135, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=34] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_route_between_vlan_devs | 137.99 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7391' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_route_between_vlan_devs">Starting testcase:test_ipv4_route_between_vlan_devs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=136] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=136] Local address: 172.17.0.4, port 54314 INFO asyncssh:logging.py:92 [conn=136] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=136] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=136] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:51:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=136, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=136, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=136, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=136, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=136, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=136, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:51:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=136, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=136, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=136, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master br0 && ip link set dev swp2 master br0 INFO asyncssh:logging.py:92 [conn=136, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=10] Command: ip link set dev swp1 master br0 && ip link set dev swp2 master br0 INFO asyncssh:logging.py:92 [conn=136, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 10 && bridge vlan add dev swp2 vid 20 && bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 20 self INFO asyncssh:logging.py:92 [conn=136, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=12] Command: bridge vlan add dev swp1 vid 10 && bridge vlan add dev swp2 vid 20 && bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 20 self INFO asyncssh:logging.py:92 [conn=136, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.20 type vlan id 20 INFO asyncssh:logging.py:92 [conn=136, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=14] Command: ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.20 type vlan id 20 INFO asyncssh:logging.py:92 [conn=136, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev br0 up && ip link set dev br0.10 up && ip link set dev br0.20 up INFO asyncssh:logging.py:92 [conn=136, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=16] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev br0 up && ip link set dev br0.10 up && ip link set dev br0.20 up INFO asyncssh:logging.py:92 [conn=136, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=18] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 10, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': 20, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=136, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=20] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"br0.10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"br0.20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2.2.2.2/24 to 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2257670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 1.1.1.2-2.2.2.2 Tx 4443 Rx 4443 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI traffic #1 SIP-DIP 2.2.2.2-1.1.1.2 Tx 4443 Rx 4443 Loss 0.000 INFO asyncssh:logging.py:92 [conn=136, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip address flush br0.10 && ip address flush br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=22] Command: ip address flush br0.10 && ip address flush br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=24] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=136, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"br0.10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"br0.20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a252fe20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 1.1.1.2-2.2.2.2 Tx 8068 Rx 8068 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI traffic #1 SIP-DIP 2.2.2.2-1.1.1.2 Tx 8068 Rx 8068 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_route_between_vlan_devs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=136, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=27] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=136, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=136, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=28] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:53:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=32] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:53:18 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=136, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=136, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=34] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=136, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":109,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":110,"link":"br0","ifname":"br0.10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":111,"link":"br0","ifname":"br0.20","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=136, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=136, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=38] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=136, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=39] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=40] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:53:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=136, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=136, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=136, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":109,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=136, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=136, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=44] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=136, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=44] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_nexthop_static_route | 141.56 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7449' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_nexthop_static_route">Starting testcase:test_ipv4_nexthop_static_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=137] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=137] Local address: 172.17.0.4, port 53962 INFO asyncssh:logging.py:92 [conn=137] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=137] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=137] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:53:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=137, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=137, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=137, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=137, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=137, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=137, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:53:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=137, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=137, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=8] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=137, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=8] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=137, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=10] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=137, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=137, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=12] Command: bridge -j vlan show dev swp2 INFO asyncssh:logging.py:92 [conn=137, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=12] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp2 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=137, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=14] Command: ip -j address show swp2 INFO asyncssh:logging.py:92 [conn=137, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp2 ', 'rc': 0, 'result': '[{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=137, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=16] Command: bridge -j vlan show dev swp3 INFO asyncssh:logging.py:92 [conn=137, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=16] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp3 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=137, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=18] Command: ip -j address show swp3 INFO asyncssh:logging.py:92 [conn=137, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp3 ', 'rc': 0, 'result': '[{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp4 INFO asyncssh:logging.py:92 [conn=137, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=20] Command: bridge -j vlan show dev swp4 INFO asyncssh:logging.py:92 [conn=137, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=20] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp4 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp4 INFO asyncssh:logging.py:92 [conn=137, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=22] Command: ip -j address show swp4 INFO asyncssh:logging.py:92 [conn=137, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp4 ', 'rc': 0, 'result': '[{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=137, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=24] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=137, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=137, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=26] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2.2.2.1/24 dev swp2 && ip address add 3.3.3.1/24 dev swp3 && ip address add 4.4.4.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=137, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=137, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip route add 100.0.0.1 nexthop via 1.1.1.2 dev swp1 && ip route add 101.0.0.1 nexthop via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=137, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=28] Command: ip route add 100.0.0.1 nexthop via 1.1.1.2 dev swp1 && ip route add 101.0.0.1 nexthop via 2.2.2.2 dev swp2 INFO asyncssh:logging.py:92 [conn=137, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=30] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"100.0.0.1","gateway":"1.1.1.2","dev":"swp1","flags":["trap","rt_offload"]},{"dst":"101.0.0.1","gateway":"2.2.2.2","dev":"swp2","flags":["trap","rt_offload"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=137, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=32] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2.2.2.2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip route delete 100.0.0.1 dev swp1 && ip route delete 101.0.0.1 dev swp2 INFO asyncssh:logging.py:92 [conn=137, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=34] Command: ip route delete 100.0.0.1 dev swp1 && ip route delete 101.0.0.1 dev swp2 INFO asyncssh:logging.py:92 [conn=137, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=36] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=137, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 4.4.4.2 dev swp4 INFO asyncssh:logging.py:92 [conn=137, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=38] Command: ip neigh delete 1.1.1.2 dev swp1 && ip neigh delete 2.2.2.2 dev swp2 && ip neigh delete 3.3.3.2 dev swp3 && ip neigh delete 4.4.4.2 dev swp4 INFO asyncssh:logging.py:92 [conn=137, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=40] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"4.4.4.2","dev":"swp4","state":["FAILED"]},{"dst":"2.2.2.2","dev":"swp2","state":["FAILED"]},{"dst":"1.1.1.2","dev":"swp1","state":["FAILED"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp3","state":["FAILED"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_nexthop_static_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=137, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=41] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=137, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=137, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=42] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=44] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:55:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=45] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=46] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:55:40 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=137, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=137, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=48] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=137, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=137, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=50] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=137, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=50] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=137, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=137, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=52] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=137, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=52] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_two_routes_to_same_net | 129.12 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7513' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_two_routes_to_same_net">Starting testcase:test_ipv4_two_routes_to_same_net from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=138] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=138] Local address: 172.17.0.4, port 36230 INFO asyncssh:logging.py:92 [conn=138] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=138] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=138] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:55:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=138, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=138, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=138, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=138, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=138, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=138, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:55:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=138, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=138, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=138, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=138, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 INFO asyncssh:logging.py:92 [conn=138, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=10] Command: ip address add 1.1.1.1/24 dev swp1 INFO asyncssh:logging.py:92 [conn=138, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip route add 2.2.2.0/24 nexthop via 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=138, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=12] Command: ip route add 2.2.2.0/24 nexthop via 1.1.1.2 dev swp1 INFO asyncssh:logging.py:92 [conn=138, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=138, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=14] Command: ip address add 2.2.2.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=138, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=16] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","gateway":"1.1.1.2","dev":"swp1","flags":["trap","rt_offload"]},{"dst":"2.2.2.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":[]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file /tmp/ixia/tgen_ipv4_two_routes_to_same_net_config.ixncfg INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a252c730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 10.36.118.199:1:6 Tx 5977 Rx 0 Frames Delta 5977 Loss 100.000 INFO asyncssh:logging.py:92 [conn=138, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address delete 2.2.2.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=138, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=18] Command: ip address delete 2.2.2.1/24 dev swp2 INFO asyncssh:logging.py:92 [conn=138, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=20] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","gateway":"1.1.1.2","dev":"swp1","flags":["offload","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2255000>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 20215 Rx 20216 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_two_routes_to_same_net from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=138, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=21] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=138, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=138, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=22] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:57:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:57:49 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=138, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=138, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=28] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=138, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=138, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=138, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=138, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=138, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=32] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=138, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=32] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6.py::test_ipv6_basic_config | 139.16 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7556' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_basic_config">Starting testcase:test_ipv6_basic_config from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=139] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=139] Local address: 172.17.0.4, port 39894 INFO asyncssh:logging.py:92 [conn=139] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=139] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=139] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:57:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=139, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=139, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=139, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=139, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=139, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=139, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 22:57:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=139, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=139, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=139, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111:10:1::1/64 dev swp1 && ip address add 2001:2222:20:2::1/64 dev swp1 && ip address add 2001:3333:30:3::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=139, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=10] Command: ip address add 2001:1111:10:1::1/64 dev swp1 && ip address add 2001:2222:20:2::1/64 dev swp1 && ip address add 2001:3333:30:3::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=139, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111:10:1::2/64', 'count': 1, 'ip': '2001:1111:10:1::2', 'gw': '2001:1111:10:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:2222:20:2::2/64', 'count': 1, 'ip': '2001:2222:20:2::2', 'gw': '2001:2222:20:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:3333:30:3::2/64', 'count': 1, 'ip': '2001:3333:30:3::2', 'gw': '2001:3333:30:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=139, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=139, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=12] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=139, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222:20:2::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111:10:1::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333:30:3::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=139, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=139, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111:10:1::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222:20:2::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333:30:3::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:3333:30:3::2/64 to 10.36.118.199:1:5_2001:1111:10:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:3333:30:3::2/64 to 10.36.118.199:1:5_2001:2222:20:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111:10:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:2222:20:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:3333:30:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a26fb400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:10:1:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 44499 Rx 44499 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:2222:20:2:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 44499 Rx 44499 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:1111:10:1:0:0:0:2 Tx 44499 Rx 44499 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:2222:20:2:0:0:0:2 Tx 44499 Rx 44499 Loss 0.000 INFO asyncssh:logging.py:92 [conn=139, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222:20:2::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111:10:1::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333:30:3::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip address delete 2001:1111:10:1::1/64 dev swp1 && ip address delete 2001:2222:20:2::1/64 dev swp1 && ip address delete 2001:3333:30:3::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=139, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=22] Command: ip address delete 2001:1111:10:1::1/64 dev swp1 && ip address delete 2001:2222:20:2::1/64 dev swp1 && ip address delete 2001:3333:30:3::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=139, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a26f8a00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:10:1:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 80810 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:2222:20:2:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 80809 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:1111:10:1:0:0:0:2 Tx 80810 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:2222:20:2:0:0:0:2 Tx 80809 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_basic_config from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=139, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=23] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=139, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=24] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=139, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=24] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=26] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:00:08 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=139, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=139, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=28] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=139, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=139, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=139, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=32] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=139, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=32] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6.py::test_ipv6_flags | 171.51 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7600' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_flags">Starting testcase:test_ipv6_flags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=140] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=140] Local address: 172.17.0.4, port 55654 INFO asyncssh:logging.py:92 [conn=140] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=140] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=140] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:00:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=140, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=140, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=140, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=140, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=140, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=140, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:00:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=140, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=140, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=140, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address change 2001:1111::1/64 dev swp1 valid_lft 960 preferred_lft 900 && ip address change 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=140, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=10] Command: ip address change 2001:1111::1/64 dev swp1 valid_lft 960 preferred_lft 900 && ip address change 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=140, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address replace 2001:3333::1/64 dev swp1 && ip address replace 2001:4444::1/64 dev swp2 valid_lft 960 preferred_lft 900 INFO asyncssh:logging.py:92 [conn=140, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=12] Command: ip address replace 2001:3333::1/64 dev swp1 && ip address replace 2001:4444::1/64 dev swp2 valid_lft 960 preferred_lft 900 INFO asyncssh:logging.py:92 [conn=140, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=14] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"dynamic":true,"valid_life_time":960,"preferred_life_time":900},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","tentative":true,"dynamic":true,"valid_life_time":960,"preferred_life_time":900},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:3333::2/64 to 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:3333::2/64 to 10.36.118.199:1:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2255db0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 44532 Rx 44532 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 44532 Rx 44532 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 44532 Rx 44532 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 44532 Rx 44532 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 44532 Rx 44532 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 44532 Rx 44532 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 44532 Rx 44532 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 44532 Rx 44532 Loss 0.000 INFO asyncssh:logging.py:92 [conn=140, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","dynamic":true,"valid_life_time":832,"preferred_life_time":772},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","dynamic":true,"valid_life_time":832,"preferred_life_time":772},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=140, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address change 2001:1111::1/64 dev swp1 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=18] Command: ip address change 2001:1111::1/64 dev swp1 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip address replace 2001:4444::1/64 dev swp2 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=20] Command: ip address replace 2001:4444::1/64 dev swp2 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2257f10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 80846 Rx 80846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 80846 Rx 80846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 80846 Rx 80846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 80846 Rx 80846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 80846 Rx 80846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 80846 Rx 80846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 80846 Rx 80846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 80846 Rx 80846 Loss 0.000 INFO asyncssh:logging.py:92 [conn=140, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=22] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","deprecated":true,"dynamic":true,"valid_life_time":103,"preferred_life_time":0},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","deprecated":true,"dynamic":true,"valid_life_time":103,"preferred_life_time":0},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=140, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip address change 2001:1111::1/64 dev swp1 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=24] Command: ip address change 2001:1111::1/64 dev swp1 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address replace 2001:4444::1/64 dev swp2 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=26] Command: ip address replace 2001:4444::1/64 dev swp2 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=28] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=140, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp1 && ip neigh flush dev swp2 INFO asyncssh:logging.py:92 [conn=140, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=30] Command: ip neigh flush dev swp1 && ip neigh flush dev swp2 && ip neigh flush dev swp1 && ip neigh flush dev swp2 INFO asyncssh:logging.py:92 [conn=140, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2252e90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 80976 Rx 25 Loss 99.969 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 80975 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 80976 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 80975 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 80976 Rx 23 Loss 99.972 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 80976 Rx 22 Loss 99.973 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 80975 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 80975 Rx 23 Loss 99.972 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_flags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=140, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=31] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=32] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=34] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:03:00 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=140, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=140, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=36] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=140, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=140, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=140, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=40] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=140, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=40] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6.py::test_ipv6_secondary_addr | 184.59 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7652' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_secondary_addr">Starting testcase:test_ipv6_secondary_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=141] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=141] Local address: 172.17.0.4, port 51908 INFO asyncssh:logging.py:92 [conn=141] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=141] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=141] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:03:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=141, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=141, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=141, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=141, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=141, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=141, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:03:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=141, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.swp1.base_reachable_time_ms&& sysctl net.ipv6.neigh.swp2.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=141, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=8] Command: sysctl net.ipv6.neigh.swp1.base_reachable_time_ms&& sysctl net.ipv6.neigh.swp2.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=141, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=8] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.swp1.base_reachable_time_ms = 30000 net.ipv6.neigh.swp2.base_reachable_time_ms = 30000 INFO asyncssh:logging.py:92 [conn=141, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.swp1.base_reachable_time_ms=150000&& sysctl net.ipv6.neigh.swp2.base_reachable_time_ms=150000 INFO asyncssh:logging.py:92 [conn=141, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=10] Command: sysctl net.ipv6.neigh.swp1.base_reachable_time_ms=150000&& sysctl net.ipv6.neigh.swp2.base_reachable_time_ms=150000 INFO asyncssh:logging.py:92 [conn=141, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.swp1.base_reachable_time_ms = 150000 net.ipv6.neigh.swp2.base_reachable_time_ms = 150000 INFO asyncssh:logging.py:92 [conn=141, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=141, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=12] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=141, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:1111::3/64 dev swp1 && ip address add 2001:2222::3/64 dev swp2 && ip address add 2001:1111::5/64 dev swp1 && ip address add 2001:2222::5/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=14] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:1111::3/64 dev swp1 && ip address add 2001:2222::3/64 dev swp2 && ip address add 2001:1111::5/64 dev swp1 && ip address add 2001:2222::5/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::4/64', 'count': 1, 'ip': '2001:1111::4', 'gw': '2001:1111::3', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::6/64', 'count': 1, 'ip': '2001:1111::6', 'gw': '2001:1111::5', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::4/64', 'count': 1, 'ip': '2001:2222::4', 'gw': '2001:2222::3', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::6/64', 'count': 1, 'ip': '2001:2222::6', 'gw': '2001:2222::5', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=141, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::3","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::3","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=141, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=141, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=141, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=141, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=141, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=141, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::4/64 to 10.36.118.199:1:6_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::6/64 to 10.36.118.199:1:6_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a252f460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 40241 Rx 40241 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 40241 Rx 40241 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 40241 Rx 40241 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 40241 Rx 40241 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 40241 Rx 40241 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 40241 Rx 40241 Loss 0.000 INFO asyncssh:logging.py:92 [conn=141, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=22] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=141, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=24] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp1","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::4","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::4","dev":"swp2","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::6","dev":"swp1","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp2","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::215:1ff:fe00:1","dev":"swp2","lladdr":"00:15:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::6","dev":"swp2","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=141, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address delete 2001:1111::3/64 dev swp1 && ip address delete 2001:2222::3/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=26] Command: ip address delete 2001:1111::3/64 dev swp1 && ip address delete 2001:2222::3/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=141, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=28] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2250f70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 80386 Rx 80386 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 80386 Rx 80386 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 80386 Rx 80386 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 80386 Rx 80386 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 80386 Rx 80386 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 80386 Rx 80386 Loss 0.000 INFO asyncssh:logging.py:92 [conn=141, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address delete 2001:1111::5/64 dev swp1 && ip address delete 2001:2222::5/64 dev swp2 && ip address delete 2001:1111::1/64 dev swp1 && ip address delete 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=30] Command: ip address delete 2001:1111::5/64 dev swp1 && ip address delete 2001:2222::5/64 dev swp2 && ip address delete 2001:1111::1/64 dev swp1 && ip address delete 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=141, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=32] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2255e70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 76887 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 76887 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 76887 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 76887 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 76887 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 76887 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=141, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:1111::3/64 dev swp1 && ip address add 2001:2222::3/64 dev swp2 && ip address add 2001:1111::5/64 dev swp1 && ip address add 2001:2222::5/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=34] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:1111::3/64 dev swp1 && ip address add 2001:2222::3/64 dev swp2 && ip address add 2001:1111::5/64 dev swp1 && ip address add 2001:2222::5/64 dev swp2 INFO asyncssh:logging.py:92 [conn=141, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=36] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::3","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::3","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22543d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 80918 Rx 80918 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::2/64 <-> 10.36.118.199:1:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 80918 Rx 80918 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 80918 Rx 80918 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::4/64 <-> 10.36.118.199:1:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 80918 Rx 80918 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 80918 Rx 80918 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5_2001:1111::6/64 <-> 10.36.118.199:1:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 80918 Rx 80918 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_secondary_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=141, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=37] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.swp1.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.swp2.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=141, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=38] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.swp1.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.swp2.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=141, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=38] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.swp1.base_reachable_time_ms = 30000 net.ipv6.neigh.swp2.base_reachable_time_ms = 30000 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=39] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=40] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:06:04 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=141, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=141, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=42] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=141, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=44] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=141, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=141, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=46] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=141, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=46] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_bridge.py::test_ipv6_on_bridge | 171.66 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7710' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_on_bridge">Starting testcase:test_ipv6_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=142] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=142] Local address: 172.17.0.4, port 48130 INFO asyncssh:logging.py:92 [conn=142] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=142] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=142] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:06:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=142, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=142, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=142, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=142, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=142, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=142, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:06:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=142, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 0 && ip link add br1 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=142, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=8] Command: ip link add br0 type bridge vlan_filtering 0 && ip link add br1 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=142, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br1 && ip link set dev br0 up && ip link set dev br1 up INFO asyncssh:logging.py:92 [conn=142, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br1 && ip link set dev br0 up && ip link set dev br1 up INFO asyncssh:logging.py:92 [conn=142, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev br0 && ip address add 2001:3333::1/64 dev br1 && ip address add 2001:4444::1/64 dev swp1 && ip address add 2001:5555::1/64 dev br0 && ip address add 2001:6666::1/64 dev br1 INFO asyncssh:logging.py:92 [conn=142, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=12] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev br0 && ip address add 2001:3333::1/64 dev br1 && ip address add 2001:4444::1/64 dev swp1 && ip address add 2001:5555::1/64 dev br0 && ip address add 2001:6666::1/64 dev br1 INFO asyncssh:logging.py:92 [conn=142, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:5555::2/64', 'count': 1, 'ip': '2001:5555::2', 'gw': '2001:5555::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:6666::2/64', 'count': 1, 'ip': '2001:6666::2', 'gw': '2001:6666::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:6_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:4444::2/64 to 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:4444::2/64 to 10.36.118.199:1:6_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:4444::2/64 to 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:4444::2/64 to 10.36.118.199:1:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 <-> 10.36.118.199:1:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:2222::2/64 to 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:2222::2/64 to 10.36.118.199:1:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:5555::2/64 to 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:5555::2/64 to 10.36.118.199:1:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=142, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=142, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=142, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=142, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=142, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=142, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"br1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:5555::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:6666::/64","dev":"br1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"br1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2253490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 45109 Rx 45109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 45108 Rx 45108 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 45109 Rx 45109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 45108 Rx 45108 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 45109 Rx 45109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 45109 Rx 45109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 45108 Rx 45108 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 45108 Rx 45108 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 45109 Rx 45109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 45108 Rx 45108 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 45109 Rx 45109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 45108 Rx 45108 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 45109 Rx 45109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 45109 Rx 45109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 45108 Rx 45108 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 45108 Rx 45108 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 45109 Rx 45109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 45108 Rx 45108 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 45109 Rx 45109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 45108 Rx 45108 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 45109 Rx 45109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 45109 Rx 45109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 45108 Rx 45108 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 45108 Rx 45108 Loss 0.000 INFO asyncssh:logging.py:92 [conn=142, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=142, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::214:1ff:fe00:1","dev":"br0","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"br1","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"br0","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::215:1ff:fe00:1","dev":"br1","lladdr":"00:15:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:5555::2","dev":"br0","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:3333::2","dev":"br1","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:6666::2","dev":"br1","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=142, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=22] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:08:56 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=142, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=142, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=142, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":112,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":113,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=142, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 && ip link delete br1 INFO asyncssh:logging.py:92 [conn=142, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=26] Command: ip link delete br0 && ip link delete br1 INFO asyncssh:logging.py:92 [conn=142, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=142, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=27] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=28] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=28] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:08:56 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=142, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=142, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=32] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=142, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=142, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=142, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=36] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=142, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=36] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_bridge.py::test_ipv6_on_bridge_vlan | 157.39 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7759' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_on_bridge_vlan">Starting testcase:test_ipv6_on_bridge_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=143] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=143] Local address: 172.17.0.4, port 57918 INFO asyncssh:logging.py:92 [conn=143] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=143] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=143] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:08:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=143, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=143, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=143, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=143, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=143, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=143, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:08:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=143, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=143, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=143, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master br0 && ip link set dev swp3 master br0 INFO asyncssh:logging.py:92 [conn=143, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=10] Command: ip link set dev swp2 master br0 && ip link set dev swp3 master br0 INFO asyncssh:logging.py:92 [conn=143, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev br0 vid 3866 self && bridge vlan add dev br0 vid 671 self && bridge vlan add dev br0 vid 2767 self && bridge vlan add dev br0 vid 2563 self && bridge vlan add dev swp2 vid 3866 && bridge vlan add dev swp3 vid 671 && bridge vlan add dev swp2 vid 2767 && bridge vlan add dev swp3 vid 2563 INFO asyncssh:logging.py:92 [conn=143, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=12] Command: bridge vlan add dev br0 vid 3866 self && bridge vlan add dev br0 vid 671 self && bridge vlan add dev br0 vid 2767 self && bridge vlan add dev br0 vid 2563 self && bridge vlan add dev swp2 vid 3866 && bridge vlan add dev swp3 vid 671 && bridge vlan add dev swp2 vid 2767 && bridge vlan add dev swp3 vid 2563 INFO asyncssh:logging.py:92 [conn=143, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link add link br0 name br0.3866 type vlan id 3866 && ip link add link br0 name br0.671 type vlan id 671 && ip link add link br0 name br0.2767 type vlan id 2767 && ip link add link br0 name br0.2563 type vlan id 2563 INFO asyncssh:logging.py:92 [conn=143, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=14] Command: ip link add link br0 name br0.3866 type vlan id 3866 && ip link add link br0 name br0.671 type vlan id 671 && ip link add link br0 name br0.2767 type vlan id 2767 && ip link add link br0 name br0.2563 type vlan id 2563 INFO asyncssh:logging.py:92 [conn=143, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev br0.3866 up && ip link set dev br0.671 up && ip link set dev br0.2767 up && ip link set dev br0.2563 up INFO asyncssh:logging.py:92 [conn=143, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=16] Command: ip link set dev br0 up && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev br0.3866 up && ip link set dev br0.671 up && ip link set dev br0.2767 up && ip link set dev br0.2563 up INFO asyncssh:logging.py:92 [conn=143, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:10::1/64 dev br0.3866 && ip address add 2001:20::1/64 dev br0.671 && ip address add 2001:30::1/64 dev br0.2767 && ip address add 2001:40::1/64 dev br0.2563 && ip address add 2001:100::1/64 dev swp1 INFO asyncssh:logging.py:92 [conn=143, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=18] Command: ip address add 2001:10::1/64 dev br0.3866 && ip address add 2001:20::1/64 dev br0.671 && ip address add 2001:30::1/64 dev br0.2767 && ip address add 2001:40::1/64 dev br0.2563 && ip address add 2001:100::1/64 dev swp1 INFO asyncssh:logging.py:92 [conn=143, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:100::2/64', 'count': 1, 'ip': '2001:100::2', 'gw': '2001:100::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:10::2/64', 'count': 1, 'ip': '2001:10::2', 'gw': '2001:10::1', 'plen': 64, 'vlan': 3866, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:30::2/64', 'count': 1, 'ip': '2001:30::2', 'gw': '2001:30::1', 'plen': 64, 'vlan': 2767, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:20::2/64', 'count': 1, 'ip': '2001:20::2', 'gw': '2001:20::1', 'plen': 64, 'vlan': 671, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:40::2/64', 'count': 1, 'ip': '2001:40::2', 'gw': '2001:40::1', 'plen': 64, 'vlan': 2563, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:100::2/64 to 10.36.118.199:1:6_2001:10::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:100::2/64 to 10.36.118.199:1:6_2001:30::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:100::2/64 to 10.36.118.199:1:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:100::2/64 to 10.36.118.199:1:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 <-> 10.36.118.199:1:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:10::2/64 to 10.36.118.199:1:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:10::2/64 to 10.36.118.199:1:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:30::2/64 to 10.36.118.199:1:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:30::2/64 to 10.36.118.199:1:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:100::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:10::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:30::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22413f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:10:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 5050062 Rx 5050062 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:30:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 5050061 Rx 5050061 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:100:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:100:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:20:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 5050062 Rx 5050062 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:40:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 5050061 Rx 5050061 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:100:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:100:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:10:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:10:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:20:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 SIP-DIP 2001:40:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:20:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:30:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:30:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 44441 Rx 44441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> 10.36.118.199:1:7 #1 SIP-DIP 2001:40:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 44441 Rx 44441 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_on_bridge_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=143, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=20] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:11:33 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=143, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=143, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=143, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":114,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=143, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=143, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=25] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=143, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=26] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=143, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=26] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=28] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:11:33 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=143, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=143, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=30] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=143, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=143, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=143, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=34] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=143, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=34] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_bridge.py::test_ipv6_move_host_on_bridge | 251.56 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7806' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_move_host_on_bridge">Starting testcase:test_ipv6_move_host_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=144] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=144] Local address: 172.17.0.4, port 49892 INFO asyncssh:logging.py:92 [conn=144] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=144] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=144] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:11:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=144, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=144, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=144, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=144, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=144, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=144, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:11:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=144, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=144, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=144, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=144, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=10] Command: ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=144, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev br0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=12] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev br0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp br0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=144, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=144, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2241270>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 45647 Rx 45647 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 45647 Rx 45647 Loss 0.000 INFO asyncssh:logging.py:92 [conn=144, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=144, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"br0","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_::/64', 'count': 1, 'ip': '::', 'gw': '::', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> 10.36.118.199:1:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:7_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_::/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a252e320>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 43628 Rx 43628 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 43628 Rx 43628 Loss 0.000 INFO asyncssh:logging.py:92 [conn=144, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=144, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=144, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=26] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=144, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=28] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::213:1ff:fe00:1","dev":"br0","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::e85f:f0ff:febc:96aa","dev":"ma1","lladdr":"ea:5f:f0:bc:96:aa","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_move_host_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=144, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=30] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:15:45 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=144, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=144, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=144, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":119,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=144, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=144, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=144, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=144, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=35] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=144, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=36] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=144, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=36] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=38] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:15:45 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=144, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=144, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=40] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=144, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=144, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=144, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=144, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=144, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=44] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=144, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=44] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_ipv4.py::test_ipv64_nh_reconfig | 384.05 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7863' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv64_nh_reconfig">Starting testcase:test_ipv64_nh_reconfig from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=145] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=145] Local address: 172.17.0.4, port 54536 INFO asyncssh:logging.py:92 [conn=145] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=145] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=145] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:15:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=145, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=145, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=145, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=145, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=145, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=145, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:15:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=145, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=145, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=145, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=8] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=145, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=145, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=145, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:15:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=145, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.2.1.2/24', 'count': 1, 'ip': '1.2.1.2', 'gw': '1.2.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.3.1.2/24', 'count': 1, 'ip': '1.3.1.2', 'gw': '1.3.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.4.1.2/24', 'count': 1, 'ip': '1.4.1.2', 'gw': '1.4.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=145, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=145, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=16] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=145, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 1.2.1.1/24 dev swp2 && ip address add 1.3.1.1/24 dev swp3 && ip address add 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=18] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 1.2.1.1/24 dev swp2 && ip address add 1.3.1.1/24 dev swp3 && ip address add 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp1 INFO asyncssh:logging.py:92 [conn=145, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=20] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp1 INFO asyncssh:logging.py:92 [conn=145, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=22] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 <-> ['10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_1.2.1.2/24 to 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_1.2.1.2/24 to 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_1.3.1.2/24 to 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2241c90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.1.1.2-1.2.1.2 Tx 42423 Rx 42423 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.1.1.2-1.3.1.2 Tx 42423 Rx 42423 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.1.1.2-1.4.1.2 Tx 42423 Rx 42423 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.2.1.2-1.1.1.2 Tx 42423 Rx 42423 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.3.1.2-1.1.1.2 Tx 42423 Rx 42423 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.4.1.2-1.1.1.2 Tx 42423 Rx 42423 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.2.1.2-1.3.1.2 Tx 42423 Rx 42423 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.2.1.2-1.4.1.2 Tx 42423 Rx 42423 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.3.1.2-1.2.1.2 Tx 42423 Rx 42423 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.4.1.2-1.2.1.2 Tx 42423 Rx 42423 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] SIP-DIP 1.3.1.2-1.4.1.2 Tx 42423 Rx 42423 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] SIP-DIP 1.4.1.2-1.3.1.2 Tx 42423 Rx 42423 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:8 -> nexthop SIP-DIP Tx 42423 Rx 42423 Loss 0.000 INFO asyncssh:logging.py:92 [conn=145, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=24] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"1.3.1.2","dev":"swp3","lladdr":"00:15:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.5","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.2.1.2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.4.1.2","dev":"swp4","lladdr":"00:17:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=26] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"1.3.1.2","dev":"swp3","lladdr":"00:15:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.5","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.2.1.2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.4.1.2","dev":"swp4","lladdr":"00:17:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=28] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::e85f:f0ff:febc:96aa","dev":"ma1","lladdr":"ea:5f:f0:bc:96:aa","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp1","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=32] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp1","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=34] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:5 <-> ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:6 <-> ['10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=145, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip address delete 1.1.1.1/24 dev swp1 && ip address delete 1.2.1.1/24 dev swp2 && ip address delete 1.3.1.1/24 dev swp3 && ip address delete 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=36] Command: ip address delete 1.1.1.1/24 dev swp1 && ip address delete 1.2.1.1/24 dev swp2 && ip address delete 1.3.1.1/24 dev swp3 && ip address delete 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1::1/64 dev swp1 && ip address add 2001:2::1/64 dev swp2 && ip address add 2001:3::1/64 dev swp3 && ip address add 2001:4::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=38] Command: ip address add 2001:1::1/64 dev swp1 && ip address add 2001:2::1/64 dev swp2 && ip address add 2001:3::1/64 dev swp3 && ip address add 2001:4::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 2001:1::5 lladdr 02:00:00:00:00:02 dev swp1 INFO asyncssh:logging.py:92 [conn=145, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=40] Command: ip neigh add 2001:1::5 lladdr 02:00:00:00:00:02 dev swp1 INFO asyncssh:logging.py:92 [conn=145, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip route add 2001:1234::/64 nexthop via 2001:1::5 INFO asyncssh:logging.py:92 [conn=145, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=42] Command: ip route add 2001:1234::/64 nexthop via 2001:1::5 INFO asyncssh:logging.py:92 [conn=145, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1::2/64 to 10.36.118.199:1:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1::2/64 to 10.36.118.199:1:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1::2/64 to 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 <-> ['10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:2::2/64 to 10.36.118.199:1:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:2::2/64 to 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_2001:3::2/64 to 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp 4 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a25c11e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 44496 Rx 44496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 44496 Rx 44496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 44496 Rx 44496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 44496 Rx 44496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 44496 Rx 44496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 44496 Rx 44496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 44496 Rx 44496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 44496 Rx 44496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 44496 Rx 44496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 44496 Rx 44496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 44496 Rx 44496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 44496 Rx 44496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:8 -> nexthop SIP-DIP Tx 44496 Rx 44496 Loss 0.000 INFO asyncssh:logging.py:92 [conn=145, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=44] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp3","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1::5","dev":"swp1","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"2001:2::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3::2","dev":"swp3","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::e85f:f0ff:febc:96aa","dev":"ma1","lladdr":"ea:5f:f0:bc:96:aa","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp4","lladdr":"00:18:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:4::2","dev":"swp4","lladdr":"00:18:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=46] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=48] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=48] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp3","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1::5","dev":"swp1","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"2001:2::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3::2","dev":"swp3","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::e85f:f0ff:febc:96aa","dev":"ma1","lladdr":"ea:5f:f0:bc:96:aa","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp4","lladdr":"00:18:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:4::2","dev":"swp4","lladdr":"00:18:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=50] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=50] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp1","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=145, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=52] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=145, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=54] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=54] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp1","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:5 <-> ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:6 <-> ['10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=145, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip address delete 2001:1::1/64 dev swp1 && ip address delete 2001:2::1/64 dev swp2 && ip address delete 2001:3::1/64 dev swp3 && ip address delete 2001:4::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=56] Command: ip address delete 2001:1::1/64 dev swp1 && ip address delete 2001:2::1/64 dev swp2 && ip address delete 2001:3::1/64 dev swp3 && ip address delete 2001:4::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 1.2.1.1/24 dev swp2 && ip address add 1.3.1.1/24 dev swp3 && ip address add 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=58] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 1.2.1.1/24 dev swp2 && ip address add 1.3.1.1/24 dev swp3 && ip address add 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp1 INFO asyncssh:logging.py:92 [conn=145, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=60] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp1 INFO asyncssh:logging.py:92 [conn=145, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=62] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=62] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 <-> ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 <-> ['10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_1.2.1.2/24 to 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_1.2.1.2/24 to 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:7_1.3.1.2/24 to 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a25c2c20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.1.1.2-1.2.1.2 Tx 44405 Rx 44405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.1.1.2-1.3.1.2 Tx 44405 Rx 44405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.1.1.2-1.4.1.2 Tx 44404 Rx 44404 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.2.1.2-1.1.1.2 Tx 44405 Rx 44405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.3.1.2-1.1.1.2 Tx 44405 Rx 44405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:5 <-> ['10.36.118.199:1:6' '10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.4.1.2-1.1.1.2 Tx 44405 Rx 44405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.2.1.2-1.3.1.2 Tx 44405 Rx 44405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.2.1.2-1.4.1.2 Tx 44405 Rx 44405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.3.1.2-1.2.1.2 Tx 44405 Rx 44405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:6 <-> ['10.36.118.199:1:7' '10.36.118.199:1:8'] SIP-DIP 1.4.1.2-1.2.1.2 Tx 44405 Rx 44405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] SIP-DIP 1.3.1.2-1.4.1.2 Tx 44405 Rx 44405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] SIP-DIP 1.4.1.2-1.3.1.2 Tx 44405 Rx 44405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:8 -> nexthop SIP-DIP Tx 44405 Rx 44405 Loss 0.000 INFO asyncssh:logging.py:92 [conn=145, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"1.3.1.2","dev":"swp3","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.5","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.2.1.2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.4.1.2","dev":"swp4","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=66] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=66] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"1.3.1.2","dev":"swp3","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.5","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.2.1.2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.4.1.2","dev":"swp4","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=68] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=68] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1::2","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp3","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"2001:1::5","dev":"swp1","lladdr":"02:00:00:00:00:02","state":["PERMANENT"]},{"dst":"2001:2::2","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:3::2","dev":"swp3","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"fe80::e85f:f0ff:febc:96aa","dev":"ma1","lladdr":"ea:5f:f0:bc:96:aa","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp4","lladdr":"00:18:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:4::2","dev":"swp4","lladdr":"00:18:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=69] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=70] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=70] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp1","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=71] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=72] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=72] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp2","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp4","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp1","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=74] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=74] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp1","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:5 <-> ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:6 <-> ['10.36.118.199:1:7', '10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:7 <-> ['10.36.118.199:1:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:1:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=145, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip address delete 1.1.1.1/24 dev swp1 && ip address delete 1.2.1.1/24 dev swp2 && ip address delete 1.3.1.1/24 dev swp3 && ip address delete 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=76] Command: ip address delete 1.1.1.1/24 dev swp1 && ip address delete 1.2.1.1/24 dev swp2 && ip address delete 1.3.1.1/24 dev swp3 && ip address delete 1.4.1.1/24 dev swp4 INFO asyncssh:logging.py:92 [conn=145, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=76] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv64_nh_reconfig from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py INFO asyncssh:logging.py:92 [conn=145, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=77] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=145, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=78] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=145, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=78] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=145, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=79] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=145, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=80] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=145, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=80] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=81] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=82] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:22:09 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=145, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=83] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=145, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=84] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=145, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=84] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=85] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=86] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=86] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=145, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=87] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=145, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=88] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=145, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=88] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_ipv4.py::test_ipv64_nh_routes | 152.92 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7963' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv64_nh_routes">Starting testcase:test_ipv64_nh_routes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=146] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=146] Local address: 172.17.0.4, port 54788 INFO asyncssh:logging.py:92 [conn=146] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=146] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=146] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:22:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=146, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=146, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=146, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=146, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=146, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=146, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:22:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=146, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=146, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=146, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=8] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=146, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=146, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=146, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=12] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:22:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=146, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=146, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=146, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=16] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=146, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.3.1.2/24', 'count': 1, 'ip': '1.3.1.2', 'gw': '1.3.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=146, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev swp1 && ip address add 2001:2::1/64 dev swp2 && ip address add 1.3.1.1/24 dev swp3 && ip address add 2001:4::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=146, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=18] Command: ip address add 1.1.1.1/24 dev swp1 && ip address add 2001:2::1/64 dev swp2 && ip address add 1.3.1.1/24 dev swp3 && ip address add 2001:4::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=146, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2001:2::5 lladdr 02:00:00:00:00:02 dev swp2 INFO asyncssh:logging.py:92 [conn=146, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=20] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp1 && ip neigh add 2001:2::5 lladdr 02:00:00:00:00:02 dev swp2 INFO asyncssh:logging.py:92 [conn=146, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 2001:1234::/64 nexthop via 2001:2::5 INFO asyncssh:logging.py:92 [conn=146, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=22] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 2001:1234::/64 nexthop via 2001:2::5 INFO asyncssh:logging.py:92 [conn=146, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4: 10.36.118.199:1:5 <-> 10.36.118.199:1:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.2/24 to 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv6: 10.36.118.199:1:6 <-> 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:2::2/64 to 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4: addr_info(swp='swp3', tg='10.36.118.199:1:7', swp_ip='1.3.1.1', tg_ip='1.3.1.2', plen=24) -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv6: addr_info(swp='swp4', tg='10.36.118.199:1:8', swp_ip='2001:4::1', tg_ip='2001:4::2', plen=64) -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a25c26e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI ipv4: 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 1.1.1.2-1.3.1.2 Tx 44434 Rx 44434 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI ipv4: 10.36.118.199:1:5 <-> 10.36.118.199:1:7 SIP-DIP 1.3.1.2-1.1.1.2 Tx 44434 Rx 44434 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI ipv6: 10.36.118.199:1:6 <-> 10.36.118.199:1:8 SIP-DIP 2001:2:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 44434 Rx 44434 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI ipv6: 10.36.118.199:1:6 <-> 10.36.118.199:1:8 SIP-DIP 2001:4:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 44434 Rx 44434 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI ipv4: addr_info(swp='swp3' tg='10.36.118.199:1:7' swp_ip='1.3.1.1' tg_ip='1.3.1.2' plen=24) -> nexthop SIP-DIP Tx 44434 Rx 44434 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI ipv6: addr_info(swp='swp4' tg='10.36.118.199:1:8' swp_ip='2001:4::1' tg_ip='2001:4::2' plen=64) -> nexthop SIP-DIP Tx 44434 Rx 44434 Loss 0.000 INFO asyncssh:logging.py:92 [conn=146, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=24] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"1.3.1.2","dev":"swp3","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.1.1.5","dev":"swp1","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=146, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=26] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::214:1ff:fe00:1","dev":"swp4","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::e85f:f0ff:febc:96aa","dev":"ma1","lladdr":"ea:5f:f0:bc:96:aa","state":["STALE"]},{"dst":"2001:2::5","dev":"swp2","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:4::2","dev":"swp4","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=146, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=146, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=146, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp1","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp3","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp1","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=146, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=146, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=146, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:2::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:2::5","dev":"swp2","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv64_nh_routes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py INFO asyncssh:logging.py:92 [conn=146, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=31] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=146, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=32] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=146, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=32] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=146, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=33] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=146, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=146, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=34] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=36] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:24:42 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=146, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=146, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=38] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=146, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=146, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=146, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=42] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=146, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=42] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_nei.py::test_ipv6_nei_ageing | 314.99 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8017' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nei_ageing">Starting testcase:test_ipv6_nei_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=147] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=147] Local address: 172.17.0.4, port 33398 INFO asyncssh:logging.py:92 [conn=147] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=147] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=147] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:24:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=147, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=147, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=147, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=147, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=147, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=147, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:24:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=147, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=147, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=147, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp1 && ip address add 2001:3333::1/64 dev swp2 && ip address add 2001:4444::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=147, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=10] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp1 && ip address add 2001:3333::1/64 dev swp2 && ip address add 2001:4444::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=147, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=147, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=147, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=12] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=147, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=147, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=147, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=14] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=147, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=147, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=15] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp1.gc_stale_time&& sysctl net.ipv6.neigh.swp2.gc_stale_time&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=147, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=16] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp1.gc_stale_time&& sysctl net.ipv6.neigh.swp2.gc_stale_time&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=147, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=16] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.swp1.gc_stale_time = 60 net.ipv6.neigh.swp2.gc_stale_time = 60 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=147, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=17] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_stale_time=30&& sysctl net.ipv6.neigh.swp1.gc_stale_time=30&& sysctl net.ipv6.neigh.swp2.gc_stale_time=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=147, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=18] Command: sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_stale_time=30&& sysctl net.ipv6.neigh.swp1.gc_stale_time=30&& sysctl net.ipv6.neigh.swp2.gc_stale_time=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=147, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=18] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_stale_time = 30 net.ipv6.neigh.swp1.gc_stale_time = 30 net.ipv6.neigh.swp2.gc_stale_time = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:1:6_2001:3333::2/64 INFO asyncssh:logging.py:92 [conn=147, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=22] Received channel close DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=147, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=21] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=24] Requesting new SSH session DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=22] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=23] Command: echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=147, chan=24] Command: echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=25] Command: echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=26] Command: echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=26] Received channel close DEBUG agg1:Logger.py:156 PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.249 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.249/0.249/0.249/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:2222::2 on agg1 with rc 0 and out PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.249 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.249/0.249/0.249/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=26] Channel closed DEBUG agg1:Logger.py:156 PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.208 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.208/0.208/0.208/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:3333::2 on agg1 with rc 0 and out PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.208 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.208/0.208/0.208/0.000 ms DEBUG agg1:Logger.py:156 PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.358 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.358/0.358/0.358/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:1111::2 on agg1 with rc 0 and out PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.358 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.358/0.358/0.358/0.000 ms DEBUG agg1:Logger.py:156 PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.139 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.139/0.139/0.139/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:4444::2 on agg1 with rc 0 and out PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.139 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.139/0.139/0.139/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=28] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=147, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=30] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::e85f:f0ff:febc:96aa","dev":"ma1","lladdr":"ea:5f:f0:bc:96:aa","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=32] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=34] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::e85f:f0ff:febc:96aa","dev":"ma1","lladdr":"ea:5f:f0:bc:96:aa","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Neighbors matched expectation after 10.0s INFO DENT:Logger.py:84 [DENT aggregation 1] Wait for a total of gc_stale_time_s * 3 = 90s to make sure that neighbors did not age INFO asyncssh:logging.py:92 [conn=147, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=36] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=38] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp2","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::e85f:f0ff:febc:96aa","dev":"ma1","lladdr":"ea:5f:f0:bc:96:aa","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp1","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=39] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp1.gc_stale_time&& sysctl net.ipv6.neigh.swp2.gc_stale_time INFO asyncssh:logging.py:92 [conn=147, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=40] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp1.gc_stale_time&& sysctl net.ipv6.neigh.swp2.gc_stale_time INFO asyncssh:logging.py:92 [conn=147, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=40] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_stale_time = 30 net.ipv6.neigh.swp1.gc_stale_time = 30 net.ipv6.neigh.swp2.gc_stale_time = 30 INFO asyncssh:logging.py:92 [conn=147, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=41] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_stale_time=90&& sysctl net.ipv6.neigh.swp1.gc_stale_time=90&& sysctl net.ipv6.neigh.swp2.gc_stale_time=90 INFO asyncssh:logging.py:92 [conn=147, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=42] Command: sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_stale_time=90&& sysctl net.ipv6.neigh.swp1.gc_stale_time=90&& sysctl net.ipv6.neigh.swp2.gc_stale_time=90 INFO asyncssh:logging.py:92 [conn=147, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=42] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_thresh1 = 1 net.ipv6.neigh.default.gc_thresh2 = 20 net.ipv6.neigh.default.gc_thresh3 = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_stale_time = 90 net.ipv6.neigh.swp1.gc_stale_time = 90 net.ipv6.neigh.swp2.gc_stale_time = 90 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:1:6_2001:3333::2/64 INFO asyncssh:logging.py:92 [conn=147, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=45] Received channel close DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=147, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=44] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=45] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=46] Received channel close DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=48] Requesting new SSH session DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=46] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=47] Command: echo onl | sudo -S ping -c 1 2001:1111::2 DEBUG agg1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=48] Command: echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=49] Command: echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=50] Command: echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=48] Received channel close DEBUG agg1:Logger.py:156 PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.165 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.165/0.165/0.165/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:1111::2 on agg1 with rc 0 and out PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.165 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.165/0.165/0.165/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=48] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=50] Received channel close DEBUG agg1:Logger.py:156 PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.494 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.494/0.494/0.494/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:2222::2 on agg1 with rc 0 and out PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.494 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.494/0.494/0.494/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=49] Received channel close DEBUG agg1:Logger.py:156 PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.324 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.324/0.324/0.324/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:4444::2 on agg1 with rc 0 and out PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.324 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.324/0.324/0.324/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=49] Channel closed DEBUG agg1:Logger.py:156 PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.155 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.155/0.155/0.155/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Ran ping -c 1 2001:3333::2 on agg1 with rc 0 and out PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.155 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.155/0.155/0.155/0.000 ms INFO DENT:Logger.py:84 [DENT aggregation 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=52] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=147, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=54] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=54] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=147, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=56] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=56] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=58] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=58] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Neighbors matched expectation after 5.0s INFO DENT:Logger.py:84 [DENT aggregation 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=60] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=60] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=62] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=62] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=66] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=66] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=68] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=68] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=69] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=70] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=70] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=71] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=72] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=72] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=147, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=74] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=74] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Neighbors matched expectation after 30.0s INFO DENT:Logger.py:84 [DENT aggregation 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=76] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=76] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=147, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=77] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=78] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=78] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=79] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=80] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=80] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=81] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=82] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=82] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=83] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=84] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=84] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=85] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=86] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=86] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=87] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=88] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=88] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=89] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=90] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=90] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=91] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=92] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=92] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=93] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=94] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=94] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=95] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=96] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=96] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=97] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=98] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=98] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp2","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp1","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=99] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=100] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=100] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=101] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=102] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=102] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp2","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=103] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=104] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=104] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=147, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=105] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=106] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=106] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::213:1ff:fe00:1","dev":"swp2","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Neighbors matched expectation after 70.0s -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nei_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=147, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=107] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp1.gc_stale_time=60&& sysctl net.ipv6.neigh.swp2.gc_stale_time=60&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_thresh1=128&& sysctl net.ipv6.neigh.default.gc_thresh2=512&& sysctl net.ipv6.neigh.default.gc_thresh3=1024 INFO asyncssh:logging.py:92 [conn=147, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=108] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp1.gc_stale_time=60&& sysctl net.ipv6.neigh.swp2.gc_stale_time=60&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_thresh1=128&& sysctl net.ipv6.neigh.default.gc_thresh2=512&& sysctl net.ipv6.neigh.default.gc_thresh3=1024 INFO asyncssh:logging.py:92 [conn=147, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=108] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.swp1.gc_stale_time = 60 net.ipv6.neigh.swp2.gc_stale_time = 60 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=109] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=110] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=110] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:29:57 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=147, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=111] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=147, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=112] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=147, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=112] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=113] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=147, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=114] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=147, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=114] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=147, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=115] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=147, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=116] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=147, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=116] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_nei.py::test_ipv6_nei_change | 228.87 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8153' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nei_change">Starting testcase:test_ipv6_nei_change from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=148] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=148] Local address: 172.17.0.4, port 57748 INFO asyncssh:logging.py:92 [conn=148] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=148] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=148] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:29:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=148, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=148, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=148, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=148, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=148, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=148, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:29:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=148, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=7] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=148, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=8] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=148, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=8] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=148, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=35000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=10] Command: sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=35000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 15 net.ipv6.neigh.default.base_reachable_time_ms = 35000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=148, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=148, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=12] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=148, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=148, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=14] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=148, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=148, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=148, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=148, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=148, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=148, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=148, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=148, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=148, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_2001:1111::2/64 to 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_2001:2222::2/64 to 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22c64a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dummy SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 445 Rx 445 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dummy #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 445 Rx 445 Loss 0.000 INFO DENT:Logger.py:84 [DENT aggregation 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=148, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=22] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=24] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=148, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=26] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=28] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Neighbors matched expectation after 5.0s INFO asyncssh:logging.py:92 [conn=148, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=30] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud permanent dev swp2 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud permanent dev swp1 INFO asyncssh:logging.py:92 [conn=148, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=32] Command: ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud permanent dev swp2 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud permanent dev swp1 INFO asyncssh:logging.py:92 [conn=148, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=34] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=36] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["PERMANENT"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Waiting for neighbor state to change INFO asyncssh:logging.py:92 [conn=148, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=38] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=40] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=148, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud reachable dev swp2 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud reachable dev swp1 INFO asyncssh:logging.py:92 [conn=148, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=42] Command: ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud reachable dev swp2 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud reachable dev swp1 INFO asyncssh:logging.py:92 [conn=148, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=44] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=46] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=148, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=48] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=48] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=50] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=50] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=52] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=54] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=54] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=56] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=56] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=148, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=58] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=58] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=60] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=60] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=62] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=62] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Neighbors matched expectation after 30.0s INFO asyncssh:logging.py:92 [conn=148, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 2001:1111::1:7c26 lladdr 02:00:00:00:00:b7 nud permanent dev swp1 && ip neigh add 2001:2222::2:8bd2 lladdr 02:00:00:00:01:e9 nud permanent dev swp2 && ip neigh add 2001:1111::3:3fda lladdr 02:00:00:00:02:7c nud stale dev swp1 && ip neigh add 2001:2222::4:7f87 lladdr 02:00:00:00:03:5a nud stale dev swp2 INFO asyncssh:logging.py:92 [conn=148, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=64] Command: ip neigh add 2001:1111::1:7c26 lladdr 02:00:00:00:00:b7 nud permanent dev swp1 && ip neigh add 2001:2222::2:8bd2 lladdr 02:00:00:00:01:e9 nud permanent dev swp2 && ip neigh add 2001:1111::3:3fda lladdr 02:00:00:00:02:7c nud stale dev swp1 && ip neigh add 2001:2222::4:7f87 lladdr 02:00:00:00:03:5a nud stale dev swp2 INFO asyncssh:logging.py:92 [conn=148, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=66] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=66] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=68] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=68] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::4:7f87","dev":"swp2","lladdr":"02:00:00:00:03:5a","offload":null,"state":["STALE"]},{"dst":"2001:1111::1:7c26","dev":"swp1","lladdr":"02:00:00:00:00:b7","offload":null,"state":["PERMANENT"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::3:3fda","dev":"swp1","lladdr":"02:00:00:00:02:7c","offload":null,"state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2:8bd2","dev":"swp2","lladdr":"02:00:00:00:01:e9","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=148, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=69] Channel closed DEBUG agg1:Logger.py:156 ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 && ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 INFO asyncssh:logging.py:92 [conn=148, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=70] Command: ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 && ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 INFO asyncssh:logging.py:92 [conn=148, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=70] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=71] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=72] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=72] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=74] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=74] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::1:7c26","dev":"swp1","state":["FAILED"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::3:3fda","dev":"swp1","lladdr":"02:00:00:00:02:7c","offload":null,"state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2:8bd2","dev":"swp2","lladdr":"02:00:00:00:01:e9","offload":null,"state":["PERMANENT"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:1:6_2001:2222::2/64 INFO asyncssh:logging.py:92 [conn=148, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip neigh delete 2001:2222::2:8bd2 lladdr 02:00:00:00:01:e9 nud permanent dev swp2 && ip neigh delete 2001:1111::3:3fda lladdr 02:00:00:00:02:7c nud stale dev swp1 INFO asyncssh:logging.py:92 [conn=148, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=76] Command: ip neigh delete 2001:2222::2:8bd2 lladdr 02:00:00:00:01:e9 nud permanent dev swp2 && ip neigh delete 2001:1111::3:3fda lladdr 02:00:00:00:02:7c nud stale dev swp1 INFO asyncssh:logging.py:92 [conn=148, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=76] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=148, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=77] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=78] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=78] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=79] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=80] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=80] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:1111::1:7c26","dev":"swp1","state":["FAILED"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::3:3fda","dev":"swp1","state":["FAILED"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:2222::2:8bd2","dev":"swp2","state":["FAILED"]}] INFO asyncssh:logging.py:92 [conn=148, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=81] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=82] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=82] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=148, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=83] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=84] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=84] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp2","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::1:7c26","dev":"swp1","state":["FAILED"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp2","lladdr":"00:12:01:00:00:01","state":["DELAY"]},{"dst":"2001:1111::3:3fda","dev":"swp1","state":["FAILED"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp1","lladdr":"00:11:01:00:00:01","state":["DELAY"]},{"dst":"2001:1111::2","dev":"swp1","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2:8bd2","dev":"swp2","state":["FAILED"]}] INFO DENT:Logger.py:84 [DENT aggregation 1] Neighbors matched expectation after 10.0s -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nei_change from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=148, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=85] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=86] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=86] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=87] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=88] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:33:45 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=148, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=89] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=148, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=90] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=148, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=90] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=91] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=148, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=92] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=148, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=92] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=148, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=93] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=148, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=94] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=148, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=94] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_route_default_offload | 156.11 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8258' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_default_offload">Starting testcase:test_ipv6_route_default_offload from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=149] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=149] Local address: 172.17.0.4, port 60090 INFO asyncssh:logging.py:92 [conn=149] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=149] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=149] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:33:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=149, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=2] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=4] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=4] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=149, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=6] Command: ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=8] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:33:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=149, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=149, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=10] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=149, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=10] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=149, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=149, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=12] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=149, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=14] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:33:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=149, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=16] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=149, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up INFO asyncssh:logging.py:92 [conn=149, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=18] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up INFO asyncssh:logging.py:92 [conn=149, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 INFO asyncssh:logging.py:92 [conn=149, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=20] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 INFO asyncssh:logging.py:92 [conn=149, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 2001:5555::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=149, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip route add default metric 200 via 2001:2222::2 dev swp2 && ip route add default metric 300 via 2001:3333::2 dev swp3 INFO asyncssh:logging.py:92 [conn=149, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=22] Command: ip route add default metric 200 via 2001:2222::2 dev swp2 && ip route add default metric 300 via 2001:3333::2 dev swp3 INFO asyncssh:logging.py:92 [conn=149, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=24] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=26] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"default","gateway":"2001:2222::2","dev":"swp2","metric":200,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp3","metric":300,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22c7310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 2001:5555::5 SIP-DIP N/A Tx 35585 Rx 35585 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 -> 2001:5555::5 SIP-DIP N/A Tx 35584 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=149, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip route add default metric 100 via 2001:3333::2 dev swp3 INFO asyncssh:logging.py:92 [conn=149, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=28] Command: ip route add default metric 100 via 2001:3333::2 dev swp3 INFO asyncssh:logging.py:92 [conn=149, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=32] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp3","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"default","gateway":"2001:2222::2","dev":"swp2","metric":200,"flags":["offload"],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp3","metric":300,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a227b430>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 2001:5555::5 SIP-DIP N/A Tx 80674 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 -> 2001:5555::5 SIP-DIP N/A Tx 80673 Rx 80673 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_default_offload from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=149, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=33] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=149, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=149, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=34] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=36] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:36:22 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=149, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=149, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=38] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=149, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=149, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=149, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=42] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=149, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=44] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=46] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=149, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=48] Command: ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=48] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_route_lpm | 182.06 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8319' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_lpm">Starting testcase:test_ipv6_route_lpm from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=150] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=150] Local address: 172.17.0.4, port 60152 INFO asyncssh:logging.py:92 [conn=150] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=150] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=150] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:36:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=150, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=150, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=150, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=150, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=150, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=150, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:36:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=150, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=8] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=150, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=150, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=150, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 && ip address add 2001:4444::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=150, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=12] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 && ip address add 2001:4444::1/64 dev swp4 INFO asyncssh:logging.py:92 [conn=150, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=150, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip route add 2002:1::/64 via 2001:2222::2 && ip route add 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=14] Command: ip route add 2002:1::/64 via 2001:2222::2 && ip route add 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a227b8b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP N/A Tx 44778 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP N/A Tx 44778 Rx 44778 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP N/A Tx 44778 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=150, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=150, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::2","gateway":"2001:3333::2","dev":"swp3","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp2","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=150, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip route delete 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=20] Command: ip route delete 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2279990>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP N/A Tx 80641 Rx 80641 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP N/A Tx 80640 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP N/A Tx 80640 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=150, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=150, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp2","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=150, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip route add 2002:1::/80 via 2001:2222::2 && ip route add 2002:1::/100 via 2001:3333::2 && ip route add 2002:1::/120 via 2001:4444::2 INFO asyncssh:logging.py:92 [conn=150, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=26] Command: ip route add 2002:1::/80 via 2001:2222::2 && ip route add 2002:1::/100 via 2001:3333::2 && ip route add 2002:1::/120 via 2001:4444::2 INFO asyncssh:logging.py:92 [conn=150, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2278760>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP N/A Tx 78741 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP N/A Tx 78740 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP N/A Tx 78740 Rx 78740 Loss 0.000 INFO asyncssh:logging.py:92 [conn=150, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=150, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::/120","gateway":"2001:4444::2","dev":"swp4","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/100","gateway":"2001:3333::2","dev":"swp3","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/80","gateway":"2001:2222::2","dev":"swp2","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp2","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_lpm from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=150, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=31] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=150, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=150, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=32] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=34] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:39:24 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=150, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=150, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=36] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=150, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=150, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=150, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=40] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=150, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=40] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_nh_state | 174.35 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8369' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nh_state">Starting testcase:test_ipv6_nh_state from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=151] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=151] Local address: 172.17.0.4, port 46938 INFO asyncssh:logging.py:92 [conn=151] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=151] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=151] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:39:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=151, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=151, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=151, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=151, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=151, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=151, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:39:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=151, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=8] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=151, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up INFO asyncssh:logging.py:92 [conn=151, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up INFO asyncssh:logging.py:92 [conn=151, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 INFO asyncssh:logging.py:92 [conn=151, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=12] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 INFO asyncssh:logging.py:92 [conn=151, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:2::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:2::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:3::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:3::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:1::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:1::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=151, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip route add 2001:1::/128 via 2001:2222::2 && ip route add 2001:1::/126 via 2001:2222::2 && ip route add 2001:2::/128 via 2001:2222::2 && ip route add 2001:2::/126 via 2001:2222::2 && ip route add 2001:2::/64 via 2001:3333::2 && ip route add 2001:3::/64 metric 10 via 2001:2222::2 && ip route add 2001:3::/64 metric 100 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=151, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=14] Command: ip route add 2001:1::/128 via 2001:2222::2 && ip route add 2001:1::/126 via 2001:2222::2 && ip route add 2001:2::/128 via 2001:2222::2 && ip route add 2001:2::/126 via 2001:2222::2 && ip route add 2001:2::/64 via 2001:3333::2 && ip route add 2001:3::/64 metric 10 via 2001:2222::2 && ip route add 2001:3::/64 metric 100 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=151, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=151, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=16] Command: ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=151, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=151, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=151, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=151, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=151, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=151, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:2::/64","gateway":"2001:3333::2","dev":"swp3","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:3::/64","gateway":"2001:3333::2","dev":"swp3","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22c6800>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic to 2001:2::5 SIP-DIP N/A Tx 933083 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic to 2001:2::5 SIP-DIP N/A Tx 933082 Rx 933082 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic to 2001:2::8 SIP-DIP N/A Tx 933083 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic to 2001:2::8 SIP-DIP N/A Tx 933082 Rx 933082 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic to 2001:3::5 SIP-DIP N/A Tx 933083 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic to 2001:3::5 SIP-DIP N/A Tx 933082 Rx 933082 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic to 2001:3::8 SIP-DIP N/A Tx 933083 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic to 2001:3::8 SIP-DIP N/A Tx 933082 Rx 933082 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic to 2001:1::5 SIP-DIP N/A Tx 933083 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic to 2001:1::5 SIP-DIP N/A Tx 933082 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic to 2001:1::8 SIP-DIP N/A Tx 933083 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic to 2001:1::8 SIP-DIP N/A Tx 933082 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nh_state from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=151, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=21] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=151, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=22] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=151, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=22] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=24] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:42:19 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=151, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=151, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=26] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=151, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=151, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=151, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=30] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=151, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=30] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_route_metrics | 175.74 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8409' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_metrics">Starting testcase:test_ipv6_route_metrics from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=152] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=152] Local address: 172.17.0.4, port 55280 INFO asyncssh:logging.py:92 [conn=152] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=152] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=152] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:42:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=152, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=152, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=152, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=152, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=152, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=152, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:42:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=152, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=8] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=152, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up INFO asyncssh:logging.py:92 [conn=152, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up INFO asyncssh:logging.py:92 [conn=152, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 && ip address add 2001:4444::1/64 dev swp3 INFO asyncssh:logging.py:92 [conn=152, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=12] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 && ip address add 2001:3333::1/64 dev swp3 && ip address add 2001:4444::1/64 dev swp3 INFO asyncssh:logging.py:92 [conn=152, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=152, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip route add 2001:4444::/64 metric 100 via 2001:2222::2 && ip route add 2001:4444::/64 metric 101 via 2001:2222::2 && ip route add 2001:4444::/64 metric 102 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=14] Command: ip route add 2001:4444::/64 metric 100 via 2001:2222::2 && ip route add 2001:4444::/64 metric 101 via 2001:2222::2 && ip route add 2001:4444::/64 metric 102 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22c4f40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP N/A Tx 1054128 Rx 1054128 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP N/A Tx 2108256 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=152, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=152, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp2","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp2","metric":101,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp3","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=152, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip route delete 2001:4444::/64 metric 100 dev swp2 INFO asyncssh:logging.py:92 [conn=152, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=20] Command: ip route delete 2001:4444::/64 metric 100 dev swp2 INFO asyncssh:logging.py:92 [conn=152, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22c57b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP N/A Tx 1895947 Rx 1895947 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP N/A Tx 3791892 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=152, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=152, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp2","metric":101,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp3","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=152, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip route add 2001:4444::/64 metric 99 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=26] Command: ip route add 2001:4444::/64 metric 99 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22c5d80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP N/A Tx 1895643 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP N/A Tx 3791286 Rx 3791286 Loss 0.000 INFO asyncssh:logging.py:92 [conn=152, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=152, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp3","metric":99,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp2","metric":101,"flags":["offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp3","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_metrics from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=152, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=31] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=152, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=152, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=32] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=34] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:45:14 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=152, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=152, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=36] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=152, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=152, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=152, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=40] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=152, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=40] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_icmp | 323.62 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8459' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_icmp">Starting testcase:test_ipv6_icmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=153] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=153] Local address: 172.17.0.4, port 32922 INFO asyncssh:logging.py:92 [conn=153] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=153] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=153] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:45:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=153, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=153, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=153, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=2] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=153, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=153, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=153, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:45:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=153, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=8] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=153, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=153, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=153, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=153, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=12] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:2222::1/64 dev swp2 INFO asyncssh:logging.py:92 [conn=153, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=153, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=153, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=14] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=153, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.44","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3804","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3808","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:3809","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::36ef:b6ff:feec:380a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=153, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=153, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=153, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=153, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=153, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=153, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp2","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp4","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:1:5 -> swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:1:6 -> swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 129" on agg1... INFO asyncssh:logging.py:92 [conn=153, chan=19] Requesting new SSH session INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 20 tcpdump -i swp2 -n -c 10 "icmp6 && ip6[40] == 129" on agg1... INFO asyncssh:logging.py:92 [conn=153, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=153, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=20] Received channel close DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=153, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=20] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp2 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=153, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=21] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=153, chan=22] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp2 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=153, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=153, chan=22] Channel closed DEBUG agg1:Logger.py:156 23:47:05.491752 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 23:47:05.825013 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 23:47:06.158325 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 23:47:06.491653 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 23:47:06.824995 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 23:47:07.158328 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 23:47:07.491636 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 23:47:07.825024 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 23:47:08.158277 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 23:47:08.491656 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 10 packets captured 11 packets received by filter 0 packets dropped by kernel DEBUG agg1:Logger.py:156 23:47:05.491713 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 23:47:05.824987 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 23:47:06.158299 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 23:47:06.491626 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 23:47:06.824967 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 23:47:07.158298 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 23:47:07.491608 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 23:47:07.824987 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 23:47:08.158254 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 23:47:08.491620 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp2, link-type EN10MB (Ethernet), capture size 262144 bytes 10 packets captured 11 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmpv6 10.36.118.199:1:5 -> swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': -1, 'result': 'Unable to delete a started Taffic Item'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 unknown ip INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 1 && ip6[41] == 3" on agg1... INFO asyncssh:logging.py:92 [conn=153, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=23] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 1 && ip6[41] == 3" INFO asyncssh:logging.py:92 [conn=153, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=24] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 1 && ip6[41] == 3" INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=153, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=24] Channel closed DEBUG agg1:Logger.py:156 23:47:56.572160 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 23:47:56.572194 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 23:47:56.572218 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 23:47:56.572241 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 23:47:56.572274 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 23:47:56.572296 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 23:47:59.900196 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 23:47:59.900240 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 23:47:59.900265 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 23:47:59.900288 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 10 packets captured 10 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmpv6 10.36.118.199:1:5 -> swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmpv6 10.36.118.199:1:6 -> swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmpv6 unknown ip INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 hop limit 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 3 && ip6[41] == 0" on agg1... INFO asyncssh:logging.py:92 [conn=153, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=25] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 3 && ip6[41] == 0" INFO asyncssh:logging.py:92 [conn=153, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=26] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 3 && ip6[41] == 0" INFO asyncssh:logging.py:92 [conn=153, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=26] Channel closed DEBUG agg1:Logger.py:156 23:48:43.189975 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 23:48:43.523227 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 23:48:43.856605 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 23:48:44.189865 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 23:48:44.523253 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 23:48:44.856551 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 23:48:45.189834 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 23:48:45.523166 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 23:48:45.856545 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 23:48:46.189832 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 10 packets captured 11 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=153, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=153, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=28] Command: ip link set dev swp1 down && ip link set dev swp1 up && ip link set dev swp2 down && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=153, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:1111::f/64 dev swp2 INFO asyncssh:logging.py:92 [conn=153, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=30] Command: ip address add 2001:1111::1/64 dev swp1 && ip address add 2001:1111::f/64 dev swp2 INFO asyncssh:logging.py:92 [conn=153, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_2001:1111::1f/64', 'count': 1, 'ip': '2001:1111::1f', 'gw': '2001:1111::f', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:1:5 -> 10.36.118.199:1:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_2001:1111::1f/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 137" on agg1... INFO asyncssh:logging.py:92 [conn=153, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=31] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 137" INFO asyncssh:logging.py:92 [conn=153, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=32] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp1 -n -c 10 "icmp6 && ip6[40] == 137" INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=153, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=32] Channel closed DEBUG agg1:Logger.py:156 23:50:33.479306 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 23:50:33.812617 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 23:50:34.145897 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 23:50:34.479233 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 23:50:34.812542 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 23:50:35.145868 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 23:50:35.479232 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 23:50:35.812525 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 23:50:36.479164 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 23:50:37.479163 IP6 fe80::36ef:b6ff:feec:3807 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 10 packets captured 10 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_icmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=153, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=33] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=153, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=153, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=34] Channel closed DEBUG agg1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=36] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:50:38 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=153, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=153, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=38] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=153, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=153, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=153, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=42] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=153, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=42] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/lacp/test_lacp_blocked_port_stp_rstp.py::test_lacp_root_port[rstp] | 44.23 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_root_port[rstp]">Starting testcase:test_lacp_root_port[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8518' coro=<test_lacp_root_port() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py:34> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=154] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=154] Local address: 172.17.0.4, port 35292 INFO asyncssh:logging.py:92 [conn=154] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=154] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=154] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:50:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=154, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=154, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=154, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=154, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=4] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=154, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=5] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=6] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=7] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp INFO asyncssh:logging.py:92 [conn=154, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=8] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp INFO asyncssh:logging.py:92 [conn=154, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=154, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=10] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=154, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=12] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=14] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp6 master bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=16] Command: ip link set dev swp6 master bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp8 master bond_4 INFO asyncssh:logging.py:92 [conn=154, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=18] Command: ip link set dev swp8 master bond_4 INFO asyncssh:logging.py:92 [conn=154, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=154, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=20] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=154, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=22] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=23] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=154, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=24] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=154, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=25] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=154, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=26] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=154, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=154, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=28] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=154, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up INFO asyncssh:logging.py:92 [conn=154, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=30] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up INFO asyncssh:logging.py:92 [conn=154, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=154, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=32] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=154, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=33] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=154, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=34] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=154, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"15","topology-change-count":"1","topology-change":"no","topology-change-port":"bond_1","last-topology-change-port":"bond_2"}] INFO asyncssh:logging.py:92 [conn=154, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=35] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=36] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"bond_3 (#1)","path-cost":"2000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"15","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"bond_3"}] INFO asyncssh:logging.py:92 [conn=154, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=37] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=38] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"port":"bond_3","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_4","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"2","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=154, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=39] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=154, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=40] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=154, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"port":"bond_1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"12","num-rx-bpdu":"4","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_2","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"12","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=154, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=41] Channel closed DEBUG agg1:Logger.py:156 mstpctl settreeportprio bridge_1 bond_2 0 7 INFO asyncssh:logging.py:92 [conn=154, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=42] Command: mstpctl settreeportprio bridge_1 bond_2 0 7 INFO asyncssh:logging.py:92 [conn=154, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=43] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=44] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"port":"bond_3","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.001","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"22","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"4","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_4","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"7.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"22","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_root_port[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py INFO asyncssh:logging.py:92 [conn=154, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=45] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=46] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:51:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=154, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=154, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=48] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=154, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=48] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":124,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":125,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=154, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=50] Command: ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=51] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=52] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:51:22 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=154, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=154, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=54] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=154, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=54] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":120,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":121,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":122,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":123,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=154, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=56] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=58] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=60] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=154, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=62] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=154, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=62] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=63] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=64] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:51:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lacp/test_lacp_blocked_port_stp_rstp.py::test_lacp_root_port[stp] | 84.03 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_root_port[stp]">Starting testcase:test_lacp_root_port[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8595' coro=<test_lacp_root_port() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py:34> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=155] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=155] Local address: 172.17.0.4, port 51792 INFO asyncssh:logging.py:92 [conn=155] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=155] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=155] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:51:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=155, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=155, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=155, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=155, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=4] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=155, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=5] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=6] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=7] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp INFO asyncssh:logging.py:92 [conn=155, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=8] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp INFO asyncssh:logging.py:92 [conn=155, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=155, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=10] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=155, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=155, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=12] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=155, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=155, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=14] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=155, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp6 master bond_3 INFO asyncssh:logging.py:92 [conn=155, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=16] Command: ip link set dev swp6 master bond_3 INFO asyncssh:logging.py:92 [conn=155, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp8 master bond_4 INFO asyncssh:logging.py:92 [conn=155, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=18] Command: ip link set dev swp8 master bond_4 INFO asyncssh:logging.py:92 [conn=155, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=155, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=20] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=155, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=22] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=23] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=155, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=24] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=155, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=25] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=155, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=26] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=155, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=155, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=28] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=155, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up INFO asyncssh:logging.py:92 [conn=155, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=30] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up INFO asyncssh:logging.py:92 [conn=155, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=155, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=32] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=155, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=33] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=155, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=34] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=155, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"bond_1","last-topology-change-port":"bond_2"}] INFO asyncssh:logging.py:92 [conn=155, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=35] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=36] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"bond_3 (#1)","path-cost":"2000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"3","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"bond_3"}] INFO asyncssh:logging.py:92 [conn=155, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=37] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=38] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"port":"bond_3","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_4","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"2","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"3","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=155, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=39] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=155, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=40] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=155, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"port":"bond_1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"21","num-rx-bpdu":"4","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_2","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"21","num-rx-bpdu":"2","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=155, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=41] Channel closed DEBUG agg1:Logger.py:156 mstpctl settreeportprio bridge_1 bond_2 0 7 INFO asyncssh:logging.py:92 [conn=155, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=42] Command: mstpctl settreeportprio bridge_1 bond_2 0 7 INFO asyncssh:logging.py:92 [conn=155, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=43] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=44] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"port":"bond_3","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.001","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"41","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"24","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_4","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"7.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"41","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"23","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_root_port[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py INFO asyncssh:logging.py:92 [conn=155, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=45] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=46] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:52:46 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=155, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=155, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=48] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=155, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=48] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":130,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":131,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=155, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=50] Command: ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=51] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=52] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:52:46 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=155, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=155, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=54] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=155, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=54] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":126,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":127,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":128,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":129,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=155, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=155, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=56] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=155, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=155, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=58] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=155, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=155, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=60] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=155, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=155, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=62] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=155, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=62] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=63] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=64] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:52:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lacp/test_lacp_distribution_over_ecmp.py::test_lacp_ecmp_distribution_over_lag | 155.37 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8672' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_ecmp_distribution_over_lag">Starting testcase:test_lacp_ecmp_distribution_over_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_distribution_over_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=156] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=156] Local address: 172.17.0.4, port 43798 INFO asyncssh:logging.py:92 [conn=156] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=156] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=156] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:52:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=156, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=156, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=156, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=156, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=156, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=156, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=6] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:52:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=156, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=156, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=156, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=156, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=10] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=156, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=156, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=12] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=156, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=14] Command: ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=16] Command: ip link set dev swp2 master bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp3 master bond_3 && ip link set dev swp4 master bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=18] Command: ip link set dev swp3 master bond_3 && ip link set dev swp4 master bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=156, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=20] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=156, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=22] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.1/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=24] Command: ip address add 2.2.2.1/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address add 3.3.3.1/24 dev bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=26] Command: ip address add 3.3.3.1/24 dev bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 2.2.2.3 lladdr 00:AD:20:B2:A7:75 dev bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=28] Command: ip neigh add 2.2.2.3 lladdr 00:AD:20:B2:A7:75 dev bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip neigh add 3.3.3.4 lladdr 00:59:CD:1E:83:1B dev bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=30] Command: ip neigh add 3.3.3.4 lladdr 00:59:CD:1E:83:1B dev bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip route add 10.1.1.0/24 nexthop via 2.2.2.3 weight 1 nexthop via 3.3.3.4 weight 1 INFO asyncssh:logging.py:92 [conn=156, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=32] Command: ip route add 10.1.1.0/24 nexthop via 2.2.2.3 weight 1 nexthop via 3.3.3.4 weight 1 INFO asyncssh:logging.py:92 [conn=156, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_0 with ports ['/api/v1/sessions/16/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_0_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:5']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/16/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:6']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_2 with ports ['/api/v1/sessions/16/ixnetwork/vport/3', '/api/v1/sessions/16/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_2_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:7', '10.36.118.199:1:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=156, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=33] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=34] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=34] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=156, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=36] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":132,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":132,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_0_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_2_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22415a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 51150 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 6 Rx 26105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 12793 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 12275 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_ecmp_distribution_over_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_distribution_over_ecmp.py INFO asyncssh:logging.py:92 [conn=156, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=37] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=156, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=38] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=156, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=38] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=156, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=39] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=40] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:55:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=156, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=156, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=156, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=42] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=44] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:55:21 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=156, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=156, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=46] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=156, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":132,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":133,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:02"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":134,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":2,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:03"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=156, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=48] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=50] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=52] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=53] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=54] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:55:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lacp/test_lacp_loopback_detection.py::test_lacp_loopback_detection[stp] | 348.33 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_loopback_detection[stp]">Starting testcase:test_lacp_loopback_detection[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8820' coro=<test_lacp_loopback_detection() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py:35> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=158] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=158] Local address: 172.17.0.4, port 56512 INFO asyncssh:logging.py:92 [conn=158] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=158] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=158] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=0] Channel closed DEBUG agg1:Logger.py:156 Sun Jul 2 23:59:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=158, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=158, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=158, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=158, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=4] Command: ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=158, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=6] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=158, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=8] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=158, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=158, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=10] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=158, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=158, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=12] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=158, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=158, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=14] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=158, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=158, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=16] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=158, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 && ip link set dev bond_4 master bridge_1 && ip link set dev bond_5 master bridge_1 && ip link set dev bond_6 master bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=18] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 && ip link set dev bond_4 master bridge_1 && ip link set dev bond_5 master bridge_1 && ip link set dev bond_6 master bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bridge_1 && ip link set dev swp2 master bridge_1 && ip link set dev swp3 master bridge_1 && ip link set dev swp4 master bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=20] Command: ip link set dev swp1 master bridge_1 && ip link set dev swp2 master bridge_1 && ip link set dev swp3 master bridge_1 && ip link set dev swp4 master bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=158, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=22] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=158, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=158, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=24] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=158, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=158, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=26] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=158, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=158, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=28] Command: ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=158, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:1:6_1.1.1.3/24', '10.36.118.199:1:7_1.1.1.4/24', '10.36.118.199:1:8_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=158, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=29] Channel closed DEBUG agg1:Logger.py:156 echo 'Hello World' INFO asyncssh:logging.py:92 [conn=158, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=30] Command: echo 'Hello World' INFO asyncssh:logging.py:92 [conn=158, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=30] Channel closed DEBUG agg1:Logger.py:156 Hello World INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2240670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 11668418 Rx 529511508 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 528941519 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 528846164 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 528535647 INFO asyncssh:logging.py:92 [conn=158, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=158, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=32] Command: ip link set dev bridge_1 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=158, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=33] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=34] Command: mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=35] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers bridge_1 stp INFO asyncssh:logging.py:92 [conn=158, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=36] Command: mstpctl setforcevers bridge_1 stp INFO asyncssh:logging.py:92 [conn=158, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=37] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=38] Command: mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=39] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers bridge_1 stp INFO asyncssh:logging.py:92 [conn=158, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=40] Command: mstpctl setforcevers bridge_1 stp INFO asyncssh:logging.py:92 [conn=158, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=41] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=42] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"port":"bond_1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"1","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_2","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_3","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_4","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.004","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"15","num-rx-bpdu":"9","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"3","num-transition-fwd":"0","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_5","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.005","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"3","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_6","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.006","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"3","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.007","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.007","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp2","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.008","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.008","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp3","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.009","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.009","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp4","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.00A","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.34:EF:B6:EC:38:07","dsgn-external-cost":"0","dsgn-regional-root":"8.000.34:EF:B6:EC:38:07","dsgn-internal-cost":"0","designated-bridge":"8.000.34:EF:B6:EC:38:07","designated-port":"8.00A","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"22","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2240040>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 12151133 Rx 587318984 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 586661828 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 586579144 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 586248361 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_loopback_detection[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py INFO asyncssh:logging.py:92 [conn=158, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=44] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:05:32 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=158, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=158, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=46] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=158, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":148,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=158, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=48] Command: ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=49] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=50] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:05:32 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=158, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=158, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=52] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=158, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0f","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:10","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:10"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":145,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":146,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":147,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":15,"partner_mac":"34:ef:b6:ec:38:0f"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=158, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=54] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=158, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=56] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=158, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=158, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=58] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=158, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=158, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=60] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=158, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=158, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=62] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=158, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=62] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=158, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=64] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=158, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=65] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=66] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:05:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lacp/test_lacp_negative_acl_over_lag.py::test_lacp_acl_negative | 1.37 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_acl_negative">Starting testcase:test_lacp_acl_negative from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_negative_acl_over_lag.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8899' coro=<test_lacp_acl_negative() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_negative_acl_over_lag.py:29> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=159] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=159] Local address: 172.17.0.4, port 45842 INFO asyncssh:logging.py:92 [conn=159] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=159] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=159] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:05:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=159, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name bond_33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=159, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=2] Command: ip link add name bond_33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=159, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_33 up INFO asyncssh:logging.py:92 [conn=159, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=4] Command: ip link set dev bond_33 up INFO asyncssh:logging.py:92 [conn=159, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=5] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=159, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=6] Command: tc qdisc add dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=159, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev bond_33 ingress flower action drop INFO asyncssh:logging.py:92 [conn=159, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=8] Command: tc filter add dev bond_33 ingress flower action drop INFO asyncssh:logging.py:92 [conn=159, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=159, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=10] Command: tc -j filter show dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=159, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":49152,"kind":"flower","chain":0},{"protocol":"all","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1}]}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_acl_negative from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_negative_acl_over_lag.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=12] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:05:35 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=159, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=159, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=14] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=159, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":149,"ifname":"bond_33","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:69:01:17:d5:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=159, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=159, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=16] Command: ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=159, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:05:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=159, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=20] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:05:35 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=159, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=159, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=159, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=159, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=159, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=159, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=24] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=159, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=159, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=159, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=159, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=159, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=159, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=159, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=48] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=159, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=159, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=50] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=159, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=159, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=52] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=159, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=159, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=54] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=159, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=159, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=56] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=159, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=159, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=58] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=159, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=159, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=60] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=159, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=159, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=62] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=159, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/lacp/test_lacp_no_traffic.py::test_lacp_max_lags | 19.65 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_max_lags">Starting testcase:test_lacp_max_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9005' coro=<test_lacp_max_lags() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:66> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=160, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=161] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=161] Local address: 172.17.0.4, port 45872 INFO asyncssh:logging.py:92 [conn=161] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=161] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=161] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:05:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=161, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=161, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=161, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=161, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_0 type bond mode 802.3ad && ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad && ip link add bond_7 type bond mode 802.3ad && ip link add bond_8 type bond mode 802.3ad && ip link add bond_9 type bond mode 802.3ad && ip link add bond_10 type bond mode 802.3ad && ip link add bond_11 type bond mode 802.3ad && ip link add bond_12 type bond mode 802.3ad && ip link add bond_13 type bond mode 802.3ad && ip link add bond_14 type bond mode 802.3ad && ip link add bond_15 type bond mode 802.3ad && ip link add bond_16 type bond mode 802.3ad && ip link add bond_17 type bond mode 802.3ad && ip link add bond_18 type bond mode 802.3ad && ip link add bond_19 type bond mode 802.3ad && ip link add bond_20 type bond mode 802.3ad && ip link add bond_21 type bond mode 802.3ad && ip link add bond_22 type bond mode 802.3ad && ip link add bond_23 type bond mode 802.3ad && ip link add bond_24 type bond mode 802.3ad && ip link add bond_25 type bond mode 802.3ad && ip link add bond_26 type bond mode 802.3ad && ip link add bond_27 type bond mode 802.3ad && ip link add bond_28 type bond mode 802.3ad && ip link add bond_29 type bond mode 802.3ad && ip link add bond_30 type bond mode 802.3ad && ip link add bond_31 type bond mode 802.3ad && ip link add bond_32 type bond mode 802.3ad && ip link add bond_33 type bond mode 802.3ad && ip link add bond_34 type bond mode 802.3ad && ip link add bond_35 type bond mode 802.3ad && ip link add bond_36 type bond mode 802.3ad && ip link add bond_37 type bond mode 802.3ad && ip link add bond_38 type bond mode 802.3ad && ip link add bond_39 type bond mode 802.3ad && ip link add bond_40 type bond mode 802.3ad && ip link add bond_41 type bond mode 802.3ad && ip link add bond_42 type bond mode 802.3ad && ip link add bond_43 type bond mode 802.3ad && ip link add bond_44 type bond mode 802.3ad && ip link add bond_45 type bond mode 802.3ad && ip link add bond_46 type bond mode 802.3ad && ip link add bond_47 type bond mode 802.3ad && ip link add bond_48 type bond mode 802.3ad && ip link add bond_49 type bond mode 802.3ad && ip link add bond_50 type bond mode 802.3ad && ip link add bond_51 type bond mode 802.3ad && ip link add bond_52 type bond mode 802.3ad && ip link add bond_53 type bond mode 802.3ad && ip link add bond_54 type bond mode 802.3ad && ip link add bond_55 type bond mode 802.3ad && ip link add bond_56 type bond mode 802.3ad && ip link add bond_57 type bond mode 802.3ad && ip link add bond_58 type bond mode 802.3ad && ip link add bond_59 type bond mode 802.3ad && ip link add bond_60 type bond mode 802.3ad && ip link add bond_61 type bond mode 802.3ad && ip link add bond_62 type bond mode 802.3ad && ip link add bond_63 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=161, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=4] Command: ip link add bond_0 type bond mode 802.3ad && ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad && ip link add bond_7 type bond mode 802.3ad && ip link add bond_8 type bond mode 802.3ad && ip link add bond_9 type bond mode 802.3ad && ip link add bond_10 type bond mode 802.3ad && ip link add bond_11 type bond mode 802.3ad && ip link add bond_12 type bond mode 802.3ad && ip link add bond_13 type bond mode 802.3ad && ip link add bond_14 type bond mode 802.3ad && ip link add bond_15 type bond mode 802.3ad && ip link add bond_16 type bond mode 802.3ad && ip link add bond_17 type bond mode 802.3ad && ip link add bond_18 type bond mode 802.3ad && ip link add bond_19 type bond mode 802.3ad && ip link add bond_20 type bond mode 802.3ad && ip link add bond_21 type bond mode 802.3ad && ip link add bond_22 type bond mode 802.3ad && ip link add bond_23 type bond mode 802.3ad && ip link add bond_24 type bond mode 802.3ad && ip link add bond_25 type bond mode 802.3ad && ip link add bond_26 type bond mode 802.3ad && ip link add bond_27 type bond mode 802.3ad && ip link add bond_28 type bond mode 802.3ad && ip link add bond_29 type bond mode 802.3ad && ip link add bond_30 type bond mode 802.3ad && ip link add bond_31 type bond mode 802.3ad && ip link add bond_32 type bond mode 802.3ad && ip link add bond_33 type bond mode 802.3ad && ip link add bond_34 type bond mode 802.3ad && ip link add bond_35 type bond mode 802.3ad && ip link add bond_36 type bond mode 802.3ad && ip link add bond_37 type bond mode 802.3ad && ip link add bond_38 type bond mode 802.3ad && ip link add bond_39 type bond mode 802.3ad && ip link add bond_40 type bond mode 802.3ad && ip link add bond_41 type bond mode 802.3ad && ip link add bond_42 type bond mode 802.3ad && ip link add bond_43 type bond mode 802.3ad && ip link add bond_44 type bond mode 802.3ad && ip link add bond_45 type bond mode 802.3ad && ip link add bond_46 type bond mode 802.3ad && ip link add bond_47 type bond mode 802.3ad && ip link add bond_48 type bond mode 802.3ad && ip link add bond_49 type bond mode 802.3ad && ip link add bond_50 type bond mode 802.3ad && ip link add bond_51 type bond mode 802.3ad && ip link add bond_52 type bond mode 802.3ad && ip link add bond_53 type bond mode 802.3ad && ip link add bond_54 type bond mode 802.3ad && ip link add bond_55 type bond mode 802.3ad && ip link add bond_56 type bond mode 802.3ad && ip link add bond_57 type bond mode 802.3ad && ip link add bond_58 type bond mode 802.3ad && ip link add bond_59 type bond mode 802.3ad && ip link add bond_60 type bond mode 802.3ad && ip link add bond_61 type bond mode 802.3ad && ip link add bond_62 type bond mode 802.3ad && ip link add bond_63 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=161, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=5] Channel closed DEBUG agg1:Logger.py:156 ifconfig -a | grep -Eo "swp[0-9]+" | wc -l INFO asyncssh:logging.py:92 [conn=161, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=6] Command: ifconfig -a | grep -Eo "swp[0-9]+" | wc -l INFO asyncssh:logging.py:92 [conn=161, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=6] Channel closed DEBUG agg1:Logger.py:156 48 INFO asyncssh:logging.py:92 [conn=161, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down && ip link set dev swp10 down && ip link set dev swp11 down && ip link set dev swp12 down && ip link set dev swp13 down && ip link set dev swp14 down && ip link set dev swp15 down && ip link set dev swp16 down && ip link set dev swp17 down && ip link set dev swp18 down && ip link set dev swp19 down && ip link set dev swp20 down && ip link set dev swp21 down && ip link set dev swp22 down && ip link set dev swp23 down && ip link set dev swp24 down && ip link set dev swp25 down && ip link set dev swp26 down && ip link set dev swp27 down && ip link set dev swp28 down && ip link set dev swp29 down && ip link set dev swp30 down && ip link set dev swp31 down && ip link set dev swp32 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp37 down && ip link set dev swp38 down && ip link set dev swp39 down && ip link set dev swp40 down && ip link set dev swp41 down && ip link set dev swp42 down && ip link set dev swp43 down && ip link set dev swp44 down && ip link set dev swp45 down && ip link set dev swp46 down && ip link set dev swp47 down && ip link set dev swp48 down INFO asyncssh:logging.py:92 [conn=161, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=8] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down && ip link set dev swp10 down && ip link set dev swp11 down && ip link set dev swp12 down && ip link set dev swp13 down && ip link set dev swp14 down && ip link set dev swp15 down && ip link set dev swp16 down && ip link set dev swp17 down && ip link set dev swp18 down && ip link set dev swp19 down && ip link set dev swp20 down && ip link set dev swp21 down && ip link set dev swp22 down && ip link set dev swp23 down && ip link set dev swp24 down && ip link set dev swp25 down && ip link set dev swp26 down && ip link set dev swp27 down && ip link set dev swp28 down && ip link set dev swp29 down && ip link set dev swp30 down && ip link set dev swp31 down && ip link set dev swp32 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp37 down && ip link set dev swp38 down && ip link set dev swp39 down && ip link set dev swp40 down && ip link set dev swp41 down && ip link set dev swp42 down && ip link set dev swp43 down && ip link set dev swp44 down && ip link set dev swp45 down && ip link set dev swp46 down && ip link set dev swp47 down && ip link set dev swp48 down INFO asyncssh:logging.py:92 [conn=161, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_0 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_3 && ip link set dev swp5 master bond_4 && ip link set dev swp6 master bond_5 && ip link set dev swp7 master bond_6 && ip link set dev swp8 master bond_7 && ip link set dev swp9 master bond_8 && ip link set dev swp10 master bond_9 && ip link set dev swp11 master bond_10 && ip link set dev swp12 master bond_11 && ip link set dev swp13 master bond_12 && ip link set dev swp14 master bond_13 && ip link set dev swp15 master bond_14 && ip link set dev swp16 master bond_15 && ip link set dev swp17 master bond_16 && ip link set dev swp18 master bond_17 && ip link set dev swp19 master bond_18 && ip link set dev swp20 master bond_19 && ip link set dev swp21 master bond_20 && ip link set dev swp22 master bond_21 && ip link set dev swp23 master bond_22 && ip link set dev swp24 master bond_23 && ip link set dev swp25 master bond_24 && ip link set dev swp26 master bond_25 && ip link set dev swp27 master bond_26 && ip link set dev swp28 master bond_27 && ip link set dev swp29 master bond_28 && ip link set dev swp30 master bond_29 && ip link set dev swp31 master bond_30 && ip link set dev swp32 master bond_31 && ip link set dev swp33 master bond_32 && ip link set dev swp34 master bond_33 && ip link set dev swp35 master bond_34 && ip link set dev swp36 master bond_35 && ip link set dev swp37 master bond_36 && ip link set dev swp38 master bond_37 && ip link set dev swp39 master bond_38 && ip link set dev swp40 master bond_39 && ip link set dev swp41 master bond_40 && ip link set dev swp42 master bond_41 && ip link set dev swp43 master bond_42 && ip link set dev swp44 master bond_43 && ip link set dev swp45 master bond_44 && ip link set dev swp46 master bond_45 && ip link set dev swp47 master bond_46 && ip link set dev swp48 master bond_47 INFO asyncssh:logging.py:92 [conn=161, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=10] Command: ip link set dev swp1 master bond_0 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_3 && ip link set dev swp5 master bond_4 && ip link set dev swp6 master bond_5 && ip link set dev swp7 master bond_6 && ip link set dev swp8 master bond_7 && ip link set dev swp9 master bond_8 && ip link set dev swp10 master bond_9 && ip link set dev swp11 master bond_10 && ip link set dev swp12 master bond_11 && ip link set dev swp13 master bond_12 && ip link set dev swp14 master bond_13 && ip link set dev swp15 master bond_14 && ip link set dev swp16 master bond_15 && ip link set dev swp17 master bond_16 && ip link set dev swp18 master bond_17 && ip link set dev swp19 master bond_18 && ip link set dev swp20 master bond_19 && ip link set dev swp21 master bond_20 && ip link set dev swp22 master bond_21 && ip link set dev swp23 master bond_22 && ip link set dev swp24 master bond_23 && ip link set dev swp25 master bond_24 && ip link set dev swp26 master bond_25 && ip link set dev swp27 master bond_26 && ip link set dev swp28 master bond_27 && ip link set dev swp29 master bond_28 && ip link set dev swp30 master bond_29 && ip link set dev swp31 master bond_30 && ip link set dev swp32 master bond_31 && ip link set dev swp33 master bond_32 && ip link set dev swp34 master bond_33 && ip link set dev swp35 master bond_34 && ip link set dev swp36 master bond_35 && ip link set dev swp37 master bond_36 && ip link set dev swp38 master bond_37 && ip link set dev swp39 master bond_38 && ip link set dev swp40 master bond_39 && ip link set dev swp41 master bond_40 && ip link set dev swp42 master bond_41 && ip link set dev swp43 master bond_42 && ip link set dev swp44 master bond_43 && ip link set dev swp45 master bond_44 && ip link set dev swp46 master bond_45 && ip link set dev swp47 master bond_46 && ip link set dev swp48 master bond_47 INFO asyncssh:logging.py:92 [conn=161, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up && ip link set dev swp10 up && ip link set dev swp11 up && ip link set dev swp12 up && ip link set dev swp13 up && ip link set dev swp14 up && ip link set dev swp15 up && ip link set dev swp16 up && ip link set dev swp17 up && ip link set dev swp18 up && ip link set dev swp19 up && ip link set dev swp20 up && ip link set dev swp21 up && ip link set dev swp22 up && ip link set dev swp23 up && ip link set dev swp24 up && ip link set dev swp25 up && ip link set dev swp26 up && ip link set dev swp27 up && ip link set dev swp28 up && ip link set dev swp29 up && ip link set dev swp30 up && ip link set dev swp31 up && ip link set dev swp32 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp37 up && ip link set dev swp38 up && ip link set dev swp39 up && ip link set dev swp40 up && ip link set dev swp41 up && ip link set dev swp42 up && ip link set dev swp43 up && ip link set dev swp44 up && ip link set dev swp45 up && ip link set dev swp46 up && ip link set dev swp47 up && ip link set dev swp48 up INFO asyncssh:logging.py:92 [conn=161, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=12] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up && ip link set dev swp10 up && ip link set dev swp11 up && ip link set dev swp12 up && ip link set dev swp13 up && ip link set dev swp14 up && ip link set dev swp15 up && ip link set dev swp16 up && ip link set dev swp17 up && ip link set dev swp18 up && ip link set dev swp19 up && ip link set dev swp20 up && ip link set dev swp21 up && ip link set dev swp22 up && ip link set dev swp23 up && ip link set dev swp24 up && ip link set dev swp25 up && ip link set dev swp26 up && ip link set dev swp27 up && ip link set dev swp28 up && ip link set dev swp29 up && ip link set dev swp30 up && ip link set dev swp31 up && ip link set dev swp32 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp37 up && ip link set dev swp38 up && ip link set dev swp39 up && ip link set dev swp40 up && ip link set dev swp41 up && ip link set dev swp42 up && ip link set dev swp43 up && ip link set dev swp44 up && ip link set dev swp45 up && ip link set dev swp46 up && ip link set dev swp47 up && ip link set dev swp48 up INFO asyncssh:logging.py:92 [conn=161, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=12] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_max_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:05:45 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=161, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=161, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=16] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=161, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_7","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_8","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0f","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_9","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:10","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_10","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:11","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_11","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:12","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_12","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:13","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_13","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:14","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_14","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:15","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_15","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:16","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_16","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:17","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_17","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:18","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_18","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:19","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_19","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:1a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_20","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:1b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_21","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:1c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_22","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:1d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_23","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:1e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_24","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:1f","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_25","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:20","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_26","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:21","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_27","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:22","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_28","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:23","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_29","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:24","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_30","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:25","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_31","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:26","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_32","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:27","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_33","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:28","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_34","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:29","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_35","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:2a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_36","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:2b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_37","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:2c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_38","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:2d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_39","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:2e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_40","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:2f","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_41","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:30","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_42","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:31","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_43","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:32","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_44","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:33","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_45","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:34","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_46","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:35","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_47","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:36","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":154,"ifname":"bond_0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":155,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":156,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":157,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":158,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":159,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":160,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":161,"ifname":"bond_7","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":162,"ifname":"bond_8","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":163,"ifname":"bond_9","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":164,"ifname":"bond_10","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":165,"ifname":"bond_11","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":166,"ifname":"bond_12","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":167,"ifname":"bond_13","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":168,"ifname":"bond_14","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":169,"ifname":"bond_15","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":170,"ifname":"bond_16","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":171,"ifname":"bond_17","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":172,"ifname":"bond_18","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":173,"ifname":"bond_19","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":174,"ifname":"bond_20","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":175,"ifname":"bond_21","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":176,"ifname":"bond_22","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":177,"ifname":"bond_23","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":178,"ifname":"bond_24","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":179,"ifname":"bond_25","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":180,"ifname":"bond_26","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":181,"ifname":"bond_27","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":182,"ifname":"bond_28","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":183,"ifname":"bond_29","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":184,"ifname":"bond_30","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":185,"ifname":"bond_31","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":186,"ifname":"bond_32","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":187,"ifname":"bond_33","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":188,"ifname":"bond_34","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":189,"ifname":"bond_35","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":190,"ifname":"bond_36","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":191,"ifname":"bond_37","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":192,"ifname":"bond_38","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":193,"ifname":"bond_39","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":194,"ifname":"bond_40","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":195,"ifname":"bond_41","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":196,"ifname":"bond_42","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":197,"ifname":"bond_43","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":198,"ifname":"bond_44","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":199,"ifname":"bond_45","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":200,"ifname":"bond_46","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":201,"ifname":"bond_47","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":202,"ifname":"bond_48","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:32:44:b2:22:03","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":203,"ifname":"bond_49","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"be:13:97:a6:2e:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":204,"ifname":"bond_50","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"96:ec:3c:f4:ab:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":205,"ifname":"bond_51","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"0a:1b:6a:58:95:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":206,"ifname":"bond_52","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:f4:b8:6b:12:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":207,"ifname":"bond_53","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:4f:98:b3:f5:7a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":208,"ifname":"bond_54","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a2:0b:a6:d3:c1:c1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":209,"ifname":"bond_55","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"0e:8c:f0:57:d5:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":210,"ifname":"bond_56","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"72:07:cb:24:96:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":211,"ifname":"bond_57","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"9e:c6:cf:cd:4b:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":212,"ifname":"bond_58","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"26:23:41:be:77:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":213,"ifname":"bond_59","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:d5:dd:20:d4:fc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":214,"ifname":"bond_60","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"1a:cc:4c:ec:ef:05","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":215,"ifname":"bond_61","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"da:47:a7:cd:6b:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":216,"ifname":"bond_62","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:0c:23:53:67:73","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":217,"ifname":"bond_63","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"76:6a:3c:73:b5:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=161, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=161, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=18] Command: ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=161, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=20] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=161, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=22] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=161, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=161, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=24] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=161, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=161, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=26] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=161, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=161, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=28] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=161, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=161, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=30] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=161, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_7 INFO asyncssh:logging.py:92 [conn=161, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=32] Command: ip link delete bond_7 INFO asyncssh:logging.py:92 [conn=161, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_8 INFO asyncssh:logging.py:92 [conn=161, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=34] Command: ip link delete bond_8 INFO asyncssh:logging.py:92 [conn=161, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_9 INFO asyncssh:logging.py:92 [conn=161, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=36] Command: ip link delete bond_9 INFO asyncssh:logging.py:92 [conn=161, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_10 INFO asyncssh:logging.py:92 [conn=161, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=38] Command: ip link delete bond_10 INFO asyncssh:logging.py:92 [conn=161, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_11 INFO asyncssh:logging.py:92 [conn=161, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=40] Command: ip link delete bond_11 INFO asyncssh:logging.py:92 [conn=161, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_12 INFO asyncssh:logging.py:92 [conn=161, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=42] Command: ip link delete bond_12 INFO asyncssh:logging.py:92 [conn=161, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_13 INFO asyncssh:logging.py:92 [conn=161, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=44] Command: ip link delete bond_13 INFO asyncssh:logging.py:92 [conn=161, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_14 INFO asyncssh:logging.py:92 [conn=161, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=46] Command: ip link delete bond_14 INFO asyncssh:logging.py:92 [conn=161, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_15 INFO asyncssh:logging.py:92 [conn=161, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=48] Command: ip link delete bond_15 INFO asyncssh:logging.py:92 [conn=161, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_16 INFO asyncssh:logging.py:92 [conn=161, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=50] Command: ip link delete bond_16 INFO asyncssh:logging.py:92 [conn=161, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_17 INFO asyncssh:logging.py:92 [conn=161, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=52] Command: ip link delete bond_17 INFO asyncssh:logging.py:92 [conn=161, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_18 INFO asyncssh:logging.py:92 [conn=161, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=54] Command: ip link delete bond_18 INFO asyncssh:logging.py:92 [conn=161, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_19 INFO asyncssh:logging.py:92 [conn=161, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=56] Command: ip link delete bond_19 INFO asyncssh:logging.py:92 [conn=161, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_20 INFO asyncssh:logging.py:92 [conn=161, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=58] Command: ip link delete bond_20 INFO asyncssh:logging.py:92 [conn=161, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_21 INFO asyncssh:logging.py:92 [conn=161, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=60] Command: ip link delete bond_21 INFO asyncssh:logging.py:92 [conn=161, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_22 INFO asyncssh:logging.py:92 [conn=161, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=62] Command: ip link delete bond_22 INFO asyncssh:logging.py:92 [conn=161, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=62] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_23 INFO asyncssh:logging.py:92 [conn=161, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=64] Command: ip link delete bond_23 INFO asyncssh:logging.py:92 [conn=161, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_24 INFO asyncssh:logging.py:92 [conn=161, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=66] Command: ip link delete bond_24 INFO asyncssh:logging.py:92 [conn=161, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_25 INFO asyncssh:logging.py:92 [conn=161, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=68] Command: ip link delete bond_25 INFO asyncssh:logging.py:92 [conn=161, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=69] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_26 INFO asyncssh:logging.py:92 [conn=161, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=70] Command: ip link delete bond_26 INFO asyncssh:logging.py:92 [conn=161, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=70] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=71] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_27 INFO asyncssh:logging.py:92 [conn=161, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=72] Command: ip link delete bond_27 INFO asyncssh:logging.py:92 [conn=161, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=72] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_28 INFO asyncssh:logging.py:92 [conn=161, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=74] Command: ip link delete bond_28 INFO asyncssh:logging.py:92 [conn=161, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=74] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_29 INFO asyncssh:logging.py:92 [conn=161, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=76] Command: ip link delete bond_29 INFO asyncssh:logging.py:92 [conn=161, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=76] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=77] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_30 INFO asyncssh:logging.py:92 [conn=161, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=78] Command: ip link delete bond_30 INFO asyncssh:logging.py:92 [conn=161, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=78] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=79] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_31 INFO asyncssh:logging.py:92 [conn=161, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=80] Command: ip link delete bond_31 INFO asyncssh:logging.py:92 [conn=161, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=80] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=81] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_32 INFO asyncssh:logging.py:92 [conn=161, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=82] Command: ip link delete bond_32 INFO asyncssh:logging.py:92 [conn=161, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=82] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=83] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=161, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=84] Command: ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=161, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=84] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=85] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_34 INFO asyncssh:logging.py:92 [conn=161, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=86] Command: ip link delete bond_34 INFO asyncssh:logging.py:92 [conn=161, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=86] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=87] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_35 INFO asyncssh:logging.py:92 [conn=161, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=88] Command: ip link delete bond_35 INFO asyncssh:logging.py:92 [conn=161, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=88] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=89] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_36 INFO asyncssh:logging.py:92 [conn=161, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=90] Command: ip link delete bond_36 INFO asyncssh:logging.py:92 [conn=161, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=90] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=91] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_37 INFO asyncssh:logging.py:92 [conn=161, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=92] Command: ip link delete bond_37 INFO asyncssh:logging.py:92 [conn=161, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=92] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=93] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_38 INFO asyncssh:logging.py:92 [conn=161, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=94] Command: ip link delete bond_38 INFO asyncssh:logging.py:92 [conn=161, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=94] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=95] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_39 INFO asyncssh:logging.py:92 [conn=161, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=96] Command: ip link delete bond_39 INFO asyncssh:logging.py:92 [conn=161, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=96] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=97] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_40 INFO asyncssh:logging.py:92 [conn=161, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=98] Command: ip link delete bond_40 INFO asyncssh:logging.py:92 [conn=161, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=98] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=99] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_41 INFO asyncssh:logging.py:92 [conn=161, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=100] Command: ip link delete bond_41 INFO asyncssh:logging.py:92 [conn=161, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=100] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=101] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_42 INFO asyncssh:logging.py:92 [conn=161, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=102] Command: ip link delete bond_42 INFO asyncssh:logging.py:92 [conn=161, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=102] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=103] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_43 INFO asyncssh:logging.py:92 [conn=161, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=104] Command: ip link delete bond_43 INFO asyncssh:logging.py:92 [conn=161, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=104] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=105] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_44 INFO asyncssh:logging.py:92 [conn=161, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=106] Command: ip link delete bond_44 INFO asyncssh:logging.py:92 [conn=161, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=106] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=107] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_45 INFO asyncssh:logging.py:92 [conn=161, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=108] Command: ip link delete bond_45 INFO asyncssh:logging.py:92 [conn=161, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=108] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=109] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_46 INFO asyncssh:logging.py:92 [conn=161, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=110] Command: ip link delete bond_46 INFO asyncssh:logging.py:92 [conn=161, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=110] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=111] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_47 INFO asyncssh:logging.py:92 [conn=161, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=112] Command: ip link delete bond_47 INFO asyncssh:logging.py:92 [conn=161, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=112] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=113] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_48 INFO asyncssh:logging.py:92 [conn=161, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=114] Command: ip link delete bond_48 INFO asyncssh:logging.py:92 [conn=161, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=114] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=115] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_49 INFO asyncssh:logging.py:92 [conn=161, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=116] Command: ip link delete bond_49 INFO asyncssh:logging.py:92 [conn=161, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=116] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=117] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_50 INFO asyncssh:logging.py:92 [conn=161, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=118] Command: ip link delete bond_50 INFO asyncssh:logging.py:92 [conn=161, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=118] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=119] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_51 INFO asyncssh:logging.py:92 [conn=161, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=120] Command: ip link delete bond_51 INFO asyncssh:logging.py:92 [conn=161, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=120] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=121] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_52 INFO asyncssh:logging.py:92 [conn=161, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=122] Command: ip link delete bond_52 INFO asyncssh:logging.py:92 [conn=161, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=122] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=123] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_53 INFO asyncssh:logging.py:92 [conn=161, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=124] Command: ip link delete bond_53 INFO asyncssh:logging.py:92 [conn=161, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=124] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=125] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_54 INFO asyncssh:logging.py:92 [conn=161, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=126] Command: ip link delete bond_54 INFO asyncssh:logging.py:92 [conn=161, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=126] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=127] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_55 INFO asyncssh:logging.py:92 [conn=161, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=128] Command: ip link delete bond_55 INFO asyncssh:logging.py:92 [conn=161, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=128] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=129] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_56 INFO asyncssh:logging.py:92 [conn=161, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=130] Command: ip link delete bond_56 INFO asyncssh:logging.py:92 [conn=161, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=130] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=131] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_57 INFO asyncssh:logging.py:92 [conn=161, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=132] Command: ip link delete bond_57 INFO asyncssh:logging.py:92 [conn=161, chan=132] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=132] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=133] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_58 INFO asyncssh:logging.py:92 [conn=161, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=134] Command: ip link delete bond_58 INFO asyncssh:logging.py:92 [conn=161, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=134] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=135] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_59 INFO asyncssh:logging.py:92 [conn=161, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=136] Command: ip link delete bond_59 INFO asyncssh:logging.py:92 [conn=161, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=136] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=137] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_60 INFO asyncssh:logging.py:92 [conn=161, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=138] Command: ip link delete bond_60 INFO asyncssh:logging.py:92 [conn=161, chan=138] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=138] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=139] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_61 INFO asyncssh:logging.py:92 [conn=161, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=140] Command: ip link delete bond_61 INFO asyncssh:logging.py:92 [conn=161, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=140] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=141] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_62 INFO asyncssh:logging.py:92 [conn=161, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=142] Command: ip link delete bond_62 INFO asyncssh:logging.py:92 [conn=161, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=142] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=143] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_63 INFO asyncssh:logging.py:92 [conn=161, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=144] Command: ip link delete bond_63 INFO asyncssh:logging.py:92 [conn=161, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=144] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=145] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=146] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=146] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:05:56 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lacp/test_lacp_no_traffic.py::test_lacp_max_ports_in_lags | 5.18 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_max_ports_in_lags">Starting testcase:test_lacp_max_ports_in_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9161' coro=<test_lacp_max_ports_in_lags() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:112> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=161, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=162] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=162] Local address: 172.17.0.4, port 36696 INFO asyncssh:logging.py:92 [conn=162] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=162] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=162] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:05:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=162, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=162, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=162, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=162, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=162, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=4] Command: ip link add bond_1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=162, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=162, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=6] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=162, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_1 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_1 && ip link set dev swp4 master bond_1 && ip link set dev swp5 master bond_1 && ip link set dev swp6 master bond_1 && ip link set dev swp7 master bond_1 && ip link set dev swp8 master bond_1 && ip link set dev swp9 master bond_1 INFO asyncssh:logging.py:92 [conn=162, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=8] Command: ip link set dev swp1 master bond_1 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_1 && ip link set dev swp4 master bond_1 && ip link set dev swp5 master bond_1 && ip link set dev swp6 master bond_1 && ip link set dev swp7 master bond_1 && ip link set dev swp8 master bond_1 && ip link set dev swp9 master bond_1 INFO asyncssh:logging.py:92 [conn=162, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=162, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=8] Channel closed DEBUG agg1:Logger.py:156 RTNETLINK answers: No space left on device INFO asyncssh:logging.py:92 [conn=162, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up INFO asyncssh:logging.py:92 [conn=162, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up INFO asyncssh:logging.py:92 [conn=162, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=10] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_max_ports_in_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=12] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:06:00 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=162, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=162, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=14] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=162, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:08","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:09","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0b","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0c","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0d","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0e","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:0e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":218,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=162, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=162, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=16] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=162, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:06:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lacp/test_lacp_routing_over_bridge.py::test_lacp_routing_over_bridge | 185.34 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9368' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_bridge">Starting testcase:test_lacp_routing_over_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=165] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=165] Local address: 172.17.0.4, port 46044 INFO asyncssh:logging.py:92 [conn=165] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=165] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=165] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:07:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=165, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=165, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=165, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=165, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=165, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=165, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:07:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=165, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge0 type bridge INFO asyncssh:logging.py:92 [conn=165, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=8] Command: ip link add bridge0 type bridge INFO asyncssh:logging.py:92 [conn=165, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=165, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=10] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=165, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=165, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=12] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=165, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=165, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=14] Command: ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=165, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=165, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=16] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=165, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=18] Command: ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bond_2 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_2 INFO asyncssh:logging.py:92 [conn=165, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=20] Command: ip link set dev swp2 master bond_2 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_2 INFO asyncssh:logging.py:92 [conn=165, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_2 master bridge0 INFO asyncssh:logging.py:92 [conn=165, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=22] Command: ip link set dev bond_2 master bridge0 INFO asyncssh:logging.py:92 [conn=165, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=165, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=24] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=165, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=26] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.2/24 dev bridge0 INFO asyncssh:logging.py:92 [conn=165, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=28] Command: ip address add 2.2.2.2/24 dev bridge0 INFO asyncssh:logging.py:92 [conn=165, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=165, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=30] Command: ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=165, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/16/ixnetwork/vport/2', '/api/v1/sessions/16/ixnetwork/vport/3', '/api/v1/sessions/16/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=165, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=31] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=32] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=32] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=165, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=34] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":238,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":238,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 2.2.2.3/24 (bridge IP) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22c5510>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 10.1.1.1/24 Tx 18783042 Rx 18783037 Frames Delta 5 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 2.2.2.3/24 (bridge IP) Tx 18783041 Rx 18783036 Frames Delta 5 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_bridge.py INFO asyncssh:logging.py:92 [conn=165, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=35] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=165, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=36] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=165, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=36] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=165, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=38] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:10:16 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=165, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=165, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=165, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":237,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=165, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=165, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=42] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=165, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=44] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:10:16 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=165, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=165, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=46] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=165, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:09","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":238,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":239,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":3,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=165, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=48] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=165, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=50] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=165, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=51] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=52] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:10:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lacp/test_lacp_routing_over_lacp.py::test_lacp_routing_over_lacp | 3743.80 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9435' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_lacp">Starting testcase:test_lacp_routing_over_lacp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_lacp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=166] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=166] Local address: 172.17.0.4, port 48032 INFO asyncssh:logging.py:92 [conn=166] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=166] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=166] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:10:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=166, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=166, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=166, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=166, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=166, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=166, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 00:10:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=166, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=166, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=166, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=166, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=10] Command: ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=166, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=166, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=12] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=166, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=14] Command: ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bond_2 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_2 INFO asyncssh:logging.py:92 [conn=166, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=16] Command: ip link set dev swp2 master bond_2 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_2 INFO asyncssh:logging.py:92 [conn=166, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=166, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=18] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=166, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=20] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.2/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=166, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=22] Command: ip address add 2.2.2.2/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=166, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=166, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=24] Command: ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=166, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/16/ixnetwork/vport/2', '/api/v1/sessions/16/ixnetwork/vport/3', '/api/v1/sessions/16/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=166, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=25] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=26] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=26] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=166, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=28] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":240,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":240,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 2.2.2.3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22c6620>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 10.1.1.1 Tx 18783043 Rx 18783038 Frames Delta 5 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 2.2.2.3 Tx 18783043 Rx 18783038 Frames Delta 5 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_lacp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_lacp.py INFO asyncssh:logging.py:92 [conn=166, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=29] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=166, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=30] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=166, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=30] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=166, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=32] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:12:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=166, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=166, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=166, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=34] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=36] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:12:35 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=166, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=166, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=38] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=166, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:09","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":240,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":241,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":3,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=166, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=40] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=166, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=42] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=166, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=44] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:12:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lacp/test_lacp_routing_over_vlan_device.py::test_lacp_routing_over_vlan_device | 173.85 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9494' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_vlan_device">Starting testcase:test_lacp_routing_over_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vlan_device.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=167] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=167] Local address: 172.17.0.4, port 44490 INFO asyncssh:logging.py:92 [conn=167] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=167] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=167] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:12:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=167, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=1] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=167, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=167, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=2] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=167, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=3] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=167, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=167, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=4] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:12:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=167, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=167, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=8] Command: ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=167, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=167, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=10] Command: ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=167, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=167, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=12] Command: bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=167, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=167, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=14] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=167, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=167, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=16] Command: ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=167, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=167, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=18] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=167, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=20] Command: ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bond_2 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_2 INFO asyncssh:logging.py:92 [conn=167, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=22] Command: ip link set dev swp2 master bond_2 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_2 INFO asyncssh:logging.py:92 [conn=167, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_2 master bridge_0 INFO asyncssh:logging.py:92 [conn=167, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=24] Command: ip link set dev bond_2 master bridge_0 INFO asyncssh:logging.py:92 [conn=167, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=167, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=26] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=167, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link add link bridge_0 name bridge_0.10 type vlan id 10 INFO asyncssh:logging.py:92 [conn=167, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=28] Command: ip link add link bridge_0 name bridge_0.10 type vlan id 10 INFO asyncssh:logging.py:92 [conn=167, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_0.10 up INFO asyncssh:logging.py:92 [conn=167, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=30] Command: ip link set dev bridge_0.10 up INFO asyncssh:logging.py:92 [conn=167, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=32] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.2/24 dev bridge_0.10 INFO asyncssh:logging.py:92 [conn=167, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=34] Command: ip address add 2.2.2.2/24 dev bridge_0.10 INFO asyncssh:logging.py:92 [conn=167, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=167, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=36] Command: ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=167, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/16/ixnetwork/vport/2', '/api/v1/sessions/16/ixnetwork/vport/3', '/api/v1/sessions/16/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:6', '10.36.118.199:1:7', '10.36.118.199:1:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=167, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=37] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=38] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=38] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=167, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=40] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":243,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":243,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 10.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 2.2.2.3/24 (bridge IP) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a268d570>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 10.1.1.1/24 Tx 18777527 Rx 18777522 Frames Delta 5 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:1:5 -> 2.2.2.3/24 (bridge IP) Tx 18777527 Rx 18777522 Frames Delta 5 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vlan_device.py INFO asyncssh:logging.py:92 [conn=167, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=41] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=167, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=167, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=42] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=167, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=44] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:15:31 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=167, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=167, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=46] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=167, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":242,"ifname":"bridge_0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=167, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=167, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=48] Command: ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=167, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=49] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=50] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:15:31 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=167, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=167, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=52] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=167, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:09","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":243,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":244,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":3,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=167, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=54] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=167, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=56] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=167, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=57] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=58] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:15:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lacp/test_lacp_routing_over_vrf.py::test_lacp_routing_over_lag_vrf | 188.83 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9568' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_lag_vrf">Starting testcase:test_lacp_routing_over_lag_vrf from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO asyncssh:logging.py:92 [conn=167, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=168] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=168] Local address: 172.17.0.4, port 53172 INFO asyncssh:logging.py:92 [conn=168] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=168] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=168] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:15:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=168, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=168, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=2] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=168, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=168, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=3] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=4] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:15:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=168, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=168, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=6] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=168, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=6] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.44","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp9","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:3804","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:380f","dev":"swp9","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"swp9","table":"local","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=8] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:15:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=168, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=168, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=168, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=10] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=168, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=168, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=168, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:15:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=168, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=168, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=16] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=168, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=168, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=18] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=168, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link add type vrf table 10 INFO asyncssh:logging.py:92 [conn=168, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=20] Command: ip link add type vrf table 10 INFO asyncssh:logging.py:92 [conn=168, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link set dev vrf0 up INFO asyncssh:logging.py:92 [conn=168, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=22] Command: ip link set dev vrf0 up INFO asyncssh:logging.py:92 [conn=168, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip route add table 10 unreachable default INFO asyncssh:logging.py:92 [conn=168, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=24] Command: ip route add table 10 unreachable default INFO asyncssh:logging.py:92 [conn=168, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=168, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=26] Command: ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=168, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev vrf1 up INFO asyncssh:logging.py:92 [conn=168, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=28] Command: ip link set dev vrf1 up INFO asyncssh:logging.py:92 [conn=168, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip route add table 20 unreachable default INFO asyncssh:logging.py:92 [conn=168, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=30] Command: ip route add table 20 unreachable default INFO asyncssh:logging.py:92 [conn=168, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=168, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=32] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=168, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=168, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=34] Command: ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=168, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bond_2 INFO asyncssh:logging.py:92 [conn=168, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=36] Command: ip link set dev swp2 master bond_2 INFO asyncssh:logging.py:92 [conn=168, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp3 master bond_3 && ip link set dev swp4 master bond_3 INFO asyncssh:logging.py:92 [conn=168, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=38] Command: ip link set dev swp3 master bond_3 && ip link set dev swp4 master bond_3 INFO asyncssh:logging.py:92 [conn=168, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=168, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=40] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=168, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 master vrf0 INFO asyncssh:logging.py:92 [conn=168, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=42] Command: ip link set dev bond_1 master vrf0 INFO asyncssh:logging.py:92 [conn=168, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_2 master vrf0 INFO asyncssh:logging.py:92 [conn=168, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=44] Command: ip link set dev bond_2 master vrf0 INFO asyncssh:logging.py:92 [conn=168, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_3 master vrf1 INFO asyncssh:logging.py:92 [conn=168, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=46] Command: ip link set dev bond_3 master vrf1 INFO asyncssh:logging.py:92 [conn=168, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=168, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=48] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=168, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.1/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=168, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=50] Command: ip address add 2.2.2.1/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=168, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.1/24 dev bond_3 INFO asyncssh:logging.py:92 [conn=168, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=52] Command: ip address add 2.2.2.1/24 dev bond_3 INFO asyncssh:logging.py:92 [conn=168, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip route add vrf vrf0 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=168, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=54] Command: ip route add vrf vrf0 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=168, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip route add vrf vrf1 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=168, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=56] Command: ip route add vrf vrf1 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=168, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_0 with ports ['/api/v1/sessions/16/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_0_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:5']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/16/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:6']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_2 with ports ['/api/v1/sessions/16/ixnetwork/vport/3', '/api/v1/sessions/16/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_2_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:7', '10.36.118.199:1:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=168, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=57] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=168, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=58] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=168, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=58] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=168, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=168, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=60] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=168, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=60] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":246,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"vrf0","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":246,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"vrf0","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LAG_0 -> ['LAG_1', 'LAG_2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_0_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_2_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2662920>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 100385 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 2 Rx 100387 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 19 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 2 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_lag_vrf from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf.py INFO asyncssh:logging.py:92 [conn=168, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=61] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=168, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=62] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=168, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=62] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Deleting tables INFO asyncssh:logging.py:92 [conn=168, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=168, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=64] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=168, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"type":"unreachable","dst":"default","table":"10","flags":["rt_trap"]},{"dst":"1.1.1.0/24","dev":"bond_1","table":"10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"type":"local","dst":"1.1.1.1","dev":"bond_1","table":"10","protocol":"kernel","scope":"host","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"type":"broadcast","dst":"1.1.1.255","dev":"bond_1","table":"10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"bond_2","table":"10","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"local","dst":"2.2.2.1","dev":"bond_2","table":"10","protocol":"kernel","scope":"host","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"broadcast","dst":"2.2.2.255","dev":"bond_2","table":"10","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.1.1.0/24","gateway":"2.2.2.3","dev":"bond_2","table":"10","flags":["offload","rt_offload"]},{"type":"unreachable","dst":"default","table":"20","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"bond_3","table":"20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"local","dst":"2.2.2.1","dev":"bond_3","table":"20","protocol":"kernel","scope":"host","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"broadcast","dst":"2.2.2.255","dev":"bond_3","table":"20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.1.1.0/24","gateway":"2.2.2.3","dev":"bond_3","table":"20","flags":["trap","rt_offload"]},{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.44","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"fe80::36ef:b6ff:feec:3807","dev":"bond_1","table":"10","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:3808","dev":"bond_2","table":"10","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"bond_2","table":"10","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"bond_1","table":"10","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bond_2","table":"10","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bond_1","table":"10","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:3809","dev":"bond_3","table":"20","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"bond_3","table":"20","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bond_3","table":"20","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp9","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:3804","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:380f","dev":"swp9","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"swp9","table":"local","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=168, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=66] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=68] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=69] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=70] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=70] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=71] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=72] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=72] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=74] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=74] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=76] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=76] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=77] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=78] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=78] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=79] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=80] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=80] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=81] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=82] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=82] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=83] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=84] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=84] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=85] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=86] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=86] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=87] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=88] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=88] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=89] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=90] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=90] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=91] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=92] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=92] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=93] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=94] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=94] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=95] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=96] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=96] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=97] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=98] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=98] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=99] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=100] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=100] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=101] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=102] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=168, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=102] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=103] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=104] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=104] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=105] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=106] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=106] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=107] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=108] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=168, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=108] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:147 Deleting routes INFO asyncssh:logging.py:92 [conn=168, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=109] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=168, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=110] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=168, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=110] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=168, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=111] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=112] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=112] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:18:42 UTC 2023 INFO DENT:Logger.py:147 Deleting VRFs INFO asyncssh:logging.py:92 [conn=168, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=113] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=168, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=114] Command: ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=168, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=114] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":249,"ifname":"vrf0","flags":["NOARP","MASTER","UP","LOWER_UP"],"mtu":65575,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e6:6b:bd:b1:cc:83","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":250,"ifname":"vrf1","flags":["NOARP","MASTER","UP","LOWER_UP"],"mtu":65575,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ba:82:20:b7:ce:88","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=168, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=115] Channel closed DEBUG agg1:Logger.py:156 ip link delete vrf0 && ip link delete vrf1 INFO asyncssh:logging.py:92 [conn=168, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=116] Command: ip link delete vrf0 && ip link delete vrf1 INFO asyncssh:logging.py:92 [conn=168, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=116] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=117] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=118] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=118] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:18:43 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=168, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=119] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=168, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=120] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=168, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=120] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=121] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=122] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=122] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:18:43 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=168, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=123] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=168, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=124] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=168, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=124] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":246,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":247,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:02"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":248,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":2,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:03"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=168, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=125] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=168, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=126] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=168, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=126] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=127] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=168, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=128] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=168, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=128] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=129] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=168, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=130] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=168, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=130] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=131] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=132] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=132] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=132] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:18:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py::test_lacp_routing_over_lag_vrf_vlan_device | 195.33 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9724' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_lag_vrf_vlan_device">Starting testcase:test_lacp_routing_over_lag_vrf_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO asyncssh:logging.py:92 [conn=168, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=169] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=169] Local address: 172.17.0.4, port 38272 INFO asyncssh:logging.py:92 [conn=169] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=169] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=169] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:18:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=169, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=169, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=2] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=169, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=2] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.44","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp9","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:3804","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:380f","dev":"swp9","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"swp9","table":"local","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=169, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=3] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=4] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:18:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=169, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=169, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=6] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=169, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=6] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=8] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:18:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=169, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=9] Channel closed DEBUG agg1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=169, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=169, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=10] Channel closed DEBUG agg1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=169, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=11] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=169, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=169, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=12] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:18:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=169, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=169, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=16] Command: ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=169, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=169, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=18] Command: ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=169, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=169, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=20] Command: bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=169, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=169, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=22] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=169, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=169, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=24] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=169, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link add type vrf table 10 INFO asyncssh:logging.py:92 [conn=169, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=26] Command: ip link add type vrf table 10 INFO asyncssh:logging.py:92 [conn=169, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link set dev vrf0 up INFO asyncssh:logging.py:92 [conn=169, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=28] Command: ip link set dev vrf0 up INFO asyncssh:logging.py:92 [conn=169, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip route add table 10 unreachable default INFO asyncssh:logging.py:92 [conn=169, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=30] Command: ip route add table 10 unreachable default INFO asyncssh:logging.py:92 [conn=169, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=169, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=32] Command: ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=169, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link set dev vrf1 up INFO asyncssh:logging.py:92 [conn=169, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=34] Command: ip link set dev vrf1 up INFO asyncssh:logging.py:92 [conn=169, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip route add table 20 unreachable default INFO asyncssh:logging.py:92 [conn=169, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=36] Command: ip route add table 20 unreachable default INFO asyncssh:logging.py:92 [conn=169, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=169, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=38] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=169, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=169, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=40] Command: ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=169, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bond_2 INFO asyncssh:logging.py:92 [conn=169, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=42] Command: ip link set dev swp2 master bond_2 INFO asyncssh:logging.py:92 [conn=169, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp3 master bond_3 && ip link set dev swp4 master bond_3 INFO asyncssh:logging.py:92 [conn=169, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=44] Command: ip link set dev swp3 master bond_3 && ip link set dev swp4 master bond_3 INFO asyncssh:logging.py:92 [conn=169, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_3 master bridge_0 INFO asyncssh:logging.py:92 [conn=169, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=46] Command: ip link set dev bond_3 master bridge_0 INFO asyncssh:logging.py:92 [conn=169, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link add link bridge_0 name bridge_0.10 type vlan id 10 INFO asyncssh:logging.py:92 [conn=169, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=48] Command: ip link add link bridge_0 name bridge_0.10 type vlan id 10 INFO asyncssh:logging.py:92 [conn=169, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_0.10 up INFO asyncssh:logging.py:92 [conn=169, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=50] Command: ip link set dev bridge_0.10 up INFO asyncssh:logging.py:92 [conn=169, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 master vrf0 INFO asyncssh:logging.py:92 [conn=169, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=52] Command: ip link set dev bond_1 master vrf0 INFO asyncssh:logging.py:92 [conn=169, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_0.10 master vrf0 INFO asyncssh:logging.py:92 [conn=169, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=54] Command: ip link set dev bridge_0.10 master vrf0 INFO asyncssh:logging.py:92 [conn=169, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_2 master vrf1 INFO asyncssh:logging.py:92 [conn=169, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=56] Command: ip link set dev bond_2 master vrf1 INFO asyncssh:logging.py:92 [conn=169, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=57] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=169, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=58] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=169, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=59] Channel closed DEBUG agg1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=169, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=60] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=169, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=61] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.1/24 dev bridge_0.10 INFO asyncssh:logging.py:92 [conn=169, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=62] Command: ip address add 2.2.2.1/24 dev bridge_0.10 INFO asyncssh:logging.py:92 [conn=169, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=62] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip address add 2.2.2.1/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=169, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=64] Command: ip address add 2.2.2.1/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=169, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip route add vrf vrf0 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=169, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=66] Command: ip route add vrf vrf0 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=169, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip route add vrf vrf1 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=169, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=68] Command: ip route add vrf vrf1 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=169, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_0 with ports ['/api/v1/sessions/16/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_0_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:5']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_2 with ports ['/api/v1/sessions/16/ixnetwork/vport/3', '/api/v1/sessions/16/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_2_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:7', '10.36.118.199:1:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/16/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:6']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=169, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=69] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=169, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=70] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=169, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=70] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=169, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=71] Channel closed DEBUG agg1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=169, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=72] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=169, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=72] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":252,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"vrf0","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":252,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"vrf0","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LAG_0 -> ['LAG_1', 'LAG_2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_0_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_2_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22c4610>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 100270 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 18 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 2 Rx 49135 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 51139 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_lag_vrf_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py INFO asyncssh:logging.py:92 [conn=169, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=73] Channel closed DEBUG agg1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=169, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=74] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=169, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=74] Channel closed DEBUG agg1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Deleting routes INFO asyncssh:logging.py:92 [conn=169, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=169, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=76] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=169, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=76] Channel closed DEBUG agg1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]}] INFO DENT:Logger.py:147 Deleting tables INFO asyncssh:logging.py:92 [conn=169, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=77] Channel closed DEBUG agg1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=169, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=78] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=169, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=78] Channel closed DEBUG agg1:Logger.py:156 [{"type":"unreachable","dst":"default","table":"10","flags":["rt_trap"]},{"dst":"1.1.1.0/24","dev":"bond_1","table":"10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"type":"local","dst":"1.1.1.1","dev":"bond_1","table":"10","protocol":"kernel","scope":"host","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"type":"broadcast","dst":"1.1.1.255","dev":"bond_1","table":"10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"bridge_0.10","table":"10","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"local","dst":"2.2.2.1","dev":"bridge_0.10","table":"10","protocol":"kernel","scope":"host","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"broadcast","dst":"2.2.2.255","dev":"bridge_0.10","table":"10","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.1.1.0/24","gateway":"2.2.2.3","dev":"bridge_0.10","table":"10","flags":["offload","rt_offload"]},{"type":"unreachable","dst":"default","table":"20","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"bond_2","table":"20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"local","dst":"2.2.2.1","dev":"bond_2","table":"20","protocol":"kernel","scope":"host","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"broadcast","dst":"2.2.2.255","dev":"bond_2","table":"20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.1.1.0/24","gateway":"2.2.2.3","dev":"bond_2","table":"20","flags":["trap","rt_offload"]},{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.44","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.44","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"fe80::36ef:b6ff:feec:3807","dev":"bond_1","table":"10","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:3809","dev":"bridge_0.10","table":"10","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"bond_1","table":"10","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"bridge_0.10","table":"10","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bond_1","table":"10","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bridge_0.10","table":"10","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:3808","dev":"bond_2","table":"20","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"bond_2","table":"20","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bond_2","table":"20","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp9","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"},{"dst":"fe80::/64","dev":"bridge_0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"bond_3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:3804","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:3809","dev":"bond_3","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::36ef:b6ff:feec:380f","dev":"swp9","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::3ca9:4eff:fee1:705f","dev":"bridge_0","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"swp9","table":"local","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bridge_0","table":"local","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bond_3","table":"local","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=169, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=79] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=80] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=80] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=81] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=82] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=82] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=83] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=84] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=84] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=85] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=86] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=86] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=87] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=88] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=88] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=89] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=90] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=90] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=91] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=92] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=92] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=93] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=94] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=94] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=95] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=96] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=96] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=97] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=98] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=98] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=99] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=100] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=100] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=101] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=102] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=102] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=103] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=104] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=104] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=105] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=106] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=106] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=107] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=108] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=108] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=109] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=110] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=110] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=111] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=112] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=112] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=113] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=114] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=114] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=115] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=116] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=169, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=116] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=117] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=118] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=118] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=119] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=120] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=120] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=121] Channel closed DEBUG agg1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=122] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=169, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=122] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=123] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=124] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=124] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:21:57 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=169, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=125] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=169, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=126] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=169, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=126] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":251,"ifname":"bridge_0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=169, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=127] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=169, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=128] Command: ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=169, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=128] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=129] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=130] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=130] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:21:58 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=169, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=131] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=169, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=132] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=169, chan=132] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=132] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":256,"ifname":"vrf1","flags":["NOARP","MASTER","UP","LOWER_UP"],"mtu":65575,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"92:ba:0e:2b:c5:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":1280,"max_mtu":65575,"linkinfo":{"info_kind":"vrf","info_data":{"table":20}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":252,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"vrf0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"vrf","info_slave_data":{"table":10}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":253,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"vrf1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:03"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"vrf","info_slave_data":{"table":20}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":254,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":2,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:02"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":255,"ifname":"vrf0","flags":["NOARP","MASTER","UP","LOWER_UP"],"mtu":65575,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"52:ae:3d:14:5e:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":1280,"max_mtu":65575,"linkinfo":{"info_kind":"vrf","info_data":{"table":10}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=169, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=133] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=169, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=134] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=169, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=134] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=135] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=169, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=136] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=169, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=136] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=137] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=169, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=138] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=169, chan=138] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=138] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=139] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=140] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=140] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:21:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=169, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=141] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=142] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=142] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:21:59 UTC 2023 INFO DENT:Logger.py:147 Deleting VRFs INFO asyncssh:logging.py:92 [conn=169, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=143] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=169, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=144] Command: ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=169, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=144] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":256,"ifname":"vrf1","flags":["NOARP","MASTER","UP","LOWER_UP"],"mtu":65575,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"92:ba:0e:2b:c5:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":255,"ifname":"vrf0","flags":["NOARP","MASTER","UP","LOWER_UP"],"mtu":65575,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"52:ae:3d:14:5e:29","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=169, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=145] Channel closed DEBUG agg1:Logger.py:156 ip link delete vrf1 && ip link delete vrf0 INFO asyncssh:logging.py:92 [conn=169, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=146] Command: ip link delete vrf1 && ip link delete vrf0 INFO asyncssh:logging.py:92 [conn=169, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=146] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/lacp/test_lacp_with_all_vlan_modes.py::test_lacp_all_vlan_modes | 327.81 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_all_vlan_modes">Starting testcase:test_lacp_all_vlan_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10051' coro=<test_lacp_all_vlan_modes() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py:44> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=172] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=172] Local address: 172.17.0.4, port 48752 INFO asyncssh:logging.py:92 [conn=172] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=172] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=172] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:28:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=172, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_1 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=172, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=2] Command: ip link add bridge_1 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=172, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=172, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=4] Command: ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=172, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=172, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=6] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=172, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=172, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=8] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down INFO asyncssh:logging.py:92 [conn=172, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=172, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=10] Command: ip link set dev swp1 master bond_1 INFO asyncssh:logging.py:92 [conn=172, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master bond_2 INFO asyncssh:logging.py:92 [conn=172, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=12] Command: ip link set dev swp2 master bond_2 INFO asyncssh:logging.py:92 [conn=172, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp3 master bond_3 && ip link set dev swp4 master bond_3 INFO asyncssh:logging.py:92 [conn=172, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=14] Command: ip link set dev swp3 master bond_3 && ip link set dev swp4 master bond_3 INFO asyncssh:logging.py:92 [conn=172, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 INFO asyncssh:logging.py:92 [conn=172, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=16] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 INFO asyncssh:logging.py:92 [conn=172, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=172, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=18] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=172, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=172, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=20] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=172, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond_1 vid 2 INFO asyncssh:logging.py:92 [conn=172, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=22] Command: bridge vlan add dev bond_1 vid 2 INFO asyncssh:logging.py:92 [conn=172, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond_1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=172, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=24] Command: bridge vlan add dev bond_1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=172, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=25] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond_2 vid 2 INFO asyncssh:logging.py:92 [conn=172, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=26] Command: bridge vlan add dev bond_2 vid 2 INFO asyncssh:logging.py:92 [conn=172, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=27] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond_3 vid 4 pvid INFO asyncssh:logging.py:92 [conn=172, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=28] Command: bridge vlan add dev bond_3 vid 4 pvid INFO asyncssh:logging.py:92 [conn=172, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_0 with ports ['/api/v1/sessions/16/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_0_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:5']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/16/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:6']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_2 with ports ['/api/v1/sessions/16/ixnetwork/vport/3', '/api/v1/sessions/16/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_2_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:7', '10.36.118.199:1:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From bond_1 -> untagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_0_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_2_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2242770>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 100318 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 100319 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: From bond_1 -> untagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From bond_1 -> tagged VLAN 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_0_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_2_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2613a30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 98133 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 1 Rx 98134 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 1 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 1 Rx 2 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_all_vlan_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py INFO asyncssh:logging.py:92 [conn=172, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=30] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:34:17 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=172, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=172, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=172, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":276,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=172, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=172, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=34] Command: ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=172, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=36] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:34:18 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=172, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=172, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=38] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=172, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:0a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:0a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":277,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":278,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:02"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":279,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":2,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:03"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=172, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=172, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=40] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=172, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=172, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=42] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=172, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=172, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=44] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=172, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=45] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=46] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:34:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_received[basic] | 154.58 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10107' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[basic]">Starting testcase:test_lldp_received[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=173] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=173] Local address: 172.17.0.4, port 52846 INFO asyncssh:logging.py:92 [conn=173] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=173] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=173] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:34:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=173, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=173, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=173, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=173, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:34:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=173, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=173, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=173, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=173, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=173, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=10] Command: lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=173, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=173, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=173, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=12] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=173, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1256" }, "rx": { "rx": "385686" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=173, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=173, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=14] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=173, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1256" }, "rx": { "rx": "385692" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:36:51 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=173, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=173, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=18] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=173, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_received[mandatory] | 149.49 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10136' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[mandatory]">Starting testcase:test_lldp_received[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=174] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=174] Local address: 172.17.0.4, port 52008 INFO asyncssh:logging.py:92 [conn=174] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=174] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=174] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:36:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=174, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=174, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=174, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=174, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:36:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=174, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=174, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=174, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=174, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=174, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=10] Command: lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=174, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=174, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=174, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=12] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=174, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1258" }, "rx": { "rx": "385692" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "1" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=174, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=174, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=14] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=174, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "LLDP", "rid": "7", "age": "0 day, 00:00:02", "chassis": { "id": { "type": "mac", "value": "00:19:2f:a7:b2:8d" } }, "port": { "id": { "type": "ifalias", "value": "Uplink to Spine 1" }, "ttl": "120" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:39:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=174, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=174, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=18] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=174, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_received[ttl] | 171.70 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10165' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[ttl]">Starting testcase:test_lldp_received[ttl] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=175] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=175] Local address: 172.17.0.4, port 43566 INFO asyncssh:logging.py:92 [conn=175] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=175] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=175] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:39:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=175, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=175, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=175, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=175, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:39:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=175, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=175, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=175, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=175, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=175, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=10] Command: lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=175, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=175, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=12] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=175, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1260" }, "rx": { "rx": "385698" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "2" }, "delete_cnt": { "delete_cnt": "2" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=175, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=14] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=175, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "LLDP", "rid": "8", "age": "0 day, 00:00:02", "chassis": { "id": { "type": "mac", "value": "00:00:00:11:11:11" } }, "port": { "id": { "type": "mac", "value": "00:00:00:00:00:07" }, "ttl": "20" } } } } } INFO asyncssh:logging.py:92 [conn=175, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=175, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=16] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=175, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=16] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[ttl] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:42:15 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=175, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=20] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=175, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=22] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=22] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_rx[disable] | 150.90 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10196' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_rx[disable]">Starting testcase:test_lldp_rx[disable] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=176] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=176] Local address: 172.17.0.4, port 45904 INFO asyncssh:logging.py:92 [conn=176] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=176] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=176] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:42:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=176, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=176, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=176, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=176, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:42:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=176, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=176, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=176, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=176, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status disabled INFO asyncssh:logging.py:92 [conn=176, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=10] Command: lldpcli configure ports swp1 lldp status disabled INFO asyncssh:logging.py:92 [conn=176, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=176, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=176, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=12] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=176, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_rx[disable] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:44:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=176, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=176, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=16] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=176, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=18] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=18] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_rx[port_down_up] | 249.20 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10223' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_rx[port_down_up]">Starting testcase:test_lldp_rx[port_down_up] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=177] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=177] Local address: 172.17.0.4, port 36932 INFO asyncssh:logging.py:92 [conn=177] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=177] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=177] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:44:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=177, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=177, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=177, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=177, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:44:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=177, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=177, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=177, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=177, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=177, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=10] Command: ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=177, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=177, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=12] Command: lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=177, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=177, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=177, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=14] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=177, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=177, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=177, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=16] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=177, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=177, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=177, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=18] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=177, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=18] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "LLDP", "rid": "9", "age": "0 day, 00:00:06", "chassis": { "id": { "type": "mac", "value": "a2:2c:38:b8:9c:a6" } }, "port": { "id": { "type": "ifname", "value": "Ethernet0/13" }, "ttl": "120" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_rx[port_down_up] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=20] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:48:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=177, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=177, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=22] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=177, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=23] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=24] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=24] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_max_neighbours | 150.51 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10256' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_max_neighbours">Starting testcase:test_lldp_max_neighbours from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=178] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=178] Local address: 172.17.0.4, port 55316 INFO asyncssh:logging.py:92 [conn=178] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=178] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=178] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:48:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=178, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=178, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=178, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=178, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:48:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=178, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=178, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=178, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=178, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=178, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=10] Command: lldpcli configure ports swp1 lldp status rx-only INFO asyncssh:logging.py:92 [conn=178, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=12] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=178, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli show neighbors | grep RID | wc -l INFO asyncssh:logging.py:92 [conn=178, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=14] Command: lldpcli show neighbors | grep RID | wc -l INFO asyncssh:logging.py:92 [conn=178, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=14] Channel closed DEBUG agg1:Logger.py:156 32 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_max_neighbours from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:51:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=178, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=178, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=18] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=178, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[basic] | 78.28 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10285' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[basic]">Starting testcase:test_lldp_transmitted[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=179] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=179] Local address: 172.17.0.4, port 37204 INFO asyncssh:logging.py:92 [conn=179] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=179] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=179] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:51:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=179, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=179, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=179, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=179, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:51:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=179, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=179, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=179, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=179, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status tx-only INFO asyncssh:logging.py:92 [conn=179, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=10] Command: lldpcli configure ports swp1 lldp status tx-only INFO asyncssh:logging.py:92 [conn=179, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=179, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=12] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=179, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1269" }, "rx": { "rx": "385747" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=179, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=179, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=179, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=179, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=16] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=179, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=16] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1273" }, "rx": { "rx": "385747" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:52:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=179, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=179, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=20] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=179, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=22] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=22] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=179, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=23] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=179, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=24] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=179, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=24] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[mandatory] | 51.66 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10318' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[mandatory]">Starting testcase:test_lldp_transmitted[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=180] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=180] Local address: 172.17.0.4, port 37030 INFO asyncssh:logging.py:92 [conn=180] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=180] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=180] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:52:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=180, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=180, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=180, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=180, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=180, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=180, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:52:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=180, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=180, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=180, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=180, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status tx-only INFO asyncssh:logging.py:92 [conn=180, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=10] Command: lldpcli configure ports swp1 lldp status tx-only INFO asyncssh:logging.py:92 [conn=180, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=180, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=12] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=180, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1275" }, "rx": { "rx": "385747" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=180, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=180, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=180, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show interfaces ports swp1 INFO asyncssh:logging.py:92 [conn=180, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=16] Command: lldpcli -f json show interfaces ports swp1 INFO asyncssh:logging.py:92 [conn=180, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=16] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "LLDP", "age": "0 day, 00:00:00", "chassis": { "localhost": { "id": { "type": "mac", "value": "6e:ee:25:a0:db:1d" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.44", "fe80::36ef:b6ff:feec:3804" ], "mgmt-iface": [ "5", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "34:ef:b6:ec:38:07" }, "descr": "swp1" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=180, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=17] Channel closed DEBUG agg1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=180, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=18] Command: uname -n INFO asyncssh:logging.py:92 [conn=180, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=18] Channel closed DEBUG agg1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1... INFO asyncssh:logging.py:92 [conn=180, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=19] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=180, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=20] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=180, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=20] Channel closed DEBUG agg1:Logger.py:156 01:53:34.582767 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 238: LLDP, length 224 Chassis ID TLV (1), length 7 Subtype MAC address (4): 6e:ee:25:a0:db:1d Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1 with rc 0 and out 01:53:34.582767 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 238: LLDP, length 224 Chassis ID TLV (1), length 7 Subtype MAC address (4): 6e:ee:25:a0:db:1d Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:53:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=180, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=23] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=180, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=24] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=180, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=25] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=180, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=180, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=26] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=180, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=27] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=180, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=180, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=28] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[optional] | 57.00 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10355' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[optional]">Starting testcase:test_lldp_transmitted[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=181] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=181] Local address: 172.17.0.4, port 50106 INFO asyncssh:logging.py:92 [conn=181] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=181] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=181] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:53:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=181, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=181, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=181, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=181, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=181, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=181, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:53:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=181, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=181, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=181, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=181, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status tx-only INFO asyncssh:logging.py:92 [conn=181, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=10] Command: lldpcli configure ports swp1 lldp status tx-only INFO asyncssh:logging.py:92 [conn=181, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=181, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=12] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=181, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1279" }, "rx": { "rx": "385747" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=181, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=181, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=181, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show interfaces ports swp1 INFO asyncssh:logging.py:92 [conn=181, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=16] Command: lldpcli -f json show interfaces ports swp1 INFO asyncssh:logging.py:92 [conn=181, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=16] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "LLDP", "age": "0 day, 00:00:00", "chassis": { "localhost": { "id": { "type": "mac", "value": "6e:ee:25:a0:db:1d" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.44", "fe80::36ef:b6ff:feec:3804" ], "mgmt-iface": [ "5", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "34:ef:b6:ec:38:07" }, "descr": "swp1" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=181, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=17] Channel closed DEBUG agg1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=181, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=18] Command: uname -n INFO asyncssh:logging.py:92 [conn=181, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=18] Channel closed DEBUG agg1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1... INFO asyncssh:logging.py:92 [conn=181, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=19] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=181, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=20] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=181, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=20] Channel closed DEBUG agg1:Logger.py:156 01:54:31.575552 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 238: LLDP, length 224 Chassis ID TLV (1), length 7 Subtype MAC address (4): 6e:ee:25:a0:db:1d Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1 with rc 0 and out 01:54:31.575552 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 238: LLDP, length 224 Chassis ID TLV (1), length 7 Subtype MAC address (4): 6e:ee:25:a0:db:1d Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:54:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=181, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=23] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=181, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=24] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=181, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=25] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=181, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=181, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=26] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=181, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=27] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=181, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=181, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=28] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_tx[disabled] | 56.18 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10392' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[disabled]">Starting testcase:test_lldp_tx[disabled] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=182] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=182] Local address: 172.17.0.4, port 44714 INFO asyncssh:logging.py:92 [conn=182] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=182] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=182] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:54:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=182, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=182, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=182, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=182, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=182, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=182, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:54:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=182, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=182, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=182, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=182, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status disabled && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=182, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=10] Command: lldpcli configure ports swp1 lldp status disabled && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=182, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=182, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=12] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=182, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1283" }, "rx": { "rx": "385747" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=182, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=182, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=14] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=182, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1283" }, "rx": { "rx": "385747" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[disabled] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:55:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=182, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=182, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=18] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=182, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=182, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=182, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=182, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=182, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=22] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=182, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_tx[port_down] | 68.15 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10423' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[port_down]">Starting testcase:test_lldp_tx[port_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=183] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=183] Local address: 172.17.0.4, port 37510 INFO asyncssh:logging.py:92 [conn=183] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=183] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=183] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:55:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=183, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=183, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=183, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=183, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=183, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=183, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:55:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=183, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=183, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=183, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=183, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=183, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=10] Command: ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=183, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=183, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=12] Command: lldpcli configure ports swp1 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=183, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=183, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=14] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=183, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1285" }, "rx": { "rx": "385747" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=183, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=183, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=16] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=183, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=16] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1285" }, "rx": { "rx": "385747" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=183, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=183, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=18] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=183, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=183, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=20] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=183, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1290" }, "rx": { "rx": "385747" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[port_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:56:37 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=183, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=23] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=183, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=24] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=183, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=25] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=183, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=183, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=26] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=183, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=27] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=183, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=183, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=28] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_tx[interval] | 55.56 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10460' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[interval]">Starting testcase:test_lldp_tx[interval] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=184] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=184] Local address: 172.17.0.4, port 54352 INFO asyncssh:logging.py:92 [conn=184] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=184] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=184] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:56:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=184, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=184, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=184, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=184, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=184, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=184, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:56:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=184, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=184, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=184, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=184, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=184, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=10] Command: lldpcli configure ports swp1 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=184, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=184, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=12] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=184, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=12] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1293" }, "rx": { "rx": "385747" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=184, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=184, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=14] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=184, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1296" }, "rx": { "rx": "385747" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[interval] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:57:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=184, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=184, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=18] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=184, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=184, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=184, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=184, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=184, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=22] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=184, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_tx_hold | 59.01 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10491' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx_hold">Starting testcase:test_lldp_tx_hold from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=185] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=185] Local address: 172.17.0.4, port 60240 INFO asyncssh:logging.py:92 [conn=185] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=185] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=185] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:57:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=185, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=185, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=185, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=185, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=185, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=185, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:57:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=185, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=185, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=8] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=185, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=185, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-hold 500 && lldpcli configure ports swp1 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=185, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=10] Command: lldpcli configure lldp tx-hold 500 && lldpcli configure ports swp1 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=185, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1... INFO asyncssh:logging.py:92 [conn=185, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=11] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=185, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=12] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=185, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=12] Channel closed DEBUG agg1:Logger.py:156 01:58:30.549696 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 238: LLDP, length 224 Chassis ID TLV (1), length 7 Subtype MAC address (4): 6e:ee:25:a0:db:1d Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 1000s System Name TLV (5), length 9: localhost System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1 with rc 0 and out 01:58:30.549696 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 238: LLDP, length 224 Chassis ID TLV (1), length 7 Subtype MAC address (4): 6e:ee:25:a0:db:1d Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 1000s System Name TLV (5), length 9: localhost System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx_hold from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:58:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=185, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=185, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=16] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=185, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=185, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=18] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=185, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=18] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "500", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=185, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=185, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=20] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=185, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-hold 4 INFO asyncssh:logging.py:92 [conn=185, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=22] Command: lldpcli configure lldp tx-hold 4 INFO asyncssh:logging.py:92 [conn=185, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_tx_rx.py::test_lldp_bridge | 161.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10523' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_bridge">Starting testcase:test_lldp_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=186] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=186] Local address: 172.17.0.4, port 52316 INFO asyncssh:logging.py:92 [conn=186] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=186] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=186] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:58:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=186, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=186, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=186, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=186, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=186, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=186, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 01:58:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=186, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=186, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=8] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=186, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master br0 && ip link set dev swp2 master br0 && ip link set dev swp3 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=186, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=10] Command: ip link set dev swp1 master br0 && ip link set dev swp2 master br0 && ip link set dev swp3 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=186, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=186, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=12] Command: ip link set dev swp1 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=186, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.3/24', 'count': 1, 'ip': '12.0.0.3', 'gw': '12.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.3/24', 'count': 1, 'ip': '13.0.0.3', 'gw': '13.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=186, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=186, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=186, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=186, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=16] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=186, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=16] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1303" }, "rx": { "rx": "385747" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=186, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=186, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=18] Command: lldpcli configure ports swp1 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=186, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=186, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=186, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=20] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=186, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "LLDP", "rid": "42", "age": "0 day, 00:00:01", "chassis": { "id": { "type": "mac", "value": "a2:2c:38:b8:9c:a6" } }, "port": { "id": { "type": "ifname", "value": "Ethernet0/13" }, "ttl": "120" } } } } } INFO asyncssh:logging.py:92 [conn=186, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=186, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=22] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=186, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=22] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1354" }, "rx": { "rx": "385753" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=186, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=23] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show interfaces ports swp1 INFO asyncssh:logging.py:92 [conn=186, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=24] Command: lldpcli -f json show interfaces ports swp1 INFO asyncssh:logging.py:92 [conn=186, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=24] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "LLDP", "age": "0 day, 00:01:42", "chassis": { "localhost": { "id": { "type": "mac", "value": "6e:ee:25:a0:db:1d" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.44", "fe80::36ef:b6ff:feec:3804" ], "mgmt-iface": [ "5", "5" ], "capability": [ { "type": "Bridge", "enabled": true }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": false } ] } }, "port": { "id": { "type": "mac", "value": "34:ef:b6:ec:38:07" }, "descr": "swp1" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=186, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=25] Channel closed DEBUG agg1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=186, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=26] Command: uname -n INFO asyncssh:logging.py:92 [conn=186, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=26] Channel closed DEBUG agg1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1... INFO asyncssh:logging.py:92 [conn=186, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=27] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=186, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=28] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=186, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=28] Channel closed DEBUG agg1:Logger.py:156 02:01:11.582601 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 238: LLDP, length 224 Chassis ID TLV (1), length 7 Subtype MAC address (4): 6e:ee:25:a0:db:1d Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Bridge] (0x0004) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1 with rc 0 and out 02:01:11.582601 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 238: LLDP, length 224 Chassis ID TLV (1), length 7 Subtype MAC address (4): 6e:ee:25:a0:db:1d Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Bridge] (0x0004) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=30] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:01:13 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=186, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=31] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=186, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=32] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=186, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=33] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=186, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=34] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=186, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=34] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=186, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=35] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=186, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=36] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=186, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=38] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:01:13 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=186, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=186, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=186, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":280,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=186, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=186, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=186, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=42] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_tx_rx.py::test_lldp_enable_disable_ports | 238.90 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10576' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_enable_disable_ports">Starting testcase:test_lldp_enable_disable_ports from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=187] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=187] Local address: 172.17.0.4, port 50372 INFO asyncssh:logging.py:92 [conn=187] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=187] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=187] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:01:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=187, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=187, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=187, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=187, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=187, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=187, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:01:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=187, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=187, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=8] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=187, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_12.0.0.3/24', 'count': 1, 'ip': '12.0.0.3', 'gw': '12.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_13.0.0.3/24', 'count': 1, 'ip': '13.0.0.3', 'gw': '13.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=187, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=9] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=187, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=10] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=187, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=11] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status disabled && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status disabled && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=187, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=12] Command: lldpcli configure ports swp1 lldp status disabled && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status disabled && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=187, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_12.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_13.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=187, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=13] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=187, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=14] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=187, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=14] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1359" }, "rx": { "rx": "385753" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=187, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=16] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=187, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=16] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=187, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=187, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=18] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=187, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=18] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1359" }, "rx": { "rx": "385753" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp2 INFO asyncssh:logging.py:92 [conn=187, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=20] Command: lldpcli -f json show statistics ports swp2 INFO asyncssh:logging.py:92 [conn=187, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp2": { "tx": { "tx": "1272" }, "rx": { "rx": "16541" }, "rx_discarded_cnt": { "rx_discarded_cnt": "16535" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp2 INFO asyncssh:logging.py:92 [conn=187, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=22] Command: lldpcli -f json show neighbors ports swp2 INFO asyncssh:logging.py:92 [conn=187, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=22] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp2": { "via": "LLDP", "rid": "44", "age": "0 day, 00:00:08", "chassis": { "id": { "type": "mac", "value": "02:7d:5e:78:68:e7" } }, "port": { "id": { "type": "mac", "value": "02:e6:56:81:66:63" }, "ttl": "193" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=23] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp2 INFO asyncssh:logging.py:92 [conn=187, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=24] Command: lldpcli -f json show neighbors ports swp2 INFO asyncssh:logging.py:92 [conn=187, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=24] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp2": { "via": "LLDP", "rid": "44", "age": "0 day, 00:00:08", "chassis": { "id": { "type": "mac", "value": "02:7d:5e:78:68:e7" } }, "port": { "id": { "type": "mac", "value": "02:e6:56:81:66:63" }, "ttl": "193" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=25] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp2 INFO asyncssh:logging.py:92 [conn=187, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=26] Command: lldpcli -f json show statistics ports swp2 INFO asyncssh:logging.py:92 [conn=187, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=26] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp2": { "tx": { "tx": "1275" }, "rx": { "rx": "16541" }, "rx_discarded_cnt": { "rx_discarded_cnt": "16535" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=27] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show interfaces ports swp2 INFO asyncssh:logging.py:92 [conn=187, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=28] Command: lldpcli -f json show interfaces ports swp2 INFO asyncssh:logging.py:92 [conn=187, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=28] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp2": { "via": "LLDP", "age": "0 day, 00:02:14", "chassis": { "localhost": { "id": { "type": "mac", "value": "6e:ee:25:a0:db:1d" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.44", "fe80::36ef:b6ff:feec:3804" ], "mgmt-iface": [ "5", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "34:ef:b6:ec:38:08" }, "descr": "swp2" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=29] Channel closed DEBUG agg1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=187, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=30] Command: uname -n INFO asyncssh:logging.py:92 [conn=187, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=30] Channel closed DEBUG agg1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 3 tcpdump -i swp2 ether proto 0x88cc -vnne on agg1... INFO asyncssh:logging.py:92 [conn=187, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=31] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp2 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=187, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=32] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp2 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=187, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=32] Channel closed DEBUG agg1:Logger.py:156 02:04:55.361258 34:ef:b6:ec:38:08 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 238: LLDP, length 224 Chassis ID TLV (1), length 7 Subtype MAC address (4): 6e:ee:25:a0:db:1d Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:08 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp2 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp2, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 3 tcpdump -i swp2 ether proto 0x88cc -vnne on agg1 with rc 0 and out 02:04:55.361258 34:ef:b6:ec:38:08 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 238: LLDP, length 224 Chassis ID TLV (1), length 7 Subtype MAC address (4): 6e:ee:25:a0:db:1d Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:08 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp2 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp2, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=187, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=33] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp3 INFO asyncssh:logging.py:92 [conn=187, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=34] Command: lldpcli -f json show statistics ports swp3 INFO asyncssh:logging.py:92 [conn=187, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=34] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp3": { "tx": { "tx": "1158" }, "rx": { "rx": "5855" }, "rx_discarded_cnt": { "rx_discarded_cnt": "5855" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=35] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp3 INFO asyncssh:logging.py:92 [conn=187, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=36] Command: lldpcli -f json show neighbors ports swp3 INFO asyncssh:logging.py:92 [conn=187, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=36] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=187, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=37] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp3 INFO asyncssh:logging.py:92 [conn=187, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=38] Command: lldpcli -f json show statistics ports swp3 INFO asyncssh:logging.py:92 [conn=187, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=38] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp3": { "tx": { "tx": "1158" }, "rx": { "rx": "5855" }, "rx_discarded_cnt": { "rx_discarded_cnt": "5855" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=39] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp4 INFO asyncssh:logging.py:92 [conn=187, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=40] Command: lldpcli -f json show statistics ports swp4 INFO asyncssh:logging.py:92 [conn=187, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=40] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp4": { "tx": { "tx": "1205" }, "rx": { "rx": "5861" }, "rx_discarded_cnt": { "rx_discarded_cnt": "5855" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=41] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp4 INFO asyncssh:logging.py:92 [conn=187, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=42] Command: lldpcli -f json show neighbors ports swp4 INFO asyncssh:logging.py:92 [conn=187, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=42] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp4": { "via": "LLDP", "rid": "43", "age": "0 day, 00:00:24", "chassis": { "id": { "type": "mac", "value": "02:a4:7e:a5:51:56" } }, "port": { "id": { "type": "mac", "value": "02:35:18:65:f7:b9" }, "ttl": "199" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=43] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp4 INFO asyncssh:logging.py:92 [conn=187, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=44] Command: lldpcli -f json show neighbors ports swp4 INFO asyncssh:logging.py:92 [conn=187, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=44] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp4": { "via": "LLDP", "rid": "43", "age": "0 day, 00:00:24", "chassis": { "id": { "type": "mac", "value": "02:a4:7e:a5:51:56" } }, "port": { "id": { "type": "mac", "value": "02:35:18:65:f7:b9" }, "ttl": "199" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=45] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp4 INFO asyncssh:logging.py:92 [conn=187, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=46] Command: lldpcli -f json show statistics ports swp4 INFO asyncssh:logging.py:92 [conn=187, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=46] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp4": { "tx": { "tx": "1208" }, "rx": { "rx": "5861" }, "rx_discarded_cnt": { "rx_discarded_cnt": "5855" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=47] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show interfaces ports swp4 INFO asyncssh:logging.py:92 [conn=187, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=48] Command: lldpcli -f json show interfaces ports swp4 INFO asyncssh:logging.py:92 [conn=187, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=48] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp4": { "via": "LLDP", "age": "0 day, 00:02:30", "chassis": { "localhost": { "id": { "type": "mac", "value": "6e:ee:25:a0:db:1d" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.44", "fe80::36ef:b6ff:feec:3804" ], "mgmt-iface": [ "5", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "34:ef:b6:ec:38:0a" }, "descr": "swp4" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=49] Channel closed DEBUG agg1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=187, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=50] Command: uname -n INFO asyncssh:logging.py:92 [conn=187, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=50] Channel closed DEBUG agg1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 3 tcpdump -i swp4 ether proto 0x88cc -vnne on agg1... INFO asyncssh:logging.py:92 [conn=187, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=51] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp4 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=187, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=52] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp4 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=187, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=52] Channel closed DEBUG agg1:Logger.py:156 02:05:09.371123 34:ef:b6:ec:38:0a > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 238: LLDP, length 224 Chassis ID TLV (1), length 7 Subtype MAC address (4): 6e:ee:25:a0:db:1d Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:0a Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp4 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp4, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 2 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 3 tcpdump -i swp4 ether proto 0x88cc -vnne on agg1 with rc 0 and out 02:05:09.371123 34:ef:b6:ec:38:0a > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 238: LLDP, length 224 Chassis ID TLV (1), length 7 Subtype MAC address (4): 6e:ee:25:a0:db:1d Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:0a Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp4 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp4, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 2 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_enable_disable_ports from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=53] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=54] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:05:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=187, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=55] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=187, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=56] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=187, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=57] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=187, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=58] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=187, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=58] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=187, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=59] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=187, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=60] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=187, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=60] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_tx_rx.py::test_lldp_lag | 168.46 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10646' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_lag">Starting testcase:test_lldp_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=188] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=188] Local address: 172.17.0.4, port 47746 INFO asyncssh:logging.py:92 [conn=188] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=188] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=188] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:05:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=188, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=1] Channel closed DEBUG agg1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=188, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=188, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=2] Channel closed DEBUG agg1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp48.service loaded active exited Online state for switchdev device swp48 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=188, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=3] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=188, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=188, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=4] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:05:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=188, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=188, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=8] Command: ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=188, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=188, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=10] Command: ip link set dev swp1 down INFO asyncssh:logging.py:92 [conn=188, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=188, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=12] Command: ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=188, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=188, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=14] Command: ip link set dev swp1 up && ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=188, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond1 with ports ['/api/v1/sessions/16/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:1:5']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=188, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=15] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=188, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=16] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=188, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=17] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure system bond-slave-src-mac-type real INFO asyncssh:logging.py:92 [conn=188, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=18] Command: lldpcli configure system bond-slave-src-mac-type real INFO asyncssh:logging.py:92 [conn=188, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=19] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=188, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=20] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=188, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=20] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1364" }, "rx": { "rx": "385753" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=188, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=21] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=188, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=22] Command: lldpcli configure ports swp1 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=188, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint bond1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on bond1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=188, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=23] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=188, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=24] Command: lldpcli -f json show neighbors ports swp1 INFO asyncssh:logging.py:92 [conn=188, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=24] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "LLDP", "rid": "45", "age": "0 day, 00:00:03", "chassis": { "id": { "type": "mac", "value": "02:6d:41:e4:1c:ca" } }, "port": { "id": { "type": "ifname", "value": "FastEthernet/19" }, "ttl": "110" } } } } } INFO asyncssh:logging.py:92 [conn=188, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=25] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=188, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=26] Command: lldpcli -f json show statistics ports swp1 INFO asyncssh:logging.py:92 [conn=188, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=26] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "tx": { "tx": "1404" }, "rx": { "rx": "385759" }, "rx_discarded_cnt": { "rx_discarded_cnt": "385686" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "38" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=188, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=27] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show interfaces ports swp1 INFO asyncssh:logging.py:92 [conn=188, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=28] Command: lldpcli -f json show interfaces ports swp1 INFO asyncssh:logging.py:92 [conn=188, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=28] Channel closed DEBUG agg1:Logger.py:156 { "lldp": { "interface": { "swp1": { "via": "LLDP", "age": "0 day, 00:01:21", "chassis": { "localhost": { "id": { "type": "mac", "value": "6e:ee:25:a0:db:1d" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.44", "fe80::36ef:b6ff:feec:3804" ], "mgmt-iface": [ "5", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "34:ef:b6:ec:38:07" }, "descr": "swp1" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=188, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=29] Channel closed DEBUG agg1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=188, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=30] Command: uname -n INFO asyncssh:logging.py:92 [conn=188, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=30] Channel closed DEBUG agg1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1... INFO asyncssh:logging.py:92 [conn=188, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=31] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=188, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=32] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=188, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=32] Channel closed DEBUG agg1:Logger.py:156 02:07:58.657046 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 238: LLDP, length 224 Chassis ID TLV (1), length 7 Subtype MAC address (4): 6e:ee:25:a0:db:1d Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported, enabled], aggregation port ID 281 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT aggregation 1] Ran timeout --preserve-status 3 tcpdump -i swp1 ether proto 0x88cc -vnne on agg1 with rc 0 and out 02:07:58.657046 34:ef:b6:ec:38:07 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 238: LLDP, length 224 Chassis ID TLV (1), length 7 Subtype MAC address (4): 6e:ee:25:a0:db:1d Port ID TLV (2), length 7 Subtype MAC address (3): 34:ef:b6:ec:38:07 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jun 9 12:19:56 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.44 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::36ef:b6ff:feec:3804 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 4: swp1 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported, enabled], aggregation port ID 281 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [none] (0x00) PMD autoneg capability [unknown] (0x0000) MAU type 10GBASELR (0x0023) End TLV (0), length 0 tcpdump: listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=34] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:08:00 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=188, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=35] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=188, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=36] Command: lldpcli configure ports swp1 lldp status rx-and-tx && lldpcli configure ports swp2 lldp status rx-and-tx && lldpcli configure ports swp3 lldp status rx-and-tx && lldpcli configure ports swp4 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=188, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=37] Channel closed DEBUG agg1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=188, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=38] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=188, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=38] Channel closed DEBUG agg1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "real", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=188, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=39] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=188, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=40] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=188, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=41] Channel closed DEBUG agg1:Logger.py:156 lldpcli configure system bond-slave-src-mac-type local INFO asyncssh:logging.py:92 [conn=188, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=42] Command: lldpcli configure system bond-slave-src-mac-type local INFO asyncssh:logging.py:92 [conn=188, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=43] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=44] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:08:00 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=188, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=188, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=46] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=188, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":281,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=188, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=188, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=48] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=188, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=48] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-ipv4] | 152.26 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-ipv4]">Starting testcase:test_policer_basic_functionality[port-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10708' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=189] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=189] Local address: 172.17.0.4, port 47662 INFO asyncssh:logging.py:92 [conn=189] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=189] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=189] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:08:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=189, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=189, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=189, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=189, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=189, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=189, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=189, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_ip 85.31.156.2 dst_ip 81.99.55.243 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=189, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=10] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_ip 85.31.156.2 dst_ip 81.99.55.243 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=189, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=189, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=12] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=189, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","dst_ip":"81.99.55.243","src_ip":"85.31.156.2"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_eth_type_ipv4_dst_ip_81.99.55.243_src_ip_85.31.156.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22c71c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 25688148 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 2008 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:10:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=189, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:10:31 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=189, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=189, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=189, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":282,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=189, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:10:31 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=189, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=189, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=189, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=189, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=189, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=189, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=189, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=189, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=189, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=189, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=189, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=189, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=189, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=189, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=189, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=189, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=189, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=189, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=189, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=189, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=189, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=189, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=189, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=189, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=189, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=189, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=189, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=189, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=189, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=189, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=189, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=189, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=189, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=189, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=189, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=189, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=189, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=189, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=189, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=189, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=189, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=189, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=189, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=189, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=189, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=189, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=189, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=189, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=189, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=189, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=189, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=189, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=189, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=189, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=189, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=189, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=189, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=189, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=189, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=189, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=189, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=189, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=189, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=189, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=189, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=189, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=189, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=189, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=189, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=189, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=189, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=189, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=189, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=189, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=189, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=189, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=189, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=189, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=189, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=189, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=189, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=189, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=189, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=189, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=189, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=189, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=189, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=189, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=189, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=189, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=189, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=189, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=189, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=189, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=189, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=189, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=189, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=189, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=189, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=189, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=189, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=189, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=189, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=189, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=189, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=189, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-l2] | 146.69 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-l2]">Starting testcase:test_policer_basic_functionality[port-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10863' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=190] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=190] Local address: 172.17.0.4, port 33800 INFO asyncssh:logging.py:92 [conn=190] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=190] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=190] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:10:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=190, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=190, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=190, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=190, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=190, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=190, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=190, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=190, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=190, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 802.1q flower skip_sw src_mac 02:ca:88:1d:e2:c3 dst_mac 02:e7:a2:39:b2:2c vlan_id 3668 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=190, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=10] Command: tc filter add dev swp1 ingress protocol 802.1q flower skip_sw src_mac 02:ca:88:1d:e2:c3 dst_mac 02:e7:a2:39:b2:2c vlan_id 3668 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=190, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=190, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=12] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=190, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3668,"dst_mac":"02:e7:a2:39:b2:2c","src_mac":"02:ca:88:1d:e2:c3"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_3668_dst_mac_02:e7:a2:39:b2:2c_src_mac_02:ca:88:1d:e2:c3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a20181f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 20882672 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1852 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:12:52 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=190, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:12:58 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=190, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=190, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=190, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":283,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=190, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=190, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=190, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:12:58 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=190, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=190, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=190, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=190, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=190, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=190, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=190, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=190, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=190, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=190, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=190, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=190, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=190, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=190, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=190, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=190, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=190, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=190, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=190, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=190, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=190, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=190, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=190, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=190, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=190, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=190, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=190, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=190, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=190, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=190, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=190, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=190, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=190, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=190, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=190, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=190, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=190, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=190, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=190, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=190, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=190, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=190, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=190, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=190, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=190, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=190, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=190, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=190, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=190, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=190, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=190, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=190, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=190, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=190, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=190, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=190, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=190, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=190, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=190, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=190, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=190, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=190, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=190, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=190, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=190, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=190, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=190, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=190, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=190, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=190, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=190, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=190, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=190, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=190, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=190, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=190, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=190, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=190, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=190, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=190, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=190, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=190, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=190, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=190, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=190, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=190, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=190, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=190, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=190, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=190, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=190, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=190, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=190, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=190, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=190, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=190, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=190, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=190, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=190, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=190, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=190, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=190, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=190, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=190, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=190, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=190, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-udp] | 151.21 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-udp]">Starting testcase:test_policer_basic_functionality[port-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11018' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=191] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=191] Local address: 172.17.0.4, port 49610 INFO asyncssh:logging.py:92 [conn=191] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=191] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=191] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:13:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=191, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=191, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=191, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=191, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=191, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=191, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=191, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw src_ip 19.106.187.26 dst_ip 28.253.7.175 ip_proto udp src_port 56404 dst_port 39682 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=10] Command: tc filter add dev swp1 ingress protocol 0x0800 flower skip_sw src_ip 19.106.187.26 dst_ip 28.253.7.175 ip_proto udp src_port 56404 dst_port 39682 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=191, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=12] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=191, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"28.253.7.175","src_ip":"19.106.187.26","dst_port":39682,"src_port":56404},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_eth_type_ipv4_ip_proto_udp_dst_ip_28.253.7.175_src_ip_19.106.187.26_dst_port_39682_src_port_56404 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fce680>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 30416012 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 2161 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:15:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=191, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:15:29 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=191, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=191, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=191, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":284,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=191, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:15:29 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=191, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=191, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=191, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=191, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=191, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=191, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=191, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=191, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=191, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=191, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=191, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=191, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=191, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=191, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=191, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=191, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=191, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=191, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=191, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=191, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=191, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=191, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=191, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=191, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=191, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=191, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=191, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=191, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=191, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=191, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=191, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=191, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=191, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=191, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=191, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=191, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=191, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=191, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=191, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=191, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=191, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=191, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=191, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=191, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=191, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=191, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=191, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=191, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=191, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=191, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=191, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=191, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=191, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=191, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=191, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=191, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=191, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=191, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=191, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=191, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=191, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=191, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=191, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=191, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=191, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=191, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=191, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=191, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=191, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=191, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=191, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=191, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=191, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=191, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=191, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=191, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=191, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=191, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=191, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=191, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=191, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=191, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=191, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=191, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=191, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=191, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=191, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=191, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=191, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=191, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=191, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=191, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=191, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=191, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=191, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=191, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=191, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=191, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=191, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=191, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=191, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=191, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=191, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=191, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=191, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=191, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-tcp] | 146.50 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-tcp]">Starting testcase:test_policer_basic_functionality[port-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11173' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=192] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=192] Local address: 172.17.0.4, port 49602 INFO asyncssh:logging.py:92 [conn=192] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=192] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=192] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:15:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=192, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=192, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=192, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=192, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=192, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip flower skip_sw src_ip 58.201.166.230 dst_ip 42.221.161.82 ip_proto tcp src_port 10177 dst_port 31667 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=10] Command: tc filter add dev swp1 ingress protocol ip flower skip_sw src_ip 58.201.166.230 dst_ip 42.221.161.82 ip_proto tcp src_port 10177 dst_port 31667 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=12] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"tcp","dst_ip":"42.221.161.82","src_ip":"58.201.166.230","dst_port":31667,"src_port":10177},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_eth_type_ipv4_ip_proto_tcp_dst_ip_42.221.161.82_src_ip_58.201.166.230_dst_port_31667_src_port_10177 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2019870>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 32617249 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 2232 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:17:51 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=192, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:17:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=192, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=192, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=192, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":285,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=192, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:17:55 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=192, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=192, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=192, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=192, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=192, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=192, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=192, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=192, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=192, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=192, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=192, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=192, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=192, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=192, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=192, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=192, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=192, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=192, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=192, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=192, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=192, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=192, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=192, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=192, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=192, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=192, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=192, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=192, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=192, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=192, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=192, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=192, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=192, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=192, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=192, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=192, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=192, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=192, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=192, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=192, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=192, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=192, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=192, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=192, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=192, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=192, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=192, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=192, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=192, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=192, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=192, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=192, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=192, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=192, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=192, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=192, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=192, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=192, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=192, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=192, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=192, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=192, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=192, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=192, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=192, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=192, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=192, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=192, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=192, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=192, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=192, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=192, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=192, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=192, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=192, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=192, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=192, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=192, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=192, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=192, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=192, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=192, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=192, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=192, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=192, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=192, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=192, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=192, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=192, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=192, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=192, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=192, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=192, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=192, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=192, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=192, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=192, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=192, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=192, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=192, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=192, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=192, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=192, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=192, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=192, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-ipv4] | 153.07 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-ipv4]">Starting testcase:test_policer_basic_functionality[shared_block-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11328' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=193] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=193] Local address: 172.17.0.4, port 35388 INFO asyncssh:logging.py:92 [conn=193] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=193] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=193] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:17:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=193, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=193, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=193, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=193, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=193, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress_block 983 ingress INFO asyncssh:logging.py:92 [conn=193, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=8] Command: tc qdisc add dev swp2 ingress_block 983 ingress INFO asyncssh:logging.py:92 [conn=193, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 983 ingress protocol ipv4 flower skip_sw src_ip 59.60.219.245 dst_ip 55.212.142.88 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=10] Command: tc filter add block 983 ingress protocol ipv4 flower skip_sw src_ip 59.60.219.245 dst_ip 55.212.142.88 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 983 ingress INFO asyncssh:logging.py:92 [conn=193, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=12] Command: tc -j filter show block 983 ingress INFO asyncssh:logging.py:92 [conn=193, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","dst_ip":"55.212.142.88","src_ip":"59.60.219.245"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2_eth_type_ipv4_dst_ip_55.212.142.88_src_ip_59.60.219.245 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a20183d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 2521 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 41577631 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:20:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=193, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:20:28 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=193, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":286,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=193, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:20:29 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=193, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=193, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=193, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","ingress_block":983,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=193, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=193, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=193, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=193, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=193, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=193, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=193, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=193, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=193, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=193, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=50] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=193, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=193, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=193, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=193, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=193, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=193, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=193, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=193, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=193, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=193, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=193, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=193, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=193, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=193, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=193, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=193, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=193, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=193, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=193, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=193, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=193, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=193, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=193, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=193, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=193, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=193, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=193, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=193, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=193, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=193, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=193, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=193, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=193, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=193, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=193, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=193, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=193, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=193, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=193, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=193, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=193, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=193, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=193, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=193, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=193, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=193, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=193, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=193, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=193, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=193, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=193, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=193, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=193, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=193, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=193, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=193, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=193, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=193, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=193, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=193, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=193, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=193, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=193, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=193, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=193, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=193, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=193, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=193, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=193, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=193, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=193, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=193, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=193, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=193, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=193, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=193, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=193, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=193, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=193, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=193, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=193, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=193, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=193, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=193, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=193, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=193, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=193, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=193, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=193, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=193, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=193, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=193, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=193, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-l2] | 150.33 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-l2]">Starting testcase:test_policer_basic_functionality[shared_block-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11483' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=194] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=194] Local address: 172.17.0.4, port 34266 INFO asyncssh:logging.py:92 [conn=194] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=194] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=194] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:20:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=194, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=194, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=194, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=194, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=194, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress_block 1165 ingress INFO asyncssh:logging.py:92 [conn=194, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=8] Command: tc qdisc add dev swp2 ingress_block 1165 ingress INFO asyncssh:logging.py:92 [conn=194, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1165 ingress protocol 802.1q flower skip_sw src_mac 02:37:f6:4b:55:19 dst_mac 02:4b:cd:12:f4:88 vlan_id 1075 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=10] Command: tc filter add block 1165 ingress protocol 802.1q flower skip_sw src_mac 02:37:f6:4b:55:19 dst_mac 02:4b:cd:12:f4:88 vlan_id 1075 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1165 ingress INFO asyncssh:logging.py:92 [conn=194, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=12] Command: tc -j filter show block 1165 ingress INFO asyncssh:logging.py:92 [conn=194, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1075,"dst_mac":"02:4b:cd:12:f4:88","src_mac":"02:37:f6:4b:55:19"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2_vlan_id_1075_dst_mac_02:4b:cd:12:f4:88_src_mac_02:37:f6:4b:55:19 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcdbd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 2316 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 35223883 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:22:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=194, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:22:59 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=194, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=194, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=194, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":287,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=194, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:22:59 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=194, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=194, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=194, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","ingress_block":1165,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=194, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=194, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=194, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=194, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=194, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=194, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=194, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=194, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=194, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=194, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=50] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=194, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=194, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=194, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=194, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=194, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=194, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=194, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=194, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=194, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=194, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=194, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=194, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=194, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=194, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=194, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=194, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=194, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=194, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=194, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=194, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=194, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=194, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=194, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=194, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=194, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=194, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=194, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=194, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=194, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=194, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=194, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=194, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=194, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=194, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=194, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=194, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=194, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=194, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=194, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=194, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=194, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=194, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=194, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=194, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=194, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=194, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=194, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=194, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=194, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=194, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=194, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=194, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=194, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=194, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=194, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=194, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=194, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=194, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=194, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=194, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=194, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=194, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=194, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=194, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=194, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=194, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=194, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=194, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=194, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=194, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=194, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=194, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=194, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=194, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=194, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=194, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=194, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=194, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=194, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=194, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=194, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=194, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=194, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=194, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=194, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=194, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=194, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=194, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=194, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=194, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=194, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=194, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=194, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-udp] | 145.99 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-udp]">Starting testcase:test_policer_basic_functionality[shared_block-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11638' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=195] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=195] Local address: 172.17.0.4, port 55866 INFO asyncssh:logging.py:92 [conn=195] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=195] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=195] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:23:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=195, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=195, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=195, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=195, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=195, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress_block 459 ingress INFO asyncssh:logging.py:92 [conn=195, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=8] Command: tc qdisc add dev swp2 ingress_block 459 ingress INFO asyncssh:logging.py:92 [conn=195, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 459 ingress protocol ip flower skip_sw src_ip 29.73.32.233 dst_ip 43.227.252.209 ip_proto udp src_port 31242 dst_port 29605 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=10] Command: tc filter add block 459 ingress protocol ip flower skip_sw src_ip 29.73.32.233 dst_ip 43.227.252.209 ip_proto udp src_port 31242 dst_port 29605 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 459 ingress INFO asyncssh:logging.py:92 [conn=195, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=12] Command: tc -j filter show block 459 ingress INFO asyncssh:logging.py:92 [conn=195, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"43.227.252.209","src_ip":"29.73.32.233","dst_port":29605,"src_port":31242},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2_eth_type_ipv4_ip_proto_udp_dst_ip_43.227.252.209_src_ip_29.73.32.233_dst_port_29605_src_port_31242 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a201a6b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 2299 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 34721590 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:25:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=195, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:25:25 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=195, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=195, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=195, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":288,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=195, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:25:25 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=195, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=195, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=195, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","ingress_block":459,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=195, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=195, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=195, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=195, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=195, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=195, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=195, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=195, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=195, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=195, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=50] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=195, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=195, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=195, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=195, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=195, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=195, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=195, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=195, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=195, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=195, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=195, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=195, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=195, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=195, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=195, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=195, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=195, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=195, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=195, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=195, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=195, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=195, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=195, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=195, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=195, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=195, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=195, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=195, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=195, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=195, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=195, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=195, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=195, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=195, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=195, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=195, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=195, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=195, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=195, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=195, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=195, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=195, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=195, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=195, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=195, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=195, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=195, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=195, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=195, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=195, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=195, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=195, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=195, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=195, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=195, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=195, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=195, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=195, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=195, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=195, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=195, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=195, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=195, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=195, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=195, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=195, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=195, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=195, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=195, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=195, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=195, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=195, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=195, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=195, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=195, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=195, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=195, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=195, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=195, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=195, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=195, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=195, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=195, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=195, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=195, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=195, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=195, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=195, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=195, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=195, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=195, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=195, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=195, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-tcp] | 163.42 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-tcp]">Starting testcase:test_policer_basic_functionality[shared_block-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11793' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=196] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=196] Local address: 172.17.0.4, port 37544 INFO asyncssh:logging.py:92 [conn=196] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=196] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=196] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:25:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=196, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=196, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=196, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=196, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=196, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress_block 1576 ingress INFO asyncssh:logging.py:92 [conn=196, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=8] Command: tc qdisc add dev swp2 ingress_block 1576 ingress INFO asyncssh:logging.py:92 [conn=196, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1576 ingress protocol 0x0800 flower skip_sw src_ip 40.67.188.132 dst_ip 94.164.230.212 ip_proto tcp src_port 16790 dst_port 30410 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=196, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=10] Command: tc filter add block 1576 ingress protocol 0x0800 flower skip_sw src_ip 40.67.188.132 dst_ip 94.164.230.212 ip_proto tcp src_port 16790 dst_port 30410 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=196, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1576 ingress INFO asyncssh:logging.py:92 [conn=196, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=12] Command: tc -j filter show block 1576 ingress INFO asyncssh:logging.py:92 [conn=196, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"tcp","dst_ip":"94.164.230.212","src_ip":"40.67.188.132","dst_port":30410,"src_port":16790},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2_eth_type_ipv4_ip_proto_tcp_dst_ip_94.164.230.212_src_ip_40.67.188.132_dst_port_30410_src_port_16790 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2078940>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 2153 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 30210760 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:28:03 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=196, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:28:08 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=196, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=196, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=196, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":289,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=196, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:28:08 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=196, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=196, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=196, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","ingress_block":1576,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=196, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=196, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=196, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=196, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=196, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=196, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=196, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=196, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=196, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=196, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=50] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=196, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=196, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=196, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=196, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=196, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=196, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=196, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=196, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=196, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=196, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=196, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=196, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=196, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=196, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=196, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=196, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=196, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=196, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=196, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=196, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=196, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=196, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=196, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=196, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=196, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=196, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=196, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=196, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=196, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=196, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=196, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=196, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=196, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=196, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=196, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=196, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=196, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=196, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=196, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=196, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=196, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=196, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=196, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=196, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=196, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=196, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=196, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=196, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=196, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=196, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=196, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=196, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=196, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=196, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=196, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=196, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=196, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=196, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=196, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=196, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=196, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=196, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=196, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=196, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=196, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=196, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=196, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=196, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=196, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=196, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=196, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=196, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=196, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=196, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=196, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=196, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=196, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=196, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=196, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=196, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=196, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=196, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=196, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=196, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=196, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=196, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=196, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=196, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=196, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=196, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=196, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=196, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=196, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_dynamic_traps.py::test_policer_interact_with_acl_drop | 257.14 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_interact_with_acl_drop">Starting testcase:test_policer_interact_with_acl_drop from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11948' coro=<test_policer_interact_with_acl_drop() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=197] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=197] Local address: 172.17.0.4, port 54354 INFO asyncssh:logging.py:92 [conn=197] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=197] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=197] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:28:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=197, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=197, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=197, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=197, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=197, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=197, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=197, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=10] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action drop INFO asyncssh:logging.py:92 [conn=197, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=12] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action drop INFO asyncssh:logging.py:92 [conn=197, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=197, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=14] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=197, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a255c6a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 96247829 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 3576 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 3576 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 3576 INFO asyncssh:logging.py:92 [conn=197, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=16] Command: tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=18] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2019ed0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 133699574 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 5559 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 5559 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 5559 INFO asyncssh:logging.py:92 [conn=197, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=20] Command: tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=22] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a207b4f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 277476743 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 6081 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 6080 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 6080 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_interact_with_acl_drop from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=24] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:32:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=197, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=26] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:32:25 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=197, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=197, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=197, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=197, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=197, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=197, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=197, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=197, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=197, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=50] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=197, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=197, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=52] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=197, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=197, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=197, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=197, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=197, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=197, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=197, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=197, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=197, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=197, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=197, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=197, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=197, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=197, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=197, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=197, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=197, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=197, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=197, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=197, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=197, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=197, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=197, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=197, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=197, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=197, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=197, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=197, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=197, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=197, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=197, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=197, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=197, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=197, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=197, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=197, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=197, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=197, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=197, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=197, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=197, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=197, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=197, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=197, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=197, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=197, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=197, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=197, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=197, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=197, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=197, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=197, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=197, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=197, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=197, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=197, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=197, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=197, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=197, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=197, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=197, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=197, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=197, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=197, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=197, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=197, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=197, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=197, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=120] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=197, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=197, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=122] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=197, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=197, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=124] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=197, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=197, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=126] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=197, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=197, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=128] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=197, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=197, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=130] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=197, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=197, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=132] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=197, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=197, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=134] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=197, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=197, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=136] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=197, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=197, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=138] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=197, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=197, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=140] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=197, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=197, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=142] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=197, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=197, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=144] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=197, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=197, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=146] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=197, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=197, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=148] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=197, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=149] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=150] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=150] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:32:27 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=197, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=151] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=197, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=152] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=197, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=152] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":290,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=197, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=153] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=154] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=154] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_interaction_with_span.py::test_policer_interaction_span | 354.74 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_interaction_span">Starting testcase:test_policer_interaction_span from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12115' coro=<test_policer_interaction_span() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=198] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=198] Local address: 172.17.0.4, port 38282 INFO asyncssh:logging.py:92 [conn=198] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=198] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=198] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:32:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=198, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=198, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=198, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=198, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=198, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=198, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=198, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress pref 200 matchall skip_sw action mirred egress mirror dev swp2 INFO asyncssh:logging.py:92 [conn=198, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=10] Command: tc filter add dev swp1 ingress pref 200 matchall skip_sw action mirred egress mirror dev swp2 INFO asyncssh:logging.py:92 [conn=198, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ip pref 300 flower src_mac 02:05:0e:11:9c:a8 dst_mac 02:dd:57:ee:81:88 src_ip 106.38.228.165 dst_ip 123.179.185.167 action police rate 50000000 burst 50100000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=198, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=12] Command: tc filter add dev swp1 ingress protocol ip pref 300 flower src_mac 02:05:0e:11:9c:a8 dst_mac 02:dd:57:ee:81:88 src_ip 106.38.228.165 dst_ip 123.179.185.167 action police rate 50000000 burst 50100000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=198, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=198, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=14] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=198, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"all","pref":200,"kind":"matchall","chain":0},{"protocol":"all","pref":200,"kind":"matchall","chain":0,"options":{"handle":1,"skip_sw":true,"in_hw":true,"actions":[{"order":1,"kind":"mirred","mirred_action":"mirror","direction":"egress","to_dev":"swp2","control_action":{"type":"pipe"},"index":1,"ref":1,"bind":1}]}},{"protocol":"ip","pref":300,"kind":"flower","chain":0},{"protocol":"ip","pref":300,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:dd:57:ee:81:88","src_mac":"02:05:0e:11:9c:a8","eth_type":"ipv4","dst_ip":"123.179.185.167","src_ip":"106.38.228.165"},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcc460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 2424699 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 3024508 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 599809 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 599809 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the mirred port 10.36.118.199:1:6 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:7 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcfaf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 2494140 Rx 2494140 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 2494140 Rx 3105522 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 3105522 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 3105522 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:5 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:6 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:7 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fce3b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_swp1 SIP-DIP N/A Tx 1659591 Rx 2009549 Loss INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_swp1 SIP-DIP N/A Tx 1659590 Rx 356706 Loss 78.506 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_swp1 SIP-DIP N/A Tx 1659590 Rx 318820 Loss 80.789 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI stream_swp2 SIP-DIP N/A Tx 1659591 Rx 1659591 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI stream_swp2 SIP-DIP N/A Tx 1659590 Rx 1659590 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI stream_swp2 SIP-DIP N/A Tx 1659590 Rx 1659590 Loss 0.000 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:5 and stream stream_swp2 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:7 and stream stream_swp2 INFO DENT:Logger.py:84 [DENT aggregation 1] Verifying rate for the port 10.36.118.199:1:8 and stream stream_swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_interaction_span from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:38:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=198, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:38:20 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=198, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=198, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=20] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=198, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=198, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=198, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=22] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=198, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=22] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=198, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=24] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=198, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=24] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=198, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=42] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=198, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=198, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=44] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=198, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=198, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=198, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=198, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=48] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=198, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=198, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=50] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=198, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=198, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=52] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=198, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=198, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=54] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=198, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=198, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=56] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=198, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=198, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=58] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=198, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=198, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=60] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=198, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=198, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=62] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=198, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=198, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=64] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=198, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=198, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=66] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=198, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=198, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=68] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=198, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=198, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=70] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=198, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=198, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=72] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=198, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=198, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=74] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=198, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=198, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=76] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=198, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=198, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=78] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=198, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=198, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=80] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=198, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=198, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=82] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=198, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=198, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=84] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=198, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=198, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=86] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=198, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=198, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=88] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=198, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=198, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=90] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=198, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=198, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=92] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=198, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=198, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=94] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=198, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=198, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=96] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=198, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=198, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=98] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=198, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=198, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=100] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=198, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=198, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=102] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=198, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=198, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=104] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=198, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=198, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=106] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=198, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=198, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=108] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=198, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=198, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=110] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=198, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=198, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=112] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=198, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=198, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=114] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=198, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=198, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=116] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=198, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=198, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=118] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=198, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=198, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=120] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=198, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=198, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=122] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=198, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=198, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=124] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=198, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=198, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=126] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=198, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=198, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=128] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=198, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=198, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=130] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=198, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=198, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=132] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=198, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=198, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=134] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=198, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=198, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=136] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=198, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=198, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=138] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=198, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=198, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=140] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=198, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=141] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=142] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=142] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:38:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=198, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=143] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=198, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=144] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=198, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=144] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":291,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=198, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=145] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=198, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=146] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=198, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=146] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_negative_add_rule_to_bond.py::test_policer_bond_rule_not_offloaded | 3.82 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_bond_rule_not_offloaded">Starting testcase:test_policer_bond_rule_not_offloaded from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12274' coro=<test_policer_bond_rule_not_offloaded() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py:32> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=199] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=199] Local address: 172.17.0.4, port 59952 INFO asyncssh:logging.py:92 [conn=199] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=199] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=199] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:38:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=199, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add name bond33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=199, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=2] Command: ip link add name bond33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=199, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond33 up INFO asyncssh:logging.py:92 [conn=199, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=4] Command: ip link set dev bond33 up INFO asyncssh:logging.py:92 [conn=199, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=199, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=6] Command: ip link set dev swp1 down && ip link set dev swp2 down INFO asyncssh:logging.py:92 [conn=199, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 master bond33 && ip link set dev swp2 master bond33 INFO asyncssh:logging.py:92 [conn=199, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=8] Command: ip link set dev swp1 master bond33 && ip link set dev swp2 master bond33 INFO asyncssh:logging.py:92 [conn=199, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=199, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up INFO asyncssh:logging.py:92 [conn=199, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev bond33 ingress INFO asyncssh:logging.py:92 [conn=199, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=12] Command: tc qdisc add dev bond33 ingress INFO asyncssh:logging.py:92 [conn=199, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev bond33 ingress protocol 0x9200 flower action drop INFO asyncssh:logging.py:92 [conn=199, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=14] Command: tc filter add dev bond33 ingress protocol 0x9200 flower action drop INFO asyncssh:logging.py:92 [conn=199, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev bond33 ingress INFO asyncssh:logging.py:92 [conn=199, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=16] Command: tc -j filter show dev bond33 ingress INFO asyncssh:logging.py:92 [conn=199, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"9200"},"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1}]}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_bond_rule_not_offloaded from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:38:23 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=199, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=199, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=20] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=199, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond33","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond33","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"34:ef:b6:ec:38:08","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":292,"ifname":"bond33","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=199, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond33 INFO asyncssh:logging.py:92 [conn=199, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=22] Command: ip link delete bond33 INFO asyncssh:logging.py:92 [conn=199, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=24] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:38:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=199, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=26] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:38:24 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=199, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=199, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=199, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=199, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=199, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=199, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=199, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=199, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=199, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=50] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=199, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=199, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=199, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=199, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=199, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=199, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=199, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=199, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=58] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=199, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=199, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=60] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=199, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=199, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=62] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=199, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=199, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=64] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=199, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=199, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=66] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=199, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=199, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=68] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=199, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=199, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=70] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=199, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=199, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=72] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=199, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=199, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=74] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=199, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=199, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=76] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=199, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=199, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=78] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=199, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=199, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=80] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=199, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=199, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=82] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=199, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=199, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=84] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=199, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=199, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=86] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=199, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=199, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=88] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=199, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=199, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=90] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=199, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=199, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=92] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=199, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=199, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=94] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=199, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=199, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=96] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=199, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=199, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=98] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=199, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=199, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=100] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=199, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=199, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=102] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=199, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=199, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=104] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=199, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=199, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=106] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=199, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=199, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=108] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=199, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=199, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=110] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=199, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=199, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=112] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=199, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=199, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=114] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=199, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=199, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=116] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=199, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=199, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=118] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=199, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=199, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=120] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=199, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=199, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=122] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=199, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=199, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=124] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=199, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=199, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=126] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=199, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=199, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=128] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=199, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=199, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=130] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=199, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=199, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=132] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=199, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=199, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=134] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=199, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=199, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=136] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=199, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=199, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=138] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=199, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=199, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=140] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=199, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=199, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=142] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=199, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=199, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=144] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=199, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_rate_per_rule.py::test_policer_rate_per_rule | 246.30 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_per_rule">Starting testcase:test_policer_rate_per_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12431' coro=<test_policer_rate_per_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=200] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=200] Local address: 172.17.0.4, port 59960 INFO asyncssh:logging.py:92 [conn=200] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=200] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=200] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:38:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=200, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=200, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=200, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=200, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=200, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=200, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=200, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 pref 100 flower src_mac 02:4f:9d:1b:69:b2 dst_mac 02:d6:f5:2f:99:3c src_ip 27.81.243.187 dst_ip 19.36.55.22 ip_proto udp src_port 58121 dst_port 9256 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=200, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=10] Command: tc filter add dev swp1 ingress protocol ipv4 pref 100 flower src_mac 02:4f:9d:1b:69:b2 dst_mac 02:d6:f5:2f:99:3c src_ip 27.81.243.187 dst_ip 19.36.55.22 ip_proto udp src_port 58121 dst_port 9256 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=200, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 pref 200 flower src_mac 02:76:0e:d1:33:de dst_mac 02:49:a8:5f:e2:c3 src_ip 103.119.14.105 dst_ip 21.97.247.248 ip_proto udp src_port 44211 dst_port 64272 action police rate 400000 burst 401000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=200, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=12] Command: tc filter add dev swp1 ingress protocol ipv4 pref 200 flower src_mac 02:76:0e:d1:33:de dst_mac 02:49:a8:5f:e2:c3 src_ip 103.119.14.105 dst_ip 21.97.247.248 ip_proto udp src_port 44211 dst_port 64272 action police rate 400000 burst 401000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=200, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x0800 pref 300 flower src_mac 02:3b:14:13:21:4f dst_mac 02:38:e9:48:55:23 src_ip 46.162.209.75 dst_ip 111.196.176.160 ip_proto udp src_port 52856 dst_port 41189 action police rate 600000 burst 601000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=200, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=14] Command: tc filter add dev swp1 ingress protocol 0x0800 pref 300 flower src_mac 02:3b:14:13:21:4f dst_mac 02:38:e9:48:55:23 src_ip 46.162.209.75 dst_ip 111.196.176.160 ip_proto udp src_port 52856 dst_port 41189 action police rate 600000 burst 601000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=200, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=200, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=200, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":100,"kind":"flower","chain":0},{"protocol":"ip","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:d6:f5:2f:99:3c","src_mac":"02:4f:9d:1b:69:b2","eth_type":"ipv4","ip_proto":"udp","dst_ip":"19.36.55.22","src_ip":"27.81.243.187","dst_port":9256,"src_port":58121},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"ip","pref":200,"kind":"flower","chain":0},{"protocol":"ip","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:49:a8:5f:e2:c3","src_mac":"02:76:0e:d1:33:de","eth_type":"ipv4","ip_proto":"udp","dst_ip":"21.97.247.248","src_ip":"103.119.14.105","dst_port":64272,"src_port":44211},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"ip","pref":300,"kind":"flower","chain":0},{"protocol":"ip","pref":300,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:38:e9:48:55:23","src_mac":"02:3b:14:13:21:4f","eth_type":"ipv4","ip_proto":"udp","dst_ip":"111.196.176.160","src_ip":"46.162.209.75","dst_port":41189,"src_port":52856},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":3,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:d6:f5:2f:99:3c_src_mac_02:4f:9d:1b:69:b2_eth_type_ipv4_ip_proto_udp_dst_ip_19.36.55.22_src_ip_27.81.243.187_dst_port_9256_src_port_58121 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:49:a8:5f:e2:c3_src_mac_02:76:0e:d1:33:de_eth_type_ipv4_ip_proto_udp_dst_ip_21.97.247.248_src_ip_103.119.14.105_dst_port_64272_src_port_44211 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:38:e9:48:55:23_src_mac_02:3b:14:13:21:4f_eth_type_ipv4_ip_proto_udp_dst_ip_111.196.176.160_src_ip_46.162.209.75_dst_port_41189_src_port_52856 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcefe0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp1_dst_mac_02:d6:f5:2f:99:3c_src_mac_02:4f:9d:1b:69:b2_eth_type_ipv4_ip_proto_udp_dst_ip_19.36.55.22_src_ip_27.81.243.187_dst_port_9256_src_port_58121 Tx 24131589 Rx 2932 Frames Delta 24128657 Loss 99.988 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp1_dst_mac_02:49:a8:5f:e2:c3_src_mac_02:76:0e:d1:33:de_eth_type_ipv4_ip_proto_udp_dst_ip_21.97.247.248_src_ip_103.119.14.105_dst_port_64272_src_port_44211 Tx 24131589 Rx 4689 Frames Delta 24126900 Loss 99.981 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp1_dst_mac_02:38:e9:48:55:23_src_mac_02:3b:14:13:21:4f_eth_type_ipv4_ip_proto_udp_dst_ip_111.196.176.160_src_ip_46.162.209.75_dst_port_41189_src_port_52856 Tx 24131599 Rx 7031 Frames Delta 24124568 Loss 99.971 INFO DENT:Logger.py:84 [DENT aggregation 1] Veryfing rate for the stream swp1_dst_mac_02:d6:f5:2f:99:3c_src_mac_02:4f:9d:1b:69:b2_eth_type_ipv4_ip_proto_udp_dst_ip_19.36.55.22_src_ip_27.81.243.187_dst_port_9256_src_port_58121 INFO DENT:Logger.py:84 [DENT aggregation 1] Veryfing rate for the stream swp1_dst_mac_02:49:a8:5f:e2:c3_src_mac_02:76:0e:d1:33:de_eth_type_ipv4_ip_proto_udp_dst_ip_21.97.247.248_src_ip_103.119.14.105_dst_port_64272_src_port_44211 INFO DENT:Logger.py:84 [DENT aggregation 1] Veryfing rate for the stream swp1_dst_mac_02:38:e9:48:55:23_src_mac_02:3b:14:13:21:4f_eth_type_ipv4_ip_proto_udp_dst_ip_111.196.176.160_src_ip_46.162.209.75_dst_port_41189_src_port_52856 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_per_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=200, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:42:26 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=200, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=20] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:42:30 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=200, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=200, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=200, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=200, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=200, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=200, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=24] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=200, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=200, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=200, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=200, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=200, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=46] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=200, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=200, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=200, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=200, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=200, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=200, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=200, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=200, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=200, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=200, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=200, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=200, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=200, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=200, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=200, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=200, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=200, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=200, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=200, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=200, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=200, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=200, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=200, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=200, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=200, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=200, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=200, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=200, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=200, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=200, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=200, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=200, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=200, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=200, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=200, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=200, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=200, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=200, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=200, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=200, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=200, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=200, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=200, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=200, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=200, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=200, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=200, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=200, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=200, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=200, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=200, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=200, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=200, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=200, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=200, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=200, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=200, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=200, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=200, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=200, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=200, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=200, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=200, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=200, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=200, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=200, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=200, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=200, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=114] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=200, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=200, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=116] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=200, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=200, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=118] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=200, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=200, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=120] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=200, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=200, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=122] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=200, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=200, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=124] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=200, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=200, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=126] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=200, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=200, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=128] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=200, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=200, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=130] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=200, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=200, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=132] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=200, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=200, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=134] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=200, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=200, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=136] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=200, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=200, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=138] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=200, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=200, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=140] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=200, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=200, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=142] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=200, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=143] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=144] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=144] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:42:32 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=200, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=145] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=200, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=146] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=200, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=146] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":293,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=200, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=147] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=200, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=148] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=200, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=148] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rate_units.py::test_policer_rate_config[IEC] | 246.53 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_config[IEC]">Starting testcase:test_policer_rate_config[IEC] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12592' coro=<test_policer_rate_config() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=200, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=201] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=201] Local address: 172.17.0.4, port 36412 INFO asyncssh:logging.py:92 [conn=201] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=201] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=201] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:42:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=201, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=201, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=201, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=201, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=201, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:07:46:34:2d:27 dst_mac 02:e9:6c:aa:86:55 src_ip 104.213.184.250 dst_ip 75.206.244.21 ip_proto tcp src_port 36571 dst_port 42307 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=10] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:07:46:34:2d:27 dst_mac 02:e9:6c:aa:86:55 src_ip 104.213.184.250 dst_ip 75.206.244.21 ip_proto tcp src_port 36571 dst_port 42307 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=12] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:e9:6c:aa:86:55","src_mac":"02:07:46:34:2d:27","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"75.206.244.21","src_ip":"104.213.184.250","dst_port":42307,"src_port":36571},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:e9:6c:aa:86:55_src_mac_02:07:46:34:2d:27_eth_type_ipv4_ip_proto_tcp_dst_ip_75.206.244.21_src_ip_104.213.184.250_dst_port_42307_src_port_36571 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=201, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=14] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:07:46:34:2d:27 dst_mac 02:e9:6c:aa:86:55 src_ip 104.213.184.250 dst_ip 75.206.244.21 ip_proto tcp src_port 36571 dst_port 42307 action police rate 0.00023283064365386998gibit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=16] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:07:46:34:2d:27 dst_mac 02:e9:6c:aa:86:55 src_ip 104.213.184.250 dst_ip 75.206.244.21 ip_proto tcp src_port 36571 dst_port 42307 action police rate 0.00023283064365386998gibit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a207ad40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 58574648 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 2561 INFO asyncssh:logging.py:92 [conn=201, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=18] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:07:46:34:2d:27 dst_mac 02:e9:6c:aa:86:55 src_ip 104.213.184.250 dst_ip 75.206.244.21 ip_proto tcp src_port 36571 dst_port 42307 action police rate 30.517578125kibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=20] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:07:46:34:2d:27 dst_mac 02:e9:6c:aa:86:55 src_ip 104.213.184.250 dst_ip 75.206.244.21 ip_proto tcp src_port 36571 dst_port 42307 action police rate 30.517578125kibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcc820>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 157484298 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 365804 INFO asyncssh:logging.py:92 [conn=201, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=22] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:07:46:34:2d:27 dst_mac 02:e9:6c:aa:86:55 src_ip 104.213.184.250 dst_ip 75.206.244.21 ip_proto tcp src_port 36571 dst_port 42307 action police rate 0.029802322387695mibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=24] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:07:46:34:2d:27 dst_mac 02:e9:6c:aa:86:55 src_ip 104.213.184.250 dst_ip 75.206.244.21 ip_proto tcp src_port 36571 dst_port 42307 action police rate 0.029802322387695mibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2079810>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 258730013 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 746470 INFO asyncssh:logging.py:92 [conn=201, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=26] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:07:46:34:2d:27 dst_mac 02:e9:6c:aa:86:55 src_ip 104.213.184.250 dst_ip 75.206.244.21 ip_proto tcp src_port 36571 dst_port 42307 action police rate 2.9103830456735e-05gibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=28] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:07:46:34:2d:27 dst_mac 02:e9:6c:aa:86:55 src_ip 104.213.184.250 dst_ip 75.206.244.21 ip_proto tcp src_port 36571 dst_port 42307 action police rate 2.9103830456735e-05gibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2660940>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 357648440 Rx 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1084141 INFO asyncssh:logging.py:92 [conn=201, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=30] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:07:46:34:2d:27 dst_mac 02:e9:6c:aa:86:55 src_ip 104.213.184.250 dst_ip 75.206.244.21 ip_proto tcp src_port 36571 dst_port 42307 action police rate 2.8421709430404997e-08tibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=32] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:07:46:34:2d:27 dst_mac 02:e9:6c:aa:86:55 src_ip 104.213.184.250 dst_ip 75.206.244.21 ip_proto tcp src_port 36571 dst_port 42307 action police rate 2.8421709430404997e-08tibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a20614e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 456342546 Rx 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1426058 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_config[IEC] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=201, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=34] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:46:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=201, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=36] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:46:37 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=201, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=201, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=38] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=201, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=201, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=201, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=40] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=201, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=201, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=42] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=201, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=201, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=60] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=201, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=62] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=201, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=62] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=201, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=64] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=201, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=201, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=66] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=201, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=201, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=68] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=201, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=201, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=70] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=201, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=201, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=72] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=201, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=201, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=74] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=201, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=201, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=76] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=201, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=201, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=78] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=201, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=201, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=80] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=201, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=201, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=82] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=201, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=201, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=84] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=201, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=201, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=86] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=201, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=201, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=88] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=201, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=201, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=90] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=201, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=201, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=92] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=201, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=201, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=94] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=201, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=201, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=96] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=201, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=201, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=98] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=201, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=201, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=100] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=201, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=201, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=102] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=201, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=201, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=104] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=201, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=201, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=106] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=201, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=201, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=108] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=201, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=201, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=110] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=201, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=201, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=112] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=201, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=201, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=114] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=201, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=201, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=116] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=201, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=201, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=118] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=201, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=201, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=120] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=201, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=201, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=122] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=201, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=201, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=124] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=201, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=201, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=126] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=201, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=201, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=128] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=201, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=201, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=130] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=201, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=201, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=132] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=201, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=201, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=134] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=201, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=201, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=136] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=201, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=201, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=138] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=201, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=201, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=140] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=201, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=201, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=142] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=201, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=201, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=144] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=201, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=201, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=146] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=201, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=201, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=148] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=201, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=201, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=150] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=201, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=201, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=152] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=201, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=201, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=154] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=201, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=201, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=156] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=201, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=201, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=158] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=201, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=159] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=160] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=160] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:46:38 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=201, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=161] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=201, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=162] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=201, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=162] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":294,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=201, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=163] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=201, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=164] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=201, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=164] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rate_units.py::test_policer_rate_config[SI] | 266.90 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_config[SI]">Starting testcase:test_policer_rate_config[SI] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12769' coro=<test_policer_rate_config() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=201, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=202] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=202] Local address: 172.17.0.4, port 33532 INFO asyncssh:logging.py:92 [conn=202] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=202] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=202] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:46:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=202, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=202, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=202, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=202, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=202, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:e2:12:58:bc:53 dst_mac 02:b3:e7:64:91:71 src_ip 40.58.120.76 dst_ip 28.1.78.100 ip_proto tcp src_port 23506 dst_port 12593 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=10] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:e2:12:58:bc:53 dst_mac 02:b3:e7:64:91:71 src_ip 40.58.120.76 dst_ip 28.1.78.100 ip_proto tcp src_port 23506 dst_port 12593 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=12] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:b3:e7:64:91:71","src_mac":"02:e2:12:58:bc:53","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"28.1.78.100","src_ip":"40.58.120.76","dst_port":12593,"src_port":23506},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_dst_mac_02:b3:e7:64:91:71_src_mac_02:e2:12:58:bc:53_eth_type_ipv4_ip_proto_tcp_dst_ip_28.1.78.100_src_ip_40.58.120.76_dst_port_12593_src_port_23506 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=202, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=14] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:e2:12:58:bc:53 dst_mac 02:b3:e7:64:91:71 src_ip 40.58.120.76 dst_ip 28.1.78.100 ip_proto tcp src_port 23506 dst_port 12593 action police rate 0.00025gbit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=16] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:e2:12:58:bc:53 dst_mac 02:b3:e7:64:91:71 src_ip 40.58.120.76 dst_ip 28.1.78.100 ip_proto tcp src_port 23506 dst_port 12593 action police rate 0.00025gbit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2062320>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 51200016 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 2361 INFO asyncssh:logging.py:92 [conn=202, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=18] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:e2:12:58:bc:53 dst_mac 02:b3:e7:64:91:71 src_ip 40.58.120.76 dst_ip 28.1.78.100 ip_proto tcp src_port 23506 dst_port 12593 action police rate 31250.0bps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=20] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:e2:12:58:bc:53 dst_mac 02:b3:e7:64:91:71 src_ip 40.58.120.76 dst_ip 28.1.78.100 ip_proto tcp src_port 23506 dst_port 12593 action police rate 31250.0bps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a201a2c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 161626698 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 365884 INFO asyncssh:logging.py:92 [conn=202, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=22] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:e2:12:58:bc:53 dst_mac 02:b3:e7:64:91:71 src_ip 40.58.120.76 dst_ip 28.1.78.100 ip_proto tcp src_port 23506 dst_port 12593 action police rate 31.25kbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=24] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:e2:12:58:bc:53 dst_mac 02:b3:e7:64:91:71 src_ip 40.58.120.76 dst_ip 28.1.78.100 ip_proto tcp src_port 23506 dst_port 12593 action police rate 31.25kbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2062c50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 260619854 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 760873 INFO asyncssh:logging.py:92 [conn=202, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=26] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:e2:12:58:bc:53 dst_mac 02:b3:e7:64:91:71 src_ip 40.58.120.76 dst_ip 28.1.78.100 ip_proto tcp src_port 23506 dst_port 12593 action police rate 0.03125mbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=28] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:e2:12:58:bc:53 dst_mac 02:b3:e7:64:91:71 src_ip 40.58.120.76 dst_ip 28.1.78.100 ip_proto tcp src_port 23506 dst_port 12593 action police rate 0.03125mbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2079930>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 359519648 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1060325 INFO asyncssh:logging.py:92 [conn=202, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=30] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:e2:12:58:bc:53 dst_mac 02:b3:e7:64:91:71 src_ip 40.58.120.76 dst_ip 28.1.78.100 ip_proto tcp src_port 23506 dst_port 12593 action police rate 3.125e-05gbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=32] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:e2:12:58:bc:53 dst_mac 02:b3:e7:64:91:71 src_ip 40.58.120.76 dst_ip 28.1.78.100 ip_proto tcp src_port 23506 dst_port 12593 action police rate 3.125e-05gbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a255c550>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 460624358 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1419740 INFO asyncssh:logging.py:92 [conn=202, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=34] Command: tc filter delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:e2:12:58:bc:53 dst_mac 02:b3:e7:64:91:71 src_ip 40.58.120.76 dst_ip 28.1.78.100 ip_proto tcp src_port 23506 dst_port 12593 action police rate 3.125e-08tbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=36] Command: tc filter add dev swp1 ingress protocol ipv4 flower skip_sw src_mac 02:e2:12:58:bc:53 dst_mac 02:b3:e7:64:91:71 src_ip 40.58.120.76 dst_ip 28.1.78.100 ip_proto tcp src_port 23506 dst_port 12593 action police rate 3.125e-08tbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a227ae90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 559678246 Rx 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1800070 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_config[SI] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=202, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=38] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:50:57 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=202, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=39] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=40] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:51:03 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=202, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=202, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=42] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=202, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=202, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=202, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=44] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=202, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=202, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=46] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=202, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=202, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=64] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=202, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=66] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=202, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=202, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=68] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=202, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=202, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=70] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=202, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=202, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=72] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=202, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=202, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=74] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=202, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=202, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=76] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=202, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=202, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=78] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=202, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=202, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=80] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=202, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=202, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=82] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=202, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=202, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=84] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=202, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=202, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=86] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=202, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=202, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=88] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=202, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=202, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=90] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=202, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=202, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=92] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=202, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=202, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=94] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=202, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=202, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=96] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=202, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=202, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=98] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=202, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=202, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=100] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=202, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=202, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=102] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=202, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=202, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=104] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=202, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=202, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=106] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=202, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=202, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=108] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=202, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=202, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=110] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=202, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=202, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=112] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=202, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=202, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=114] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=202, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=202, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=116] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=202, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=202, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=118] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=202, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=202, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=120] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=202, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=202, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=122] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=202, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=202, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=124] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=202, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=202, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=126] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=202, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=202, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=128] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=202, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=202, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=130] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=202, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=202, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=132] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=202, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=202, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=134] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=202, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=202, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=136] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=202, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=202, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=138] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=202, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=202, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=140] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=202, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=202, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=142] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=202, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=202, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=144] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=202, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=202, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=146] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=202, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=202, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=148] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=202, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=202, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=150] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=202, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=202, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=152] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=202, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=202, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=154] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=202, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=202, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=156] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=202, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=202, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=158] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=202, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=202, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=160] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=202, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=202, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=162] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=202, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=163] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=164] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=164] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:51:05 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=202, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=165] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=202, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=166] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=202, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=166] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":295,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=202, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=167] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=202, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=168] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=202, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=168] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rules_priority.py::test_policer_rules_priority[port] | 237.64 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rules_priority[port]">Starting testcase:test_policer_rules_priority[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12950' coro=<test_policer_rules_priority() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=202, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=203] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=203] Local address: 172.17.0.4, port 58636 INFO asyncssh:logging.py:92 [conn=203] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=203] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=203] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:51:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=203, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=203, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=203, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=203, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=203, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=203, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=203, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=203, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=203, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=10] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=12] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=203, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=14] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=203, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=203, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=203, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=16] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=203, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a201b220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 91523235 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 3449 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 3449 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 3449 INFO asyncssh:logging.py:92 [conn=203, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=18] Command: tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=20] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2078310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 119574302 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 4205 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 4205 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 4205 INFO asyncssh:logging.py:92 [conn=203, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=22] Command: tc filter delete dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=24] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a20628f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 182803099 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 8998 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 8997 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 8997 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rules_priority[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=26] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:54:57 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=203, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=28] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:55:01 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=203, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=203, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=203, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=203, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=203, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=203, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=203, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=203, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=203, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=203, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=203, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=54] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=203, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=203, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=56] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=203, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=203, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=58] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=203, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=203, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=60] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=203, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=203, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=62] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=203, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=203, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=64] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=203, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=203, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=66] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=203, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=203, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=68] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=203, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=203, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=70] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=203, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=203, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=72] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=203, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=203, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=74] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=203, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=203, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=76] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=203, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=203, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=78] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=203, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=203, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=80] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=203, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=203, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=82] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=203, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=203, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=84] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=203, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=203, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=86] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=203, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=203, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=88] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=203, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=203, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=90] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=203, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=203, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=92] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=203, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=203, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=94] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=203, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=203, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=96] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=203, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=203, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=98] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=203, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=203, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=100] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=203, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=203, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=102] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=203, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=203, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=104] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=203, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=203, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=106] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=203, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=203, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=108] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=203, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=203, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=110] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=203, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=203, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=112] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=203, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=203, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=114] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=203, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=203, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=116] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=203, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=203, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=118] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=203, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=203, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=120] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=203, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=203, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=122] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=203, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=203, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=124] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=203, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=203, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=126] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=203, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=203, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=128] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=203, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=203, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=130] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=203, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=203, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=132] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=203, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=203, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=134] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=203, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=203, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=136] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=203, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=203, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=138] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=203, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=203, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=140] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=203, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=203, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=142] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=203, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=203, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=144] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=203, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=203, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=146] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=203, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=203, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=148] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=203, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=203, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=150] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=203, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=151] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=152] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=152] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:55:03 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=203, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=153] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=203, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=154] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=203, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=154] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":296,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=203, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=155] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=203, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=156] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=203, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=156] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rules_priority.py::test_policer_rules_priority[shared_block] | 268.14 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rules_priority[shared_block]">Starting testcase:test_policer_rules_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13119' coro=<test_policer_rules_priority() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=204] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=204] Local address: 172.17.0.4, port 57794 INFO asyncssh:logging.py:92 [conn=204] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=204] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=204] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:55:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=204, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=204, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=204, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=204, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=204, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress_block 1496 ingress && tc qdisc add dev swp3 ingress_block 1496 ingress && tc qdisc add dev swp4 ingress_block 1496 ingress INFO asyncssh:logging.py:92 [conn=204, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=8] Command: tc qdisc add dev swp2 ingress_block 1496 ingress && tc qdisc add dev swp3 ingress_block 1496 ingress && tc qdisc add dev swp4 ingress_block 1496 ingress INFO asyncssh:logging.py:92 [conn=204, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1496 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=10] Command: tc filter add block 1496 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1496 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=12] Command: tc filter add block 1496 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1496 ingress INFO asyncssh:logging.py:92 [conn=204, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=14] Command: tc -j filter show block 1496 ingress INFO asyncssh:logging.py:92 [conn=204, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=204, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 1496 ingress INFO asyncssh:logging.py:92 [conn=204, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=16] Command: tc -j filter show block 1496 ingress INFO asyncssh:logging.py:92 [conn=204, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp3_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp4_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2063520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 2760 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 86503464 Rx 1988 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 86503464 Rx 1974 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 86503464 Rx 1984 INFO asyncssh:logging.py:92 [conn=204, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter delete block 1496 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=18] Command: tc filter delete block 1496 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1496 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=20] Command: tc filter add block 1496 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ed6d40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 4168 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 121619872 Rx 3081 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 121619872 Rx 3062 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 121619872 Rx 3075 INFO asyncssh:logging.py:92 [conn=204, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc filter delete block 1496 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=22] Command: tc filter delete block 1496 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 1496 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=24] Command: tc filter add block 1496 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a20612a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 6794 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 185132659 Rx 5115 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 185132659 Rx 5087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 185132659 Rx 5115 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rules_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=204, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=26] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:59:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=204, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=28] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:59:29 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=204, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=204, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=204, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","ingress_block":1496,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp3","parent":"ffff:fff1","ingress_block":1496,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp4","parent":"ffff:fff1","ingress_block":1496,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=204, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=204, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=204, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=204, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=204, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=204, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=204, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=204, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=204, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=204, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=56] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=204, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=204, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=58] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=204, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=204, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=60] Command: tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=204, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=60] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=204, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=62] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=204, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=204, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=64] Command: tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=204, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=204, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=66] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=204, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=204, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=68] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=204, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=204, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=70] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=204, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=204, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=72] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=204, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=204, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=74] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=204, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=204, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=76] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=204, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=204, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=78] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=204, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=204, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=80] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=204, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=204, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=82] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=204, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=204, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=84] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=204, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=204, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=86] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=204, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=204, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=88] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=204, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=204, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=90] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=204, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=204, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=92] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=204, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=204, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=94] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=204, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=204, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=96] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=204, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=204, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=98] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=204, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=204, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=100] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=204, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=204, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=102] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=204, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=204, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=104] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=204, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=204, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=106] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=204, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=204, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=108] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=204, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=204, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=110] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=204, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=204, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=112] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=204, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=204, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=114] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=204, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=204, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=116] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=204, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=204, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=118] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=204, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=204, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=120] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=204, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=204, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=122] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=204, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=204, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=124] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=204, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=204, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=126] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=204, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=204, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=128] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=204, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=204, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=130] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=204, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=204, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=132] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=204, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=204, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=134] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=204, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=204, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=136] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=204, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=204, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=138] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=204, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=204, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=140] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=204, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=204, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=142] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=204, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=204, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=144] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=204, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=204, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=146] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=204, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=204, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=148] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=204, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=204, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=150] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=204, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=204, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=152] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=204, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=204, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=154] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=204, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=155] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=156] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=156] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:59:31 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=204, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=157] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=204, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=158] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=204, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=158] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":297,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=204, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=159] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=204, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=160] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=204, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=160] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_same_pref_rules_priority.py::test_policer_same_pref_rules[port] | 222.71 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_same_pref_rules[port]">Starting testcase:test_policer_same_pref_rules[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13292' coro=<test_policer_same_pref_rules() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=204, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=205] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=205] Local address: 172.17.0.4, port 49044 INFO asyncssh:logging.py:92 [conn=205] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=205] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=205] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 02:59:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=205, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=205, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=205, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=205, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=205, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=205, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=8] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=205, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=205, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=10] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=205, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=205, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=12] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=205, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=205, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=205, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=14] Command: tc -j filter show dev swp1 ingress INFO asyncssh:logging.py:92 [conn=205, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a201b4c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 86436624 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 3312 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 3312 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 3312 INFO asyncssh:logging.py:92 [conn=205, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=205, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=16] Command: tc filter delete dev swp1 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=205, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=205, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=18] Command: tc filter add dev swp1 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=205, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2078a60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 121903541 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 6264 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 6264 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 6264 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_same_pref_rules[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=205, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=20] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:03:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=205, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:03:12 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=205, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=205, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=205, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=205, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=205, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=205, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=205, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=205, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=205, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=205, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=205, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=48] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=205, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=48] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=205, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=205, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=205, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=205, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=205, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=205, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=205, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=205, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=205, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=205, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=205, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=205, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=205, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=205, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=205, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=205, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=205, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=205, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=205, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=205, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=205, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=205, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=205, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=205, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=205, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=205, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=205, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=205, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=205, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=205, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=205, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=205, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=205, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=205, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=205, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=205, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=205, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=205, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=205, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=205, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=205, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=205, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=205, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=205, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=205, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=205, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=205, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=205, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=205, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=205, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=205, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=205, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=205, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=205, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=205, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=205, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=205, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=205, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=205, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=205, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=205, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=205, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=205, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=205, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=205, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=205, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=205, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=205, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=205, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=205, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=205, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=205, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=205, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=205, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=205, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=205, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=205, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=205, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=205, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=205, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=205, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=205, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=205, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=205, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=205, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=205, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=205, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=205, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=205, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=205, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=205, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=205, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=205, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=205, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=205, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=144] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=205, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=145] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=146] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=146] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:03:14 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=205, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=147] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=205, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=148] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=205, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=148] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":298,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=205, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=149] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=205, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=150] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=205, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=150] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_same_pref_rules_priority.py::test_policer_same_pref_rules[shared_block] | 245.07 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_same_pref_rules[shared_block]">Starting testcase:test_policer_same_pref_rules[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13455' coro=<test_policer_same_pref_rules() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=205, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=206] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=206] Local address: 172.17.0.4, port 53804 INFO asyncssh:logging.py:92 [conn=206] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=206] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=206] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:03:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=206, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=206, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=206, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=206, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=206, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=6] Command: ip link set dev swp1 up master bridge0 && ip link set dev swp2 up master bridge0 && ip link set dev swp3 up master bridge0 && ip link set dev swp4 up master bridge0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 ingress_block 74 ingress && tc qdisc add dev swp3 ingress_block 74 ingress && tc qdisc add dev swp4 ingress_block 74 ingress INFO asyncssh:logging.py:92 [conn=206, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=8] Command: tc qdisc add dev swp2 ingress_block 74 ingress && tc qdisc add dev swp3 ingress_block 74 ingress && tc qdisc add dev swp4 ingress_block 74 ingress INFO asyncssh:logging.py:92 [conn=206, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 74 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add block 74 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=206, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=10] Command: tc filter add block 74 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add block 74 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=206, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 74 ingress INFO asyncssh:logging.py:92 [conn=206, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=12] Command: tc -j filter show block 74 ingress INFO asyncssh:logging.py:92 [conn=206, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=206, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc -j filter show block 74 ingress INFO asyncssh:logging.py:92 [conn=206, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=14] Command: tc -j filter show block 74 ingress INFO asyncssh:logging.py:92 [conn=206, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp3_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp4_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcc430>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 3138 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 100626734 Rx 2251 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 100626734 Rx 2254 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 100626734 Rx 2200 INFO asyncssh:logging.py:92 [conn=206, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc filter delete block 74 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=206, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=16] Command: tc filter delete block 74 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=206, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc filter add block 74 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=206, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=18] Command: tc filter add block 74 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=206, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2062c50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 4872 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 128745852 Rx 3666 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 128745852 Rx 3660 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 128745852 Rx 3602 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_same_pref_rules[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=20] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:07:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=206, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:07:17 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=206, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=206, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=206, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","ingress_block":74,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp3","parent":"ffff:fff1","ingress_block":74,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp4","parent":"ffff:fff1","ingress_block":74,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=206, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=206, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=206, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=206, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=206, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=206, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=206, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=206, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=206, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=206, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=50] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=206, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=206, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=206, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=206, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=54] Command: tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=206, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=206, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=206, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=206, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=58] Command: tc qdisc delete dev swp4 ingress INFO asyncssh:logging.py:92 [conn=206, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=206, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=206, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=206, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=206, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=206, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=206, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=206, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=206, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=206, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=206, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=206, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=206, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=206, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=206, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=206, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=206, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=206, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=206, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=206, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=206, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=206, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=206, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=206, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=206, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=206, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=206, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=206, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=206, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=206, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=206, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=206, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=206, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=206, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=206, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=206, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=206, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=206, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=206, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=206, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=206, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=206, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=206, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=206, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=206, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=206, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=206, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=206, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=206, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=206, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=206, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=206, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=206, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=206, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=206, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=206, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=206, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=206, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=206, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=206, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=206, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=206, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=120] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=206, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=206, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=122] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=206, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=206, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=124] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=206, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=206, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=126] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=206, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=206, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=128] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=206, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=206, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=130] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=206, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=206, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=132] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=206, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=206, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=134] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=206, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=206, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=136] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=206, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=206, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=138] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=206, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=206, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=140] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=206, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=206, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=142] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=206, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=206, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=144] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=206, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=206, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=146] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=206, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=206, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=148] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=206, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=149] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=150] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=150] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:07:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=206, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=151] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=206, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=152] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=206, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=152] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":299,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=206, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=153] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=206, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=154] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=206, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=154] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_basic_functionality.py::test_port_isolation_basic_functionality | 457.76 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_basic_functionality">Starting testcase:test_port_isolation_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13621' coro=<test_port_isolation_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=207] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=207] Local address: 172.17.0.4, port 35498 INFO asyncssh:logging.py:92 [conn=207] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=207] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=207] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:07:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=207, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=207, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=207, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=207, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=207, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=207, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=207, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=207, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=207, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcda50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_0 SIP-DIP N/A Tx 9442 Rx 9442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI stream_1 SIP-DIP N/A Tx 9442 Rx 9442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI stream_2 SIP-DIP N/A Tx 9442 Rx 9442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI stream_3 SIP-DIP N/A Tx 9442 Rx 9442 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fccd60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_0 SIP-DIP N/A Tx 9461 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI stream_1 SIP-DIP N/A Tx 9461 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI stream_2 SIP-DIP N/A Tx 9461 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI stream_3 SIP-DIP N/A Tx 9461 Rx 9461 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcc2e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_0 SIP-DIP N/A Tx 9454 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI stream_1 SIP-DIP N/A Tx 9454 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI stream_2 SIP-DIP N/A Tx 9454 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI stream_3 SIP-DIP N/A Tx 9454 Rx 9454 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=207, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=10] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:14:56 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=207, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=12] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:14:57 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=207, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=207, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=207, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":300,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=207, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=207, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=207, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=16] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py::test_port_isolation_enable_disable_feature_under_ws_traffic | 244.40 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_enable_disable_feature_under_ws_traffic">Starting testcase:test_port_isolation_enable_disable_feature_under_ws_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13647' coro=<test_port_isolation_enable_disable_feature_under_ws_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py:60> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=207, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=208] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=208] Local address: 172.17.0.4, port 43342 INFO asyncssh:logging.py:92 [conn=208] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=208] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=208] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:14:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=208, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=208, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=208, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=208, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=208, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=208, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=208, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcd360>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_1 SIP-DIP N/A Tx 5985 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_2 SIP-DIP N/A Tx 5985 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_3 SIP-DIP N/A Tx 5985 Rx 5985 Loss 0.000 INFO asyncssh:logging.py:92 [conn=208, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated off && bridge link set dev swp2 isolated off && bridge link set dev swp3 isolated off INFO asyncssh:logging.py:92 [conn=208, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=10] Command: bridge link set dev swp1 isolated off && bridge link set dev swp2 isolated off && bridge link set dev swp3 isolated off INFO asyncssh:logging.py:92 [conn=208, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fce2c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_1 SIP-DIP N/A Tx 5335 Rx 5335 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_2 SIP-DIP N/A Tx 5335 Rx 5335 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_3 SIP-DIP N/A Tx 5335 Rx 5335 Loss 0.000 INFO asyncssh:logging.py:92 [conn=208, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=208, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=12] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=208, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a26631c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_1 SIP-DIP N/A Tx 6469 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_2 SIP-DIP N/A Tx 6469 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_3 SIP-DIP N/A Tx 6469 Rx 6469 Loss 0.000 INFO asyncssh:logging.py:92 [conn=208, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated off && bridge link set dev swp2 isolated off && bridge link set dev swp3 isolated off INFO asyncssh:logging.py:92 [conn=208, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=14] Command: bridge link set dev swp1 isolated off && bridge link set dev swp2 isolated off && bridge link set dev swp3 isolated off INFO asyncssh:logging.py:92 [conn=208, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a201a6e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_1 SIP-DIP N/A Tx 5427 Rx 5427 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_2 SIP-DIP N/A Tx 5427 Rx 5427 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_3 SIP-DIP N/A Tx 5427 Rx 5427 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_enable_disable_feature_under_ws_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=208, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:18:56 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=208, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:19:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=208, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=208, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=208, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":301,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=208, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=208, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=208, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_incremental_mac_addresses.py::test_port_isolation_incremental_mac_addresses | 454.53 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_incremental_mac_addresses">Starting testcase:test_port_isolation_incremental_mac_addresses from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13679' coro=<test_port_isolation_incremental_mac_addresses() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=208, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=209] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=209] Local address: 172.17.0.4, port 50040 INFO asyncssh:logging.py:92 [conn=209] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=209] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=209] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:19:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=209, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=209, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=209, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=209, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=209, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=209, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=209, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=209, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=209, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a201afb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_0 SIP-DIP N/A Tx 37798 Rx 37798 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI stream_1 SIP-DIP N/A Tx 37798 Rx 37798 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI stream_2 SIP-DIP N/A Tx 37798 Rx 37798 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI stream_3 SIP-DIP N/A Tx 37798 Rx 37798 Loss 0.000 INFO asyncssh:logging.py:92 [conn=209, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=209, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=209, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=10] Channel closed DEBUG agg1:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcff40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_0 SIP-DIP N/A Tx 37795 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI stream_1 SIP-DIP N/A Tx 37795 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI stream_2 SIP-DIP N/A Tx 37795 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI stream_3 SIP-DIP N/A Tx 37795 Rx 37795 Loss 0.000 INFO asyncssh:logging.py:92 [conn=209, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=209, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=12] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=209, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=12] Channel closed DEBUG agg1:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a201bdc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_0 SIP-DIP N/A Tx 37885 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI stream_1 SIP-DIP N/A Tx 37885 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI stream_2 SIP-DIP N/A Tx 37885 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI stream_3 SIP-DIP N/A Tx 37885 Rx 37885 Loss 0.000 INFO asyncssh:logging.py:92 [conn=209, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=209, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=14] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=209, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=14] Channel closed DEBUG agg1:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_incremental_mac_addresses from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=209, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:26:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=209, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:26:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=209, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=209, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=209, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=209, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=209, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=209, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_br_storm_control.py::test_port_isolation_interaction_br_storm_control | 221.22 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_br_storm_control">Starting testcase:test_port_isolation_interaction_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13711' coro=<test_port_isolation_interaction_br_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=209, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=210] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=210] Local address: 172.17.0.4, port 40394 INFO asyncssh:logging.py:92 [conn=210] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=210] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=210] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:26:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=210, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=210, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=210, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=210, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=210, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=210, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=210, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=210, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=210, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 30277 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=10] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 30277 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=210, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=12] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=210, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":30277}]}]}} INFO asyncssh:logging.py:92 [conn=210, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 105367 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=14] Command: devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 105367 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=210, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=16] Command: devlink -j port param show pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=210, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=16] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":105367}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcda20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 10154027 Rx 878964 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 878964 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 878964 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 9980621 Rx 255444 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcd4e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_1 SIP-DIP N/A Tx 2775943 Rx 69906 Loss 97.482 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_2 SIP-DIP N/A Tx 3553491 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_3 SIP-DIP N/A Tx 15761887 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI stream_4 SIP-DIP N/A Tx 3881659 Rx 337501 Loss 91.305 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI stream_5 SIP-DIP N/A Tx 4989374 Rx 431044 Loss 91.361 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI stream_6 SIP-DIP N/A Tx 12843019 Rx 1141906 Loss 91.109 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=210, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=210, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=210, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=18] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":30277}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":105367}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=210, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=20] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=22] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=24] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=26] Command: devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=26] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=210, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=28] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:30:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=210, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=30] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:30:17 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=210, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=210, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=210, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":303,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=210, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=210, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=210, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=34] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py::test_port_isolation_interaction_mc_and_br_storm_control | 218.63 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_mc_and_br_storm_control">Starting testcase:test_port_isolation_interaction_mc_and_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13755' coro=<test_port_isolation_interaction_mc_and_br_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=210, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=211] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=211] Local address: 172.17.0.4, port 38860 INFO asyncssh:logging.py:92 [conn=211] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=211] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=211] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:30:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=211, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=211, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=211, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=211, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=211, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=211, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=211, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=211, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=211, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 9042 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=10] Command: devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 9042 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=211, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=12] Command: devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=211, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}]}} INFO asyncssh:logging.py:92 [conn=211, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 65394 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=14] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 65394 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=211, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=16] Command: devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=211, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=16] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":65394}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a201a140>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 7250133 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 10233847 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 604765 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a201b790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI stream_1 SIP-DIP N/A Tx 10304087 Rx 76146 Loss 99.261 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI stream_2 SIP-DIP N/A Tx 3938722 Rx 213076 Loss 94.590 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI stream_3 SIP-DIP N/A Tx 7529909 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI stream_4 SIP-DIP N/A Tx 3075989 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=211, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=211, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=211, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=18] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":65394}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=211, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=20] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=22] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=24] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=26] Command: devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=26] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_mc_and_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=211, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=28] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:33:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=30] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:33:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=211, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=211, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=211, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":304,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=211, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=211, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=211, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=34] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py::test_port_isolation_interaction_ports_inside_lag | 426.03 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_ports_inside_lag">Starting testcase:test_port_isolation_interaction_ports_inside_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13800' coro=<test_port_isolation_interaction_ports_inside_lag() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=211, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=212] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=212] Local address: 172.17.0.4, port 39316 INFO asyncssh:logging.py:92 [conn=212] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=212] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=212] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:33:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=212, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=212, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=212, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=212, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=4] Command: ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=212, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=212, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=212, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp2 down && ip link set dev swp2 master bond2 INFO asyncssh:logging.py:92 [conn=212, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=8] Command: ip link set dev bond2 up && ip link set dev swp2 down && ip link set dev swp2 master bond2 INFO asyncssh:logging.py:92 [conn=212, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=212, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=212, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=212, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=212, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=212, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=212, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp3 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=212, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=16] Command: ip link set dev swp3 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=212, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=212, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=212, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev bond1 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=212, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=20] Command: bridge link set dev bond1 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=212, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ed5840>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_0 SIP-DIP N/A Tx 9419 Rx 9419 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI stream_1 SIP-DIP N/A Tx 9419 Rx 9419 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ed5750>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_0 SIP-DIP N/A Tx 9482 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI stream_1 SIP-DIP N/A Tx 9482 Rx 9482 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ed5f90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_0 SIP-DIP N/A Tx 9474 Rx 9474 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI stream_1 SIP-DIP N/A Tx 9474 Rx 9474 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_ports_inside_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:41:00 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=212, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=212, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=24] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=212, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:08","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":true,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":305,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":true,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":306,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":307,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":179.06,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=212, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=212, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=26] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=212, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=212, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=28] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=212, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=30] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:41:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=212, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=32] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:41:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=212, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=212, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=212, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":307,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=212, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=212, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=212, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=36] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_span_rule.py::test_port_isolation_interaction_span_rule | 181.50 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_span_rule">Starting testcase:test_port_isolation_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13849' coro=<test_port_isolation_interaction_span_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py:49> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=213] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=213] Local address: 172.17.0.4, port 39318 INFO asyncssh:logging.py:92 [conn=213] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=213] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=213] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:41:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=213, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=213, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=213, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=213, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=213, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=213, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=213, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on INFO asyncssh:logging.py:92 [conn=213, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on INFO asyncssh:logging.py:92 [conn=213, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=213, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=10] Command: tc qdisc add dev swp1 ingress INFO asyncssh:logging.py:92 [conn=213, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress matchall skip_sw action mirred egress mirror dev swp2 INFO asyncssh:logging.py:92 [conn=213, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=12] Command: tc filter add dev swp1 ingress matchall skip_sw action mirred egress mirror dev swp2 INFO asyncssh:logging.py:92 [conn=213, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridgeStream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a25b8a60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI bridgeStream SIP-DIP N/A Tx 5988 Rx 5988 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ed4b80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridgeStream Tx 7988 Rx 7988 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=213, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=213, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=14] Command: tc filter delete dev swp1 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=213, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a25ba260>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI bridgeStream SIP-DIP N/A Tx 9991 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py INFO asyncssh:logging.py:92 [conn=213, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:44:00 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=213, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=213, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=213, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=20] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=213, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=20] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=213, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=22] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=213, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=22] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=24] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=24] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=213, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=40] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=213, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=213, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=42] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=213, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=213, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=44] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=213, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=213, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=46] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=213, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=213, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=48] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=213, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=213, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=50] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=213, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=213, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=52] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=213, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=213, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=54] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=213, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=213, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=56] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=213, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=213, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=58] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=213, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=213, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=60] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=213, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=213, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=62] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=213, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=213, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=64] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=213, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=213, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=66] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=213, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=213, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=68] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=213, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=213, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=70] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=213, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=213, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=72] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=213, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=213, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=74] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=213, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=213, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=76] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=213, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=213, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=78] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=213, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=213, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=80] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=213, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=213, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=82] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=213, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=213, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=84] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=213, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=213, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=86] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=213, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=213, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=88] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=213, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=213, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=90] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=213, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=213, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=92] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=213, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=213, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=94] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=213, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=213, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=96] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=213, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=213, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=98] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=213, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=213, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=100] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=213, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=213, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=102] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=213, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=213, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=104] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=213, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=213, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=106] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=213, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=213, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=108] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=213, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=213, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=110] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=213, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=213, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=112] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=213, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=213, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=114] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=213, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=213, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=116] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=213, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=213, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=118] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=213, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=213, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=120] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=213, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=213, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=122] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=213, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=213, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=124] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=213, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=213, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=126] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=213, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=213, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=128] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=213, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=213, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=130] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=213, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=213, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=132] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=213, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=213, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=134] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=213, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=213, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=136] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=213, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=213, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=138] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=213, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=213, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=139] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=140] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=140] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:44:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=213, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=141] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=142] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=142] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:44:03 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=213, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=143] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=213, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=144] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=213, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=144] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":308,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=213, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=145] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=213, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=146] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=213, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=146] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py::test_port_isolation_interaction_unk_uc_storm_control | 219.06 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_unk_uc_storm_control">Starting testcase:test_port_isolation_interaction_unk_uc_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-14007' coro=<test_port_isolation_interaction_unk_uc_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=213, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=214] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=214] Local address: 172.17.0.4, port 35148 INFO asyncssh:logging.py:92 [conn=214] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=214] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=214] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:44:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=214, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=214, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=214, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=214, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=214, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=214, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=214, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=214, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=214, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 15277 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=10] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 15277 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=214, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=12] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=214, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15277}]}]}} INFO asyncssh:logging.py:92 [conn=214, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 97367 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=14] Command: devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 97367 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=214, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=16] Command: devlink -j port param show pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=214, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=16] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/4":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2079240>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 12618955 Rx 769219 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 769219 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 769219 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 9660681 Rx 158967 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a207b3a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_1 SIP-DIP N/A Tx 4160334 Rx 51924 Loss 98.752 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_2 SIP-DIP N/A Tx 9085367 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_3 SIP-DIP N/A Tx 4177075 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI stream_4 SIP-DIP N/A Tx 3259037 Rx 259054 Loss 92.051 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI stream_5 SIP-DIP N/A Tx 6008701 Rx 475809 Loss 92.081 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI stream_6 SIP-DIP N/A Tx 4070601 Rx 326848 Loss 91.971 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=214, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=214, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=214, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=18] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15277}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=214, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=20] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=22] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=24] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=26] Command: devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=26] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_unk_uc_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=214, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=28] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:47:38 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=214, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=30] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:47:42 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=214, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=214, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=214, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":309,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=214, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=214, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=214, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=34] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_vlan_membership.py::test_port_isolation_interaction_vlan_membership | 440.01 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_vlan_membership">Starting testcase:test_port_isolation_interaction_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-14051' coro=<test_port_isolation_interaction_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=214, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=215] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=215] Local address: 172.17.0.4, port 42698 INFO asyncssh:logging.py:92 [conn=215] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=215] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=215] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:47:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=215, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=215, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=215, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=215, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=215, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=215, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=215, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on INFO asyncssh:logging.py:92 [conn=215, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on INFO asyncssh:logging.py:92 [conn=215, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp4 vid 22 INFO asyncssh:logging.py:92 [conn=215, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=10] Command: bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp4 vid 22 INFO asyncssh:logging.py:92 [conn=215, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp4 vid 23 INFO asyncssh:logging.py:92 [conn=215, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=12] Command: bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp4 vid 23 INFO asyncssh:logging.py:92 [conn=215, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 24 pvid && bridge vlan add dev swp2 vid 24 pvid && bridge vlan add dev swp3 vid 24 pvid && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=215, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=14] Command: bridge vlan add dev swp1 vid 24 pvid && bridge vlan add dev swp2 vid 24 pvid && bridge vlan add dev swp3 vid 24 pvid && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=215, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show INFO asyncssh:logging.py:92 [conn=215, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=16] Command: bridge -j vlan show INFO asyncssh:logging.py:92 [conn=215, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifname":"swp1","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp2","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp3","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp4","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2061e40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_0 SIP-DIP N/A Tx 4454 Rx 4453 Loss 0.022 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:8 TI stream_1 SIP-DIP N/A Tx 4454 Rx 4454 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI stream_2 SIP-DIP N/A Tx 4454 Rx 4454 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:7 TI stream_3 SIP-DIP N/A Tx 4454 Rx 4453 Loss 0.022 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a268f2b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_0 SIP-DIP N/A Tx 4439 Rx 4439 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI stream_1 SIP-DIP N/A Tx 4439 Rx 4439 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI stream_2 SIP-DIP N/A Tx 4439 Rx 4439 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:6 TI stream_3 SIP-DIP N/A Tx 4439 Rx 4439 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a276c220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_0 SIP-DIP N/A Tx 4451 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI stream_1 SIP-DIP N/A Tx 4451 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI stream_2 SIP-DIP N/A Tx 4451 Rx 4451 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI stream_3 SIP-DIP N/A Tx 4451 Rx 4451 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=215, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:55:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=215, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=20] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:55:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=215, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=215, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=215, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":310,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=215, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=215, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=215, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=24] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py::test_port_isolation_maximum_isolated_ports_on_bridge | 197.21 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_maximum_isolated_ports_on_bridge">Starting testcase:test_port_isolation_maximum_isolated_ports_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-14085' coro=<test_port_isolation_maximum_isolated_ports_on_bridge() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete It took 0:00:00.032436 to verify ports presence. It took 0:00:00.041840 to set entities to 'UP' state. -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=215, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=216] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=216] Local address: 172.17.0.4, port 39572 INFO asyncssh:logging.py:92 [conn=216] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=216] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=216] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:55:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=216, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=1] Channel closed DEBUG agg1:Logger.py:156 ifconfig -a INFO asyncssh:logging.py:92 [conn=216, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=2] Command: ifconfig -a INFO asyncssh:logging.py:92 [conn=216, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=2] Channel closed DEBUG agg1:Logger.py:156 dummy0: flags=130<BROADCAST,NOARP> mtu 1500 ether 6e:ee:25:a0:db:1d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 5651 bytes 903792 (882.6 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 5651 bytes 903792 (882.6 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ma1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.36.118.44 netmask 255.255.255.0 broadcast 10.36.118.255 inet6 fe80::36ef:b6ff:feec:3804 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:04 txqueuelen 2048 (Ethernet) RX packets 117562 bytes 10857655 (10.3 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 99105 bytes 13008493 (12.4 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 sit0: flags=128<NOARP> mtu 1480 sit txqueuelen 1000 (IPv6-in-IPv4) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:3807 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:07 txqueuelen 1000 (Ethernet) RX packets 6564974178 bytes 2349535935128 (2.1 TiB) RX errors 0 dropped 3649592 overruns 0 frame 4626 TX packets 3338880827 bytes 223257462397 (207.9 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:3808 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:08 txqueuelen 1000 (Ethernet) RX packets 1957063391 bytes 507360866104 (472.5 GiB) RX errors 0 dropped 37412 overruns 0 frame 4381 TX packets 3693159837 bytes 388273972953 (361.6 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:3809 prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:09 txqueuelen 1000 (Ethernet) RX packets 1673894972 bytes 400429241182 (372.9 GiB) RX errors 0 dropped 26542 overruns 0 frame 0 TX packets 3798937705 bytes 430556816387 (400.9 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp4: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:380a prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:0a txqueuelen 1000 (Ethernet) RX packets 457911939 bytes 167450569610 (155.9 GiB) RX errors 0 dropped 26404 overruns 0 frame 0 TX packets 3644028741 bytes 352383355829 (328.1 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp5: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0b txqueuelen 1000 (Ethernet) RX packets 3251086164 bytes 208220178046 (193.9 GiB) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 3213352070 bytes 210394247280 (195.9 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp6: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0c txqueuelen 1000 (Ethernet) RX packets 3213352070 bytes 210394247280 (195.9 GiB) RX errors 0 dropped 2 overruns 0 frame 0 TX packets 3251086164 bytes 208220178046 (193.9 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp7: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0d txqueuelen 1000 (Ethernet) RX packets 3293828024 bytes 211018774196 (196.5 GiB) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 3256829603 bytes 213180145142 (198.5 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp8: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:0e txqueuelen 1000 (Ethernet) RX packets 3256829603 bytes 213180145142 (198.5 GiB) RX errors 0 dropped 2 overruns 0 frame 0 TX packets 3293828024 bytes 211018774196 (196.5 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp9: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 inet6 fe80::36ef:b6ff:feec:380f prefixlen 64 scopeid 0x20<link> ether 34:ef:b6:ec:38:0f txqueuelen 1000 (Ethernet) RX packets 3211679181 bytes 210512723363 (196.0 GiB) RX errors 0 dropped 35 overruns 0 frame 0 TX packets 2919565066 bytes 187048912586 (174.2 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp10: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:10 txqueuelen 1000 (Ethernet) RX packets 2919565066 bytes 187048912586 (174.2 GiB) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 3211679181 bytes 210512723363 (196.0 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp11: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:11 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp12: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:12 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp13: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:13 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp14: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:14 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp15: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:15 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp16: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:16 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp17: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:17 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp18: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:18 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp19: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:19 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp20: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp21: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp22: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp23: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp24: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp25: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:1f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp26: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:20 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp27: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:21 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp28: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:22 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp29: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:23 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp30: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:24 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp31: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:25 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp32: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:26 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp33: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:27 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp34: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:28 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp35: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:29 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp36: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp37: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp38: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp39: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp40: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp41: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:2f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp42: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:30 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp43: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:31 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp44: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:32 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp45: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:33 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp46: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:34 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp47: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:35 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp48: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 34:ef:b6:ec:38:36 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 INFO asyncssh:logging.py:92 [conn=216, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=216, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=216, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=216, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=216, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=216, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=216, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=216, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=10] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=216, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":311,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=216, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on && bridge link set dev swp4 isolated on INFO asyncssh:logging.py:92 [conn=216, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=12] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on && bridge link set dev swp4 isolated on INFO asyncssh:logging.py:92 [conn=216, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2018550>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_1 SIP-DIP N/A Tx 5985 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_2 SIP-DIP N/A Tx 5985 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_3 SIP-DIP N/A Tx 5985 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_maximum_isolated_ports_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:58:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=216, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:58:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=216, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=216, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=216, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":311,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=216, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=216, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=216, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=20] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_vlan_interfaces.py::test_port_isolation_vlan_interfaces | 217.71 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_vlan_interfaces">Starting testcase:test_port_isolation_vlan_interfaces from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-14115' coro=<test_port_isolation_vlan_interfaces() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=217] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=217] Local address: 172.17.0.4, port 39358 INFO asyncssh:logging.py:92 [conn=217] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=217] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=217] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 03:58:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=217, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=217, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=217, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=217, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=217, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=217, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=8] Command: bridge link set dev swp1 isolated on && bridge link set dev swp2 isolated on && bridge link set dev swp3 isolated on INFO asyncssh:logging.py:92 [conn=217, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 1 && bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp2 vid 1 && bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=217, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=10] Command: bridge vlan add dev swp1 vid 1 && bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp2 vid 1 && bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=217, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2062740>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI stream_1_swp1->swp4 SIP-DIP N/A Tx 7988 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI stream_1_swp1->swp3 SIP-DIP N/A Tx 7988 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI stream_1_swp1->swp2 SIP-DIP N/A Tx 7988 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:8 TI stream_2_swp3->swp4 SIP-DIP N/A Tx 7988 Rx 7988 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI stream_2_swp3->swp2 SIP-DIP N/A Tx 7988 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI stream_2_swp3->swp1 SIP-DIP N/A Tx 7988 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_vlan_interfaces from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=217, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=12] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:01:57 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=217, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:01:57 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=217, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=217, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=217, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":312,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=217, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=217, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=217, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=18] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/qos/test_qos_class_precedence.py::test_qos_class_precedence[L2] | 317.81 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14143' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_class_precedence[L2]">Starting testcase:test_qos_class_precedence[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=217, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=218] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=218] Local address: 172.17.0.4, port 52506 INFO asyncssh:logging.py:92 [conn=218] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=218] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=218] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:01:57 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=218, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=2] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:01:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=218, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=218, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=218, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=218, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=218, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 && bridge vlan delete dev swp3 vid 1 INFO asyncssh:logging.py:92 [conn=218, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=8] Command: bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 && bridge vlan delete dev swp3 vid 1 INFO asyncssh:logging.py:92 [conn=218, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 921 && bridge vlan add dev swp2 vid 921 && bridge vlan add dev swp3 vid 921 INFO asyncssh:logging.py:92 [conn=218, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=10] Command: bridge vlan add dev swp1 vid 921 && bridge vlan add dev swp2 vid 921 && bridge vlan add dev swp3 vid 921 INFO asyncssh:logging.py:92 [conn=218, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp3 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=218, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=12] Command: tc qdisc add dev swp3 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=218, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp3 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=218, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=14] Command: tc qdisc add dev swp3 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=218, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 921, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 921, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 921, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for high priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for low priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=218, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13065728,"packets":99577,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2332274,"packets":19741,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1671195,"packets":13731,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2538576,"packets":21338,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6523683,"packets":44767,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":239516244,"packets":1643998,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":65378113,"packets":184955,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2122,"packets":11,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":5172,"packets":34,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2149333,"packets":18016,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=218, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13069937,"packets":99602,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2335914,"packets":19761,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1671195,"packets":13731,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2538576,"packets":21338,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6524252,"packets":44772,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":239516498,"packets":1643999,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":65378367,"packets":184956,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2376,"packets":12,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17700685824,"packets":34571652,"drops":11522196,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11800025088,"packets":23046924,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":5704,"packets":36,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2149571,"packets":18017,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a276d120>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 11523462 Rx 11523462 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 11523462 Rx 11523462 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 23046924 Rx 17522041 Loss 23.972 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 23046924 Rx 17049611 Loss 26.022 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for medium priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=218, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13074488,"packets":99627,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2339907,"packets":19782,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1671279,"packets":13733,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2538576,"packets":21338,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6524726,"packets":44774,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":239517260,"packets":1644002,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":65379129,"packets":184959,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3138,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17700685824,"packets":34571652,"drops":11522196,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11800025088,"packets":23046924,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7812,"packets":50,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2150285,"packets":18020,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=218, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=24] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13078427,"packets":99651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2343762,"packets":19804,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1671279,"packets":13733,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2538576,"packets":21338,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6524810,"packets":44776,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":239517514,"packets":1644003,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":65379383,"packets":184960,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3392,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":23610018304,"packets":46113317,"drops":46142159,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":23617401856,"packets":46127738,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11817376768,"packets":23080814,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8344,"packets":52,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2150523,"packets":18021,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcf8b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 11540407 Rx 11540407 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 11540407 Rx 11540407 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 23080814 Rx 6065899 Loss 73.719 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 23080814 Rx 5475766 Loss 76.276 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI medium priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 11540407 Rx 11540407 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI medium priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 11540407 Rx 11540407 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_class_precedence[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py INFO asyncssh:logging.py:92 [conn=218, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=25] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=218, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=26] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=218, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=28] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:07:13 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=218, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=218, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=30] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=218, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":313,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=218, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=218, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=32] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=218, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=34] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:07:13 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=218, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=36] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=218, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=218, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=38] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=218, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=218, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=40] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=218, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=218, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=58] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=218, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=218, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=218, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=218, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=218, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=62] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=64] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=64] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=66] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=66] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=68] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=68] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=70] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=70] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=72] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=72] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=72] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=74] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=74] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=74] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=76] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=76] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=76] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=78] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=218, chan=78] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=78] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=218, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=80] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=218, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=218, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=82] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=218, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=218, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=84] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=218, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=218, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=86] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=218, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=218, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=88] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=218, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=218, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=90] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=218, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=218, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=92] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=218, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=218, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=94] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=218, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=218, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=96] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=218, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=218, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=98] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=218, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=218, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=100] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=218, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=218, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=102] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=218, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=218, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=104] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=218, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=218, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=106] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=218, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=218, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=108] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=218, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=218, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=110] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=218, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=218, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=112] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=218, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=218, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=114] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=218, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=218, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=116] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=218, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=218, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=118] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=218, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=218, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=120] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=218, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=218, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=122] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=218, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=218, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=124] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=218, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=218, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=126] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=218, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=218, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=128] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=218, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=218, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=130] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=218, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=218, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=132] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=218, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=218, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=134] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=218, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=218, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=136] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=218, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=218, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=138] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=218, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=218, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=140] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=218, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=218, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=142] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=218, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=218, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=144] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=218, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=218, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=146] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=218, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=218, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=148] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=218, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=218, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=150] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=218, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=218, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=152] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=218, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=218, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=154] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=218, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=218, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=156] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=218, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=218, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=158] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=218, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=218, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=160] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=218, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=218, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=162] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=218, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=163] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=218, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=164] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=218, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=164] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=165] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=218, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=166] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=218, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=166] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=167] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=218, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=168] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=218, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=168] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_class_precedence.py::test_qos_class_precedence[L3] | 318.18 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14324' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_class_precedence[L3]">Starting testcase:test_qos_class_precedence[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=218, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=219] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=219] Local address: 172.17.0.4, port 58184 INFO asyncssh:logging.py:92 [conn=219] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=219] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=219] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:07:15 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=219, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=2] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:07:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=219, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=219, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=219, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=219, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=219, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=7] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 40:0 27:1 17:2 43:3 45:4 55:5 52:6 19:7&& dcb app add dev swp2 dscp-prio 40:0 27:1 17:2 43:3 45:4 55:5 52:6 19:7 INFO asyncssh:logging.py:92 [conn=219, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=8] Command: dcb app add dev swp1 dscp-prio 40:0 27:1 17:2 43:3 45:4 55:5 52:6 19:7&& dcb app add dev swp2 dscp-prio 40:0 27:1 17:2 43:3 45:4 55:5 52:6 19:7 INFO asyncssh:logging.py:92 [conn=219, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=9] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=219, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=10] Command: dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=219, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[17,2],[19,7],[27,1],[40,0],[43,3],[45,4],[52,6],[55,5]]} INFO asyncssh:logging.py:92 [conn=219, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=11] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp2 dscp-prio INFO asyncssh:logging.py:92 [conn=219, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=12] Command: dcb -j app show dev swp2 dscp-prio INFO asyncssh:logging.py:92 [conn=219, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[17,2],[19,7],[27,1],[40,0],[43,3],[45,4],[52,6],[55,5]]} INFO asyncssh:logging.py:92 [conn=219, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp3 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=219, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=14] Command: tc qdisc add dev swp3 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=219, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp3 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=219, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=16] Command: tc qdisc add dev swp3 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=219, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for high priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for low priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=219, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13207063,"packets":100852,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2383358,"packets":20164,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1682685,"packets":13829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2545017,"packets":21396,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6596003,"packets":45463,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":239520506,"packets":1644027,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":65382155,"packets":184982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2336,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":5418,"packets":45,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":600,"packets":6,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2151713,"packets":18026,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=219, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13211433,"packets":100876,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2383358,"packets":20164,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1686971,"packets":13851,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2545017,"packets":21396,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6596087,"packets":45465,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":239520744,"packets":1644028,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":65382393,"packets":184983,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2574,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":5918,"packets":47,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11810021976,"packets":23066454,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17715672064,"packets":34600922,"drops":11531970,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2152189,"packets":18028,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a207a590>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 11533224 Rx 11533224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 11533224 Rx 11533224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 23066446 Rx 17711311 Loss 23.216 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 23066446 Rx 16889611 Loss 26.778 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for medium priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=219, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=24] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13215457,"packets":100899,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2383358,"packets":20164,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1690737,"packets":13871,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2545017,"packets":21396,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6596345,"packets":45468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":239521528,"packets":1644032,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":65383177,"packets":184987,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3120,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7594,"packets":61,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11810021976,"packets":23066454,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17715672064,"packets":34600922,"drops":11531970,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2152735,"packets":18031,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=219, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=26] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13219594,"packets":100924,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2383358,"packets":20164,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1694232,"packets":13891,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2545017,"packets":21396,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6596987,"packets":45473,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":239521766,"packets":1644033,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":65383415,"packets":184988,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3596,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11821460480,"packets":23088790,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8594,"packets":65,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":23631482456,"packets":46155244,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":23627050496,"packets":46146583,"drops":46163887,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2152973,"packets":18032,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a22c6530>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 11544395 Rx 11544395 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 11544395 Rx 11544395 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 23088789 Rx 6134095 Loss 73.433 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 23088789 Rx 5411566 Loss 76.562 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI medium priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 11544395 Rx 11544395 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:7 TI medium priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 11544395 Rx 11544395 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_class_precedence[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py INFO asyncssh:logging.py:92 [conn=219, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=27] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=219, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=28] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=219, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=30] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:12:31 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=219, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=219, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=219, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":314,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=219, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=219, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=219, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=36] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:12:31 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=219, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=38] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=219, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=219, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=40] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=219, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=219, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=42] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=219, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=219, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=60] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=219, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=219, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=62] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=219, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=219, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=64] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=219, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=64] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=66] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=66] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=68] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=68] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=70] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=70] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=72] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=72] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=72] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=74] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=74] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=74] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=76] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=76] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=76] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=78] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=78] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=78] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=80] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=219, chan=80] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=80] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=219, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=82] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=219, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=219, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=84] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=219, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=219, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=86] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=219, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=219, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=88] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=219, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=219, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=90] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=219, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=219, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=92] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=219, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=219, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=94] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=219, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=219, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=96] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=219, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=219, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=98] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=219, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=219, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=100] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=219, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=219, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=102] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=219, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=219, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=104] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=219, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=219, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=106] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=219, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=219, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=108] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=219, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=219, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=110] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=219, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=219, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=112] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=219, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=219, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=114] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=219, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=219, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=116] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=219, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=219, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=118] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=219, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=219, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=120] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=219, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=219, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=122] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=219, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=219, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=124] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=219, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=219, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=126] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=219, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=219, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=128] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=219, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=219, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=130] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=219, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=219, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=132] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=219, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=219, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=134] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=219, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=219, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=136] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=219, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=219, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=138] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=219, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=219, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=140] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=219, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=219, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=142] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=219, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=219, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=144] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=219, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=219, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=146] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=219, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=219, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=148] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=219, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=219, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=150] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=219, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=219, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=152] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=219, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=219, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=154] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=219, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=219, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=156] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=219, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=219, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=158] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=219, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=219, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=160] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=219, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=219, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=162] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=219, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=163] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=219, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=164] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=219, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=164] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=165] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=219, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=166] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=219, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=166] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=167] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=219, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=168] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=219, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=168] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=169] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=219, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=170] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=219, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=170] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_default_prio.py::test_qos_default_prio | 671.60 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14507' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_default_prio">Starting testcase:test_qos_default_prio from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_default_prio.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=219, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=220] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=220] Local address: 172.17.0.4, port 60330 INFO asyncssh:logging.py:92 [conn=220] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=220] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=220] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:12:33 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=220, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=2] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:12:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=220, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=220, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=220, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=220, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=220, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 3279 pvid untagged && bridge vlan add dev swp2 vid 3279 pvid untagged && bridge vlan add dev swp3 vid 3279 pvid && bridge vlan add dev swp4 vid 3279 pvid INFO asyncssh:logging.py:92 [conn=220, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=8] Command: bridge vlan add dev swp1 vid 3279 pvid untagged && bridge vlan add dev swp2 vid 3279 pvid untagged && bridge vlan add dev swp3 vid 3279 pvid && bridge vlan add dev swp4 vid 3279 pvid INFO asyncssh:logging.py:92 [conn=220, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=9] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 12:0 32:1 50:2 53:3 2:4 26:5 52:6 19:7 INFO asyncssh:logging.py:92 [conn=220, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=10] Command: dcb app add dev swp1 dscp-prio 12:0 32:1 50:2 53:3 2:4 26:5 52:6 19:7 INFO asyncssh:logging.py:92 [conn=220, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=11] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=220, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=12] Command: dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=220, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[2,4],[12,0],[19,7],[26,5],[32,1],[50,2],[52,6],[53,3]]} INFO asyncssh:logging.py:92 [conn=220, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp3 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp4 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=220, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=14] Command: tc qdisc add dev swp1 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp3 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp4 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=220, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=220, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=16] Command: tc qdisc add dev swp1 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp1 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp3 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp4 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=220, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.3', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13348163,"packets":102120,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2435606,"packets":20675,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1711145,"packets":14018,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2597545,"packets":21884,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6603867,"packets":45543,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3228,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7864,"packets":48,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2965,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7314,"packets":46,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2702,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7084,"packets":49,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2176,"packets":11,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":5984,"packets":45,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13353051,"packets":102145,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2435606,"packets":20675,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1714470,"packets":14039,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2597782,"packets":21885,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6605193,"packets":45546,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3754,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8964,"packets":52,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3228,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":65765560,"packets":128481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879464,"packets":64221,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3228,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":65765880,"packets":128486,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879464,"packets":64221,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2702,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":65764780,"packets":128482,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32878952,"packets":64220,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a25f6b90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64216 Rx 64216 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64217 Rx 64217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64216 Rx 64216 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64216 Rx 64216 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64216 Rx 64216 Loss 0.000 INFO asyncssh:logging.py:92 [conn=220, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=23] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 63:7 INFO asyncssh:logging.py:92 [conn=220, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=24] Command: dcb app add dev swp1 dscp-prio 63:7 INFO asyncssh:logging.py:92 [conn=220, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=26] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13358533,"packets":102182,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2435606,"packets":20675,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1718530,"packets":14071,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2597782,"packets":21885,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6606615,"packets":45551,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3754,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8964,"packets":52,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3228,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":65765560,"packets":128481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879464,"packets":64221,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3228,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":65765880,"packets":128486,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879464,"packets":64221,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2702,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":65764780,"packets":128482,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32878952,"packets":64220,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32879104,"packets":64217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=28] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13362952,"packets":102204,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2436328,"packets":20682,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1721990,"packets":14085,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2598019,"packets":21886,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6606615,"packets":45551,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4017,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9514,"packets":54,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3491,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398976,"packets":137498,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103285982,"packets":201764,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":107918184,"packets":210781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3491,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103286302,"packets":201769,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":107918184,"packets":210781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2965,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103285202,"packets":201765,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":107917672,"packets":210780,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ed47c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73281 Rx 73281 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73281 Rx 73281 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73281 Rx 73281 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73281 Rx 73281 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73280 Rx 73280 Loss 0.000 INFO asyncssh:logging.py:92 [conn=220, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=29] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=220, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=30] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=220, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=31] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 12:0 32:1 50:2 53:3 2:4 26:5 52:6 19:7 INFO asyncssh:logging.py:92 [conn=220, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=32] Command: dcb app add dev swp1 dscp-prio 12:0 32:1 50:2 53:3 2:4 26:5 52:6 19:7 INFO asyncssh:logging.py:92 [conn=220, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=32] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=33] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=220, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=34] Command: dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=220, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=34] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[2,4],[12,0],[19,7],[26,5],[32,1],[50,2],[52,6],[53,3]]} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2_tagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L3_tagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=36] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13372764,"packets":102278,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2441812,"packets":20724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1722227,"packets":14086,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2599384,"packets":21896,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6609341,"packets":45572,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5332,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13032,"packets":76,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4876,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398976,"packets":137498,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103289664,"packets":201788,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":107918184,"packets":210781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4806,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103290076,"packets":201795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":107918184,"packets":210781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4280,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103288976,"packets":201791,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":107917672,"packets":210780,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":70398464,"packets":137497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=38] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13377071,"packets":102304,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2442049,"packets":20725,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1722949,"packets":14093,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2599384,"packets":21896,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6612689,"packets":45590,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5595,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13582,"packets":78,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5139,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321984,"packets":330707,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169319936,"packets":330703,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":894668646,"packets":1747451,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":206839656,"packets":403987,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169319936,"packets":330703,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5069,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169319936,"packets":330703,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":894669058,"packets":1747458,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":206839656,"packets":403987,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169319936,"packets":330703,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4543,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169319936,"packets":330703,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":894667958,"packets":1747454,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":206839144,"packets":403986,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169319936,"packets":330703,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2061ea0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 579623 Rx 579623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 579623 Rx 579623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 579623 Rx 579623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 579623 Rx 579623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 579623 Rx 579623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 579623 Rx 579623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64402 Rx 64402 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 64403 Rx 64403 Loss 0.000 INFO asyncssh:logging.py:92 [conn=220, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=39] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 default-prio 1&& dcb app add dev swp2 default-prio 1&& dcb app add dev swp3 default-prio 1&& dcb app add dev swp4 default-prio 1 INFO asyncssh:logging.py:92 [conn=220, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=40] Command: dcb app add dev swp1 default-prio 1&& dcb app add dev swp2 default-prio 1&& dcb app add dev swp3 default-prio 1&& dcb app add dev swp4 default-prio 1 INFO asyncssh:logging.py:92 [conn=220, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=41] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=42] Command: dcb -j app show dev swp1 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=42] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[1]} INFO asyncssh:logging.py:92 [conn=220, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=43] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp2 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=44] Command: dcb -j app show dev swp2 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=44] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[1]} INFO asyncssh:logging.py:92 [conn=220, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=45] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp3 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=46] Command: dcb -j app show dev swp3 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=46] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[1]} INFO asyncssh:logging.py:92 [conn=220, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=47] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp4 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=48] Command: dcb -j app show dev swp4 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=48] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[1]} INFO asyncssh:logging.py:92 [conn=220, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=50] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=50] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13388630,"packets":102398,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2442286,"packets":20726,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1732561,"packets":14181,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2599384,"packets":21896,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6614399,"packets":45595,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5858,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":14132,"packets":80,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5402,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321984,"packets":330707,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169319936,"packets":330703,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":894669196,"packets":1747453,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":206839656,"packets":403987,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169319936,"packets":330703,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5332,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169319936,"packets":330703,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":894669608,"packets":1747460,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":206839656,"packets":403987,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169319936,"packets":330703,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4806,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169319936,"packets":330703,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169321472,"packets":330706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":894668508,"packets":1747456,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":206839144,"packets":403986,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":169319936,"packets":330703,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=52] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13392887,"packets":102421,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2442523,"packets":20727,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1736539,"packets":14202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2599384,"packets":21896,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6614441,"packets":45596,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6191,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":14846,"packets":84,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5665,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1071000576,"packets":2091798,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282030080,"packets":550840,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1007379890,"packets":1967592,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":319549800,"packets":624124,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282030080,"packets":550840,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5595,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1071000064,"packets":2091797,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282030080,"packets":550840,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1007380302,"packets":1967599,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":319549800,"packets":624124,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282030080,"packets":550840,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5069,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1070999040,"packets":2091795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282030080,"packets":550840,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1007379202,"packets":1967595,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":319547752,"packets":624120,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282030080,"packets":550840,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2062380>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73378 Rx 73378 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73378 Rx 73378 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73378 Rx 73378 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73378 Rx 73378 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 660410 Rx 660410 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 660410 Rx 660410 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 660409 Rx 660409 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73378 Rx 73378 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73378 Rx 73378 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73378 Rx 73378 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73378 Rx 73378 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 660410 Rx 660410 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 660410 Rx 660410 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 660409 Rx 660409 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73378 Rx 73378 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73378 Rx 73378 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73378 Rx 73378 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73378 Rx 73378 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73379 Rx 73379 Loss 0.000 INFO asyncssh:logging.py:92 [conn=220, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=53] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 default-prio 0&& dcb app add dev swp2 default-prio 0&& dcb app add dev swp3 default-prio 0&& dcb app add dev swp4 default-prio 0 INFO asyncssh:logging.py:92 [conn=220, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=54] Command: dcb app add dev swp1 default-prio 0&& dcb app add dev swp2 default-prio 0&& dcb app add dev swp3 default-prio 0&& dcb app add dev swp4 default-prio 0 INFO asyncssh:logging.py:92 [conn=220, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=55] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=56] Command: dcb -j app show dev swp1 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=56] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1]} INFO asyncssh:logging.py:92 [conn=220, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=57] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp2 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=58] Command: dcb -j app show dev swp2 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=58] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1]} INFO asyncssh:logging.py:92 [conn=220, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=59] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp3 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=60] Command: dcb -j app show dev swp3 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=60] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1]} INFO asyncssh:logging.py:92 [conn=220, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=61] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp4 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=62] Command: dcb -j app show dev swp4 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=62] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1]} INFO asyncssh:logging.py:92 [conn=220, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=64] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13404932,"packets":102516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2442523,"packets":20727,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1744870,"packets":14274,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2599426,"packets":21897,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6618113,"packets":45618,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6454,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":15396,"packets":86,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5928,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1071000576,"packets":2091798,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282030080,"packets":550840,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1007380440,"packets":1967594,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":319549800,"packets":624124,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282030080,"packets":550840,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5858,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1071000064,"packets":2091797,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282030080,"packets":550840,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1007380852,"packets":1967601,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":319549800,"packets":624124,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282030080,"packets":550840,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5332,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1070999040,"packets":2091795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282030080,"packets":550840,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282031616,"packets":550843,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1007379752,"packets":1967597,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":319547752,"packets":624120,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":282030080,"packets":550840,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=66] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=66] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13409417,"packets":102541,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2442523,"packets":20727,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1745491,"packets":14277,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2599426,"packets":21897,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6621977,"packets":45640,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6717,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":15946,"packets":88,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6191,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394731008,"packets":770959,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1972600320,"packets":3852735,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394729472,"packets":770956,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394731008,"packets":770959,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394732544,"packets":770962,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1120081918,"packets":2187715,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":432249192,"packets":844240,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394729472,"packets":770956,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6121,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394731008,"packets":770959,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1972599808,"packets":3852734,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394729472,"packets":770956,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394731008,"packets":770959,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394732544,"packets":770962,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1120082330,"packets":2187722,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":432249192,"packets":844240,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394729472,"packets":770956,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5595,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394731008,"packets":770959,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1972598784,"packets":3852732,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394729472,"packets":770956,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394731008,"packets":770959,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394732544,"packets":770962,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1120081230,"packets":2187718,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":432247144,"packets":844236,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394729472,"packets":770956,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2079c90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 660351 Rx 660351 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 660351 Rx 660351 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 660351 Rx 660351 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 660351 Rx 660351 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 660351 Rx 660351 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 660351 Rx 660351 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73372 Rx 73372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73373 Rx 73373 Loss 0.000 INFO asyncssh:logging.py:92 [conn=220, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=67] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 default-prio 2&& dcb app add dev swp2 default-prio 2&& dcb app add dev swp3 default-prio 2&& dcb app add dev swp4 default-prio 2 INFO asyncssh:logging.py:92 [conn=220, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=68] Command: dcb app add dev swp1 default-prio 2&& dcb app add dev swp2 default-prio 2&& dcb app add dev swp3 default-prio 2&& dcb app add dev swp4 default-prio 2 INFO asyncssh:logging.py:92 [conn=220, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=69] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=70] Command: dcb -j app show dev swp1 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=70] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1,2]} INFO asyncssh:logging.py:92 [conn=220, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=71] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp2 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=72] Command: dcb -j app show dev swp2 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=72] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1,2]} INFO asyncssh:logging.py:92 [conn=220, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=73] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp3 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=74] Command: dcb -j app show dev swp3 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=74] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1,2]} INFO asyncssh:logging.py:92 [conn=220, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=75] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp4 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=76] Command: dcb -j app show dev swp4 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=76] Channel closed DEBUG agg1:Logger.py:156 {"default_prio":[0,1,2]} INFO asyncssh:logging.py:92 [conn=220, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=78] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=78] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13420542,"packets":102634,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2442523,"packets":20727,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1745728,"packets":14278,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2599426,"packets":21897,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6632865,"packets":45732,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6980,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":16496,"packets":90,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6454,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394731008,"packets":770959,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1972600320,"packets":3852735,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394729472,"packets":770956,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394731008,"packets":770959,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394732544,"packets":770962,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1120082468,"packets":2187717,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":432249192,"packets":844240,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394729472,"packets":770956,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6384,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394731008,"packets":770959,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1972599808,"packets":3852734,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394729472,"packets":770956,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394731008,"packets":770959,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394732544,"packets":770962,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1120082880,"packets":2187724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":432249192,"packets":844240,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394729472,"packets":770956,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5858,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394731008,"packets":770959,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1972598784,"packets":3852732,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394729472,"packets":770956,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394731008,"packets":770959,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394732544,"packets":770962,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1120081780,"packets":2187720,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":432247144,"packets":844236,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":394729472,"packets":770956,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=80] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=80] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13425033,"packets":102656,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2442523,"packets":20727,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1745965,"packets":14279,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2599426,"packets":21897,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6637119,"packets":45753,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7243,"packets":31,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17046,"packets":92,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6717,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507382784,"packets":990982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2085252096,"packets":4072758,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507379712,"packets":990976,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507382784,"packets":990982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1295942144,"packets":2531137,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1232734794,"packets":2407742,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544899432,"packets":1064260,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507381248,"packets":990979,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6647,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507382784,"packets":990982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2085251584,"packets":4072757,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507379712,"packets":990976,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507382784,"packets":990982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1295942144,"packets":2531137,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1232735206,"packets":2407749,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544899432,"packets":1064260,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507381248,"packets":990979,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6121,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507382784,"packets":990982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2085250560,"packets":4072755,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507379712,"packets":990976,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507382784,"packets":990982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1295942144,"packets":2531137,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1232734106,"packets":2407745,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544897384,"packets":1064256,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507381248,"packets":990979,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2061e40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 660066 Rx 660066 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 660066 Rx 660066 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 660066 Rx 660066 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 660066 Rx 660066 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 660066 Rx 660066 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 660066 Rx 660066 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73340 Rx 73340 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73341 Rx 73341 Loss 0.000 INFO asyncssh:logging.py:92 [conn=220, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=81] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=220, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=82] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=220, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=82] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=83] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 INFO asyncssh:logging.py:92 [conn=220, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=84] Command: dcb -j app show dev swp1 INFO asyncssh:logging.py:92 [conn=220, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=84] Channel closed DEBUG agg1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=220, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=85] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp2 INFO asyncssh:logging.py:92 [conn=220, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=86] Command: dcb -j app show dev swp2 INFO asyncssh:logging.py:92 [conn=220, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=86] Channel closed DEBUG agg1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=220, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=87] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp3 INFO asyncssh:logging.py:92 [conn=220, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=88] Command: dcb -j app show dev swp3 INFO asyncssh:logging.py:92 [conn=220, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=88] Channel closed DEBUG agg1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=220, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=89] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp4 INFO asyncssh:logging.py:92 [conn=220, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=90] Command: dcb -j app show dev swp4 INFO asyncssh:logging.py:92 [conn=220, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=90] Channel closed DEBUG agg1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=220, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=92] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=92] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13436500,"packets":102752,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2442523,"packets":20727,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1751620,"packets":14325,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2599798,"packets":21901,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6642559,"packets":45799,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7506,"packets":32,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17596,"packets":94,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6980,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507382784,"packets":990982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2085252096,"packets":4072758,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507379712,"packets":990976,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507382784,"packets":990982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1295942144,"packets":2531137,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1232735344,"packets":2407744,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544899432,"packets":1064260,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507381248,"packets":990979,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6910,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507382784,"packets":990982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2085251584,"packets":4072757,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507379712,"packets":990976,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507382784,"packets":990982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1295942144,"packets":2531137,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1232735756,"packets":2407751,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544899432,"packets":1064260,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507381248,"packets":990979,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6384,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507382784,"packets":990982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2085250560,"packets":4072755,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507379712,"packets":990976,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507382784,"packets":990982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1295942144,"packets":2531137,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1232734656,"packets":2407747,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544897384,"packets":1064256,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507381248,"packets":990979,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=94] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=94] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13440367,"packets":102774,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2446111,"packets":20747,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1751857,"packets":14326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2599798,"packets":21901,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6642601,"packets":45800,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7769,"packets":33,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":18146,"packets":96,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7243,"packets":31,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":845300736,"packets":1650978,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2085252096,"packets":4072758,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":845297664,"packets":1650972,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507382784,"packets":990982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1295942144,"packets":2531137,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2246489750,"packets":4387734,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544899432,"packets":1064260,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507381248,"packets":990979,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7173,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":845300736,"packets":1650978,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2085251584,"packets":4072757,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":845297664,"packets":1650972,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507382784,"packets":990982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1295942144,"packets":2531137,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2246490162,"packets":4387741,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544899432,"packets":1064260,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507381248,"packets":990979,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6647,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":845300736,"packets":1650978,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2085250560,"packets":4072755,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":845297664,"packets":1650972,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507382784,"packets":990982,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1295942144,"packets":2531137,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2246489062,"packets":4387737,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":544897384,"packets":1064256,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":507381248,"packets":990979,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a207bc70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73332 Rx 73332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73332 Rx 73332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73332 Rx 73332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 659996 Rx 659996 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 659996 Rx 659996 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 659996 Rx 659996 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73332 Rx 73332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73332 Rx 73332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73332 Rx 73332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 659996 Rx 659996 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 659996 Rx 659996 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 659996 Rx 659996 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73332 Rx 73332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73332 Rx 73332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73332 Rx 73332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 73333 Rx 73333 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_default_prio from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_default_prio.py INFO asyncssh:logging.py:92 [conn=220, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=95] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=220, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=96] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=220, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=96] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=97] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=98] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:23:42 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=220, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=99] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=220, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=100] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=220, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=100] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":315,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=220, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=101] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=220, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=102] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=220, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=102] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=103] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=104] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=104] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:23:42 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=220, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=106] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=106] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp1","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp1","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp1","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp1","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp1","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp1","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp1","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp1","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp1","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp3","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp3","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp3","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp3","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp3","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp3","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp3","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp3","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp3","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp4","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp4","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp4","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp4","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp4","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp4","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp4","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp4","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp4","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=220, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=220, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=108] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=220, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=220, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=110] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=220, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=124] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=126] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=220, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=128] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=220, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=128] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=130] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=130] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=132] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=132] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=134] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=134] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=136] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=136] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=136] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=138] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=138] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=138] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=140] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=140] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=140] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=142] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=142] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=142] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=144] Command: tc qdisc delete dev swp1 tbf INFO asyncssh:logging.py:92 [conn=220, chan=144] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=144] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=220, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=146] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=220, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=146] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=148] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=148] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=148] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=150] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=150] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=150] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=152] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=152] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=152] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=154] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=154] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=154] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=156] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=156] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=156] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=158] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=158] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=158] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=160] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=160] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=160] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=162] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=220, chan=162] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=162] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=163] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=220, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=164] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=220, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=164] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=165] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=166] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=166] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=166] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=167] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=168] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=168] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=168] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=169] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=170] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=170] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=170] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=171] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=172] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=172] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=172] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=173] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=174] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=174] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=174] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=175] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=176] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=176] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=176] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=177] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=178] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=178] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=178] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=179] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=180] Command: tc qdisc delete dev swp3 tbf INFO asyncssh:logging.py:92 [conn=220, chan=180] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=180] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=181] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=220, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=182] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=220, chan=182] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=182] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=183] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=184] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=184] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=184] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=185] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=186] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=186] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=186] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=187] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=188] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=188] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=188] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=189] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=190] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=190] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=190] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=191] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=192] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=192] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=192] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=193] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=194] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=194] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=194] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=195] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=196] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=196] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=196] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=197] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=198] Command: tc qdisc delete dev swp4 tbf INFO asyncssh:logging.py:92 [conn=220, chan=198] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=198] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=199] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=220, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=200] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=220, chan=200] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=200] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=201] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=201] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=201] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=201] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=220, chan=202] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=202] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=220, chan=202] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=202] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=202] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=203] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=203] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=203] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=203] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=203] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=220, chan=204] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=204] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=220, chan=204] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=204] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=204] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=205] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=205] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=205] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=205] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=205] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=220, chan=206] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=206] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=220, chan=206] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=206] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=206] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=207] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=207] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=207] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=207] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=207] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=220, chan=208] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=208] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=220, chan=208] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=208] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=208] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=209] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=209] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=209] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=209] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=209] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=220, chan=210] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=210] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=220, chan=210] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=210] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=210] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=211] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=211] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=211] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=211] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=211] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=220, chan=212] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=212] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=220, chan=212] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=212] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=212] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=213] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=213] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=213] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=213] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=213] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=220, chan=214] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=214] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=220, chan=214] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=214] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=214] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=215] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=215] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=215] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=215] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=215] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=220, chan=216] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=216] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=220, chan=216] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=216] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=216] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=217] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=217] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=217] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=217] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=217] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=220, chan=218] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=218] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=220, chan=218] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=218] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=218] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=219] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=219] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=219] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=219] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=219] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=220, chan=220] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=220] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=220, chan=220] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=220] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=220] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=221] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=221] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=221] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=221] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=221] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=220, chan=222] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=222] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=220, chan=222] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=222] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=222] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=223] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=223] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=223] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=223] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=223] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=220, chan=224] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=224] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=220, chan=224] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=224] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=224] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=225] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=225] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=225] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=225] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=225] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=220, chan=226] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=226] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=220, chan=226] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=226] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=226] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=227] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=227] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=227] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=227] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=227] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=220, chan=228] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=228] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=220, chan=228] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=228] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=228] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=229] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=229] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=229] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=229] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=229] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=220, chan=230] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=230] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=220, chan=230] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=230] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=230] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=231] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=231] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=231] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=231] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=231] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=220, chan=232] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=232] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=220, chan=232] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=232] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=232] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=233] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=233] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=233] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=233] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=233] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=220, chan=234] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=234] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=220, chan=234] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=234] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=234] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=235] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=235] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=235] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=235] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=235] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=220, chan=236] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=236] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=220, chan=236] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=236] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=236] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=237] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=237] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=237] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=237] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=237] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=220, chan=238] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=238] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=220, chan=238] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=238] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=238] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=239] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=239] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=239] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=239] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=239] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=220, chan=240] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=240] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=220, chan=240] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=240] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=240] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=241] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=241] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=241] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=241] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=241] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=220, chan=242] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=242] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=220, chan=242] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=242] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=242] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=243] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=243] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=243] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=243] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=243] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=220, chan=244] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=244] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=220, chan=244] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=244] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=244] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=245] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=245] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=245] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=245] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=245] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=220, chan=246] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=246] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=220, chan=246] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=246] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=246] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=247] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=247] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=247] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=247] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=247] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=220, chan=248] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=248] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=220, chan=248] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=248] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=248] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=249] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=249] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=249] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=249] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=249] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=220, chan=250] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=250] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=220, chan=250] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=250] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=250] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=251] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=251] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=251] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=251] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=251] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=220, chan=252] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=252] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=220, chan=252] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=252] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=252] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=253] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=253] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=253] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=253] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=253] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=220, chan=254] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=254] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=220, chan=254] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=254] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=254] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=255] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=255] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=255] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=255] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=255] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=220, chan=256] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=256] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=220, chan=256] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=256] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=256] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=257] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=257] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=257] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=257] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=257] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=220, chan=258] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=258] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=220, chan=258] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=258] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=258] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=259] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=259] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=259] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=259] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=259] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=220, chan=260] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=260] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=220, chan=260] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=260] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=260] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=261] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=261] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=261] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=261] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=261] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=220, chan=262] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=262] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=220, chan=262] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=262] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=262] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=263] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=263] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=263] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=263] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=263] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=220, chan=264] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=264] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=220, chan=264] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=264] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=264] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=265] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=265] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=265] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=265] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=265] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=220, chan=266] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=266] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=220, chan=266] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=266] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=266] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=267] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=267] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=267] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=267] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=267] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=220, chan=268] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=268] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=220, chan=268] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=268] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=268] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=269] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=269] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=269] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=269] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=269] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=220, chan=270] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=270] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=220, chan=270] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=270] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=270] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=271] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=271] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=271] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=271] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=271] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=220, chan=272] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=272] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=220, chan=272] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=272] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=272] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=273] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=273] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=273] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=273] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=273] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=220, chan=274] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=274] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=220, chan=274] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=274] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=274] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=275] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=275] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=275] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=275] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=275] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=220, chan=276] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=276] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=220, chan=276] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=276] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=276] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=277] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=277] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=277] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=277] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=277] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=220, chan=278] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=278] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=220, chan=278] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=278] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=278] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=279] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=279] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=279] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=279] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=279] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=220, chan=280] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=280] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=220, chan=280] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=280] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=280] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=281] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=281] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=281] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=281] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=281] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=220, chan=282] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=282] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=220, chan=282] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=282] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=282] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=283] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=283] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=283] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=283] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=283] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=220, chan=284] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=284] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=220, chan=284] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=284] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=284] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=285] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=285] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=285] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=285] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=285] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=220, chan=286] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=286] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=220, chan=286] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=286] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=286] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_dscp_remarking.py::test_qos_dscp_remarking | 321.04 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14806' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_dscp_remarking">Starting testcase:test_qos_dscp_remarking from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_dscp_remarking.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=220, chan=287] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=221] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=221] Local address: 172.17.0.4, port 45686 INFO asyncssh:logging.py:92 [conn=221] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=221] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=221] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:23:45 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=221, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=2] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:23:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=221, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=221, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=221, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=221, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=221, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=7] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 51:0 35:1 21:2 10:3 42:4 12:5 32:6 17:7&& dcb app add dev swp2 dscp-prio 36:0 59:1 15:2 57:3 23:4 10:5 31:6 25:7 INFO asyncssh:logging.py:92 [conn=221, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=8] Command: dcb app add dev swp1 dscp-prio 51:0 35:1 21:2 10:3 42:4 12:5 32:6 17:7&& dcb app add dev swp2 dscp-prio 36:0 59:1 15:2 57:3 23:4 10:5 31:6 25:7 INFO asyncssh:logging.py:92 [conn=221, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=9] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=221, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=10] Command: dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=221, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[10,3],[12,5],[17,7],[21,2],[32,6],[35,1],[42,4],[51,0]]} INFO asyncssh:logging.py:92 [conn=221, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=11] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp2 dscp-prio INFO asyncssh:logging.py:92 [conn=221, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=12] Command: dcb -j app show dev swp2 dscp-prio INFO asyncssh:logging.py:92 [conn=221, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[10,5],[15,2],[23,4],[25,7],[31,6],[36,0],[57,3],[59,1]]} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dscp [51,35,21,10,42,12,32,17] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:5_1.1.1.1/24 to 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dscp [36,59,15,57,23,10,31,25] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:1:6_1.1.1.2/24 to 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1f99060>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [51 35 21 10 42 12 32 17] SIP-DIP 1.1.1.1-1.1.1.2 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [51 35 21 10 42 12 32 17] SIP-DIP 1.1.1.1-1.1.1.2 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [51 35 21 10 42 12 32 17] SIP-DIP 1.1.1.1-1.1.1.2 Tx 55 Rx 55 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [51 35 21 10 42 12 32 17] SIP-DIP 1.1.1.1-1.1.1.2 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [51 35 21 10 42 12 32 17] SIP-DIP 1.1.1.1-1.1.1.2 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [51 35 21 10 42 12 32 17] SIP-DIP 1.1.1.1-1.1.1.2 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [51 35 21 10 42 12 32 17] SIP-DIP 1.1.1.1-1.1.1.2 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI dscp [51 35 21 10 42 12 32 17] SIP-DIP 1.1.1.1-1.1.1.2 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 59 15 57 23 10 31 25] SIP-DIP 1.1.1.2-1.1.1.1 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 59 15 57 23 10 31 25] SIP-DIP 1.1.1.2-1.1.1.1 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 59 15 57 23 10 31 25] SIP-DIP 1.1.1.2-1.1.1.1 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 59 15 57 23 10 31 25] SIP-DIP 1.1.1.2-1.1.1.1 Tx 55 Rx 55 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 59 15 57 23 10 31 25] SIP-DIP 1.1.1.2-1.1.1.1 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 59 15 57 23 10 31 25] SIP-DIP 1.1.1.2-1.1.1.1 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 59 15 57 23 10 31 25] SIP-DIP 1.1.1.2-1.1.1.1 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI dscp [36 59 15 57 23 10 31 25] SIP-DIP 1.1.1.2-1.1.1.1 Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [51 35 21 10 42 12 32 17] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 57 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [51 35 21 10 42 12 32 17] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 10 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [51 35 21 10 42 12 32 17] Tx 55 Rx 55 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 25 | Rx 55 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [51 35 21 10 42 12 32 17] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 15 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [51 35 21 10 42 12 32 17] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 31 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [51 35 21 10 42 12 32 17] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 59 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [51 35 21 10 42 12 32 17] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 23 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [51 35 21 10 42 12 32 17] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 36 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 59 15 57 23 10 31 25] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 12 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 59 15 57 23 10 31 25] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 21 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 59 15 57 23 10 31 25] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 42 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 59 15 57 23 10 31 25] Tx 55 Rx 55 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 17 | Rx 55 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 59 15 57 23 10 31 25] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 32 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 59 15 57 23 10 31 25] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 51 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 59 15 57 23 10 31 25] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 10 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [36 59 15 57 23 10 31 25] Tx 56 Rx 56 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 35 | Rx 56 INFO DENT:Logger.py:84 [Ixia Traffic Generator] RX port | RX packets | RX DSCP | TX port | TX packets | TX DSCP | Prio | DSCP expected | DSCP correct | Loss INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 56 | 51 | swp2 | 56 | 36 | 0 | 36 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 56 | 35 | swp2 | 56 | 59 | 1 | 59 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 56 | 21 | swp2 | 56 | 15 | 2 | 15 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 56 | 10 | swp2 | 56 | 57 | 3 | 57 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 56 | 42 | swp2 | 56 | 23 | 4 | 23 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 56 | 12 | swp2 | 56 | 10 | 5 | 10 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 56 | 32 | swp2 | 56 | 31 | 6 | 31 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp1 | 55 | 17 | swp2 | 55 | 25 | 7 | 25 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 56 | 36 | swp1 | 56 | 51 | 0 | 51 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 56 | 59 | swp1 | 56 | 35 | 1 | 35 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 56 | 15 | swp1 | 56 | 21 | 2 | 21 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 56 | 57 | swp1 | 56 | 10 | 3 | 10 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 56 | 23 | swp1 | 56 | 42 | 4 | 42 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 56 | 10 | swp1 | 56 | 12 | 5 | 12 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 56 | 31 | swp1 | 56 | 32 | 6 | 32 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp2 | 55 | 25 | swp1 | 55 | 17 | 7 | 17 | True | False -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_dscp_remarking from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_dscp_remarking.py INFO asyncssh:logging.py:92 [conn=221, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=13] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=221, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=14] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=221, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:29:04 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=221, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=221, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=221, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":316,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=221, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=221, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=221, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:29:04 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=221, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=221, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=221, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=221, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=221, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=221, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=221, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=221, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=221, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=221, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=221, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=221, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=221, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=221, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=221, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=221, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=221, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=221, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=221, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=221, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=221, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=221, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=221, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=221, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=221, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=221, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=221, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=221, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=221, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=221, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=221, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=221, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=221, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=221, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=221, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=221, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=221, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=221, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=221, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=221, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=221, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=221, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=221, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=221, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=221, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=221, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=221, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=221, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=221, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=221, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=221, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=221, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=221, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=221, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=221, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=221, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=221, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=221, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=221, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=221, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=221, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=221, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=221, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=221, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=221, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=221, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=221, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=221, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=221, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=221, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=221, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=221, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=221, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=221, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=221, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=221, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=221, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=114] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=221, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=221, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=116] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=221, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=221, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=118] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=221, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=221, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=120] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=221, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=221, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=122] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=221, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=221, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=124] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=221, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=221, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=126] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=221, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=221, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=128] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=221, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=221, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=130] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=221, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=221, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=132] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=221, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=221, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=134] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=221, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=221, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=136] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=221, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=221, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=138] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=221, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=221, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=140] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=221, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_shaper.py::test_qos_shaper[L2] | 179.87 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14959' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_shaper[L2]">Starting testcase:test_qos_shaper[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=221, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=222] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=222] Local address: 172.17.0.4, port 44196 INFO asyncssh:logging.py:92 [conn=222] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=222] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=222] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:29:06 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=222, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=2] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:29:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=222, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=222, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=222, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=222, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=222, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 INFO asyncssh:logging.py:92 [conn=222, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=8] Command: bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 INFO asyncssh:logging.py:92 [conn=222, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 3172 && bridge vlan add dev swp2 vid 3172 INFO asyncssh:logging.py:92 [conn=222, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=10] Command: bridge vlan add dev swp1 vid 3172 && bridge vlan add dev swp2 vid 3172 INFO asyncssh:logging.py:92 [conn=222, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=222, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=12] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=222, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=222, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=14] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=222, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 3172, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 3172, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=222, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13712420,"packets":105339,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2521716,"packets":21456,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1768414,"packets":14469,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2690838,"packets":22759,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6731452,"packets":46655,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6249,"packets":42,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1618,"packets":9,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3284,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3332,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3332,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=222, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13716485,"packets":105362,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2521716,"packets":21456,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1768414,"packets":14469,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2694582,"packets":22779,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6731773,"packets":46658,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6759,"packets":44,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2128,"packets":11,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":369206272,"packets":721106,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":369206784,"packets":721107,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":369206272,"packets":721106,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":369206272,"packets":721106,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":369206784,"packets":721107,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":369211136,"packets":721128,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":369206632,"packets":721110,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":369206272,"packets":721106,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3570,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3570,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1dd6950>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 721107 Rx 721107 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 721107 Rx 721107 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 721107 Rx 721107 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 721106 Rx 721106 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 721106 Rx 721106 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 721106 Rx 721106 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 721106 Rx 721106 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 721106 Rx 721106 Loss 0.000 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=222, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=222, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=222, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=222, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=24] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=222, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=222, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=222, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=222, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=222, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=222, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=48] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=48] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=48] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=50] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=50] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=50] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=52] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=52] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=52] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=54] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=54] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=54] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=56] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=56] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=58] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=58] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=60] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=60] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=62] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=62] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=222, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=64] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=222, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=222, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=66] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=222, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=222, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=68] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=222, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=222, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=70] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=222, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=222, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=72] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=222, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=222, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=74] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=222, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=222, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=76] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=222, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=222, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=78] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=222, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=222, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=80] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=222, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=222, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=82] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=222, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=222, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=84] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=222, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=222, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=86] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=222, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=222, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=88] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=222, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=222, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=90] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=222, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=222, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=92] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=222, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=222, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=94] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=222, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=222, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=96] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=222, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=222, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=98] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=222, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=222, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=100] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=222, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=222, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=102] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=222, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=222, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=104] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=222, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=222, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=106] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=222, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=222, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=108] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=222, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=222, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=110] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=222, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=222, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=112] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=222, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=222, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=114] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=222, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=222, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=116] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=222, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=222, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=118] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=222, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=222, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=120] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=222, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=222, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=122] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=222, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=222, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=124] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=222, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=222, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=126] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=222, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=222, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=222, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=222, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=130] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=222, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=222, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=132] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=222, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=222, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=134] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=222, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=222, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=136] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=222, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=222, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=138] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=222, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=222, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=140] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=222, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=222, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=142] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=222, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=222, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=144] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=222, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=222, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=146] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=222, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=222, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=148] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=222, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=222, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=150] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=222, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=222, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=152] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=222, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=222, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=154] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=222, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=222, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=156] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=222, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=222, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=158] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=222, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=158] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 74Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 88Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 89Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 60Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 96Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 96Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 115Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 98Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=222, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=160] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 74Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 88Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 89Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 60Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 96Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 96Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 115Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 98Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=222, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=160] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=162] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=162] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":7500000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":11000000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":14375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":12000000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":9250000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":12000000,"burst":1048572,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=222, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=163] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=164] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=164] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13824643,"packets":106385,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2529264,"packets":21520,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1791088,"packets":14680,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2732600,"packets":23136,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6771691,"packets":47049,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6759,"packets":44,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":7500000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":11000000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":14375000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":12000000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":9250000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":12000000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3570,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3570,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=222, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=165] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=166] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=166] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13828588,"packets":106408,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2532930,"packets":21541,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1791088,"packets":14680,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2732600,"packets":23136,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6771970,"packets":47051,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7014,"packets":45,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":255,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":7500000,"burst":1048575,"lat":0},"bytes":210932736,"packets":411978,"drops":278318,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":11000000,"burst":1048575,"lat":0},"bytes":308926464,"packets":603372,"drops":73267,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":14375000,"burst":1048570,"lat":0},"bytes":349759488,"packets":683124,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":12000000,"burst":1048572,"lat":0},"bytes":336935936,"packets":658078,"drops":31169,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0},"bytes":312454144,"packets":610262,"drops":77352,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":9250000,"burst":1048570,"lat":0},"bytes":259961087,"packets":507737,"drops":179024,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0},"bytes":343978496,"packets":671833,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":12000000,"burst":1048572,"lat":0},"bytes":336936960,"packets":658080,"drops":33420,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3808,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3808,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1efc1f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825659 Rx 507736 Loss 38.505 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825659 Rx 603372 Loss 26.922 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825659 Rx 610262 Loss 26.088 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825658 Rx 411978 Loss 50.103 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825658 Rx 658078 Loss 20.297 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825658 Rx 658080 Loss 20.296 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825658 Rx 683124 Loss 17.263 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825658 Rx 671833 Loss 18.631 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_shaper[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py INFO asyncssh:logging.py:92 [conn=222, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=167] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=222, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=168] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=222, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=168] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=169] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=170] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=170] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=170] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:32:03 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=222, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=171] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=222, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=172] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=222, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=172] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":317,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=222, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=173] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=222, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=174] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=222, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=174] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=175] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=176] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=176] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:32:04 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=222, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=177] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=178] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=178] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=178] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":7500000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":11000000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":14375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":12000000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":9250000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":12250000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":12000000,"burst":1048572,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=222, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=179] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=222, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=180] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=222, chan=180] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=180] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=181] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=222, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=182] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=222, chan=182] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=182] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=183] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=184] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=184] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=184] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=185] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=186] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=186] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=186] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=187] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=188] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=188] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=188] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=189] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=190] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=190] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=191] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=192] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=192] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=192] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=193] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=194] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=194] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=194] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=195] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=196] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=196] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=196] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=197] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=198] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=198] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=198] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=199] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=222, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=200] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=222, chan=200] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=200] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=201] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=201] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=201] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=201] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=222, chan=202] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=202] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=222, chan=202] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=202] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=202] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=203] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=203] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=203] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=203] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=203] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=204] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=204] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=204] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=204] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=204] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=205] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=205] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=205] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=205] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=205] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=206] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=206] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=206] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=206] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=206] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=207] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=207] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=207] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=207] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=207] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=208] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=208] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=208] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=208] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=208] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=209] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=209] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=209] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=209] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=209] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=210] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=210] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=210] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=210] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=210] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=211] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=211] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=211] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=211] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=211] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=212] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=212] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=212] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=212] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=212] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=213] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=213] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=213] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=213] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=213] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=214] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=214] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=214] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=214] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=214] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=215] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=215] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=215] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=215] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=215] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=216] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=216] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=216] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=216] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=216] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=217] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=217] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=217] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=217] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=217] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=218] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=218] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=222, chan=218] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=218] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=218] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=219] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=219] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=219] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=219] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=219] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=222, chan=220] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=220] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=222, chan=220] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=220] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=220] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=221] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=221] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=221] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=221] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=221] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=222, chan=222] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=222] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=222, chan=222] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=222] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=222] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=223] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=223] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=223] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=223] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=223] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=222, chan=224] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=224] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=222, chan=224] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=224] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=224] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=225] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=225] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=225] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=225] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=225] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=222, chan=226] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=226] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=222, chan=226] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=226] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=226] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=227] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=227] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=227] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=227] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=227] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=222, chan=228] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=228] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=222, chan=228] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=228] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=228] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=229] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=229] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=229] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=229] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=229] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=222, chan=230] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=230] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=222, chan=230] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=230] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=230] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=231] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=231] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=231] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=231] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=231] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=222, chan=232] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=232] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=222, chan=232] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=232] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=232] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=233] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=233] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=233] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=233] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=233] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=222, chan=234] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=234] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=222, chan=234] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=234] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=234] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=235] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=235] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=235] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=235] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=235] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=222, chan=236] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=236] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=222, chan=236] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=236] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=236] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=237] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=237] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=237] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=237] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=237] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=222, chan=238] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=238] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=222, chan=238] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=238] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=238] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=239] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=239] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=239] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=239] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=239] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=222, chan=240] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=240] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=222, chan=240] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=240] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=240] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=241] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=241] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=241] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=241] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=241] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=222, chan=242] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=242] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=222, chan=242] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=242] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=242] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=243] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=243] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=243] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=243] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=243] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=222, chan=244] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=244] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=222, chan=244] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=244] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=244] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=245] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=245] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=245] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=245] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=245] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=222, chan=246] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=246] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=222, chan=246] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=246] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=246] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=247] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=247] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=247] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=247] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=247] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=222, chan=248] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=248] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=222, chan=248] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=248] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=248] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=249] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=249] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=249] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=249] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=249] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=222, chan=250] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=250] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=222, chan=250] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=250] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=250] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=251] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=251] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=251] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=251] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=251] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=222, chan=252] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=252] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=222, chan=252] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=252] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=252] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=253] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=253] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=253] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=253] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=253] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=222, chan=254] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=254] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=222, chan=254] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=254] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=254] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=255] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=255] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=255] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=255] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=255] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=222, chan=256] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=256] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=222, chan=256] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=256] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=256] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=257] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=257] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=257] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=257] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=257] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=222, chan=258] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=258] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=222, chan=258] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=258] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=258] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=259] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=259] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=259] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=259] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=259] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=222, chan=260] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=260] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=222, chan=260] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=260] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=260] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=261] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=261] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=261] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=261] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=261] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=222, chan=262] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=262] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=222, chan=262] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=262] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=262] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=263] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=263] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=263] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=263] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=263] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=222, chan=264] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=264] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=222, chan=264] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=264] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=264] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=265] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=265] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=265] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=265] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=265] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=222, chan=266] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=266] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=222, chan=266] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=266] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=266] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=267] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=267] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=267] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=267] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=267] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=222, chan=268] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=268] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=222, chan=268] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=268] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=268] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=269] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=269] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=269] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=269] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=269] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=222, chan=270] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=270] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=222, chan=270] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=270] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=270] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=271] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=271] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=271] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=271] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=271] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=222, chan=272] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=272] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=222, chan=272] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=272] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=272] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=273] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=273] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=273] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=273] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=273] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=222, chan=274] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=274] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=222, chan=274] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=274] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=274] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=275] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=275] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=275] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=275] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=275] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=222, chan=276] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=276] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=222, chan=276] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=276] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=276] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=277] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=277] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=277] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=277] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=277] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=222, chan=278] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=278] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=222, chan=278] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=278] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=278] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=279] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=279] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=279] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=279] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=279] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=222, chan=280] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=280] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=222, chan=280] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=280] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=280] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=281] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=281] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=281] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=281] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=281] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=222, chan=282] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=282] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=222, chan=282] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=282] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=282] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=283] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=283] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=283] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=283] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=283] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=222, chan=284] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=284] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=222, chan=284] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=284] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=284] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=285] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=285] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=285] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=285] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=285] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=222, chan=286] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=286] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=222, chan=286] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=286] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=286] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=287] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=287] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=287] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=287] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=287] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=222, chan=288] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=288] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=222, chan=288] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=288] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=288] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=289] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=289] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=289] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=289] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=289] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=222, chan=290] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=290] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=222, chan=290] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=290] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=290] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=291] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=291] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=291] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=291] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=291] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=222, chan=292] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=292] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=222, chan=292] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=292] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=292] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=293] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=293] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=293] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=293] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=293] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=222, chan=294] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=294] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=222, chan=294] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=294] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=294] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=295] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=295] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=295] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=295] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=295] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=222, chan=296] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=296] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=222, chan=296] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=296] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=296] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=297] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=297] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=297] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=297] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=297] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=222, chan=298] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=298] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=222, chan=298] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=298] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=298] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=299] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=299] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=299] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=299] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=299] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=222, chan=300] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=300] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=222, chan=300] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=300] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=300] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=301] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=301] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=301] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=301] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=301] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=222, chan=302] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=302] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=222, chan=302] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=302] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=302] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=303] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=303] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=303] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=303] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=303] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=222, chan=304] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=304] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=222, chan=304] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=304] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=304] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=305] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=305] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=305] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=305] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=305] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=222, chan=306] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=306] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=222, chan=306] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=306] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=306] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=307] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=307] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=307] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=307] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=307] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=222, chan=308] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=308] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=222, chan=308] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=308] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=308] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=309] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=309] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=309] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=309] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=309] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=222, chan=310] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=310] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=222, chan=310] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=310] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=310] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_shaper.py::test_qos_shaper[L3] | 180.30 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15282' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_shaper[L3]">Starting testcase:test_qos_shaper[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=222, chan=311] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=223] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=223] Local address: 172.17.0.4, port 51578 INFO asyncssh:logging.py:92 [conn=223] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=223] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=223] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:32:06 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=223, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=2] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:32:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=223, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=223, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=223, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=223, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=223, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=7] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 60:0 30:1 0:2 32:3 10:4 22:5 39:6 47:7 INFO asyncssh:logging.py:92 [conn=223, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=8] Command: dcb app add dev swp1 dscp-prio 60:0 30:1 0:2 32:3 10:4 22:5 39:6 47:7 INFO asyncssh:logging.py:92 [conn=223, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=9] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=223, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=10] Command: dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=223, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[0,2],[10,4],[22,5],[30,1],[32,3],[39,6],[47,7],[60,0]]} INFO asyncssh:logging.py:92 [conn=223, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=223, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=12] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=223, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=223, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=14] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=223, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=223, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13955241,"packets":107591,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2609605,"packets":22263,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1794523,"packets":14712,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2753923,"packets":23340,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6797190,"packets":47276,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":9530,"packets":67,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2004,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3842,"packets":31,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":854,"packets":9,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4760,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4760,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=223, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":13959272,"packets":107615,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2609842,"packets":22264,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1794523,"packets":14712,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2753923,"packets":23340,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6800984,"packets":47299,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":9768,"packets":68,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2242,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":370013696,"packets":722683,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":370014208,"packets":722684,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":370013696,"packets":722683,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":370013696,"packets":722683,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":370014208,"packets":722684,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":370018550,"packets":722717,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":370014550,"packets":722692,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":370013696,"packets":722683,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4998,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4998,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2279e70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 722684 Rx 722684 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 722683 Rx 722683 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 722683 Rx 722683 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 722684 Rx 722684 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 722683 Rx 722683 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 722683 Rx 722683 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 722683 Rx 722683 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 722684 Rx 722684 Loss 0.000 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=223, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=223, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=223, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=223, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=24] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=223, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=223, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=26] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=223, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=223, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=223, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=223, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=48] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=48] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=48] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=50] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=50] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=50] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=52] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=52] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=52] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=54] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=54] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=54] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=56] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=56] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=58] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=58] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=60] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=60] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=62] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=62] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=223, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=64] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=223, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=223, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=66] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=223, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=223, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=68] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=223, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=223, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=70] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=223, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=223, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=72] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=223, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=223, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=74] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=223, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=223, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=76] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=223, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=223, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=78] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=223, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=223, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=80] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=223, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=223, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=82] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=223, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=223, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=84] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=223, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=223, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=86] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=223, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=223, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=88] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=223, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=223, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=90] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=223, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=223, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=92] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=223, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=223, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=94] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=223, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=223, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=96] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=223, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=223, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=98] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=223, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=223, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=100] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=223, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=223, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=102] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=223, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=223, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=104] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=223, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=223, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=106] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=223, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=223, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=108] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=223, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=223, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=110] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=223, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=223, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=112] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=223, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=223, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=114] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=223, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=223, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=116] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=223, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=223, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=118] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=223, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=223, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=120] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=223, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=223, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=122] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=223, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=223, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=124] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=223, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=223, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=126] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=223, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=223, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=223, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=223, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=130] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=223, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=223, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=132] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=223, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=223, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=134] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=223, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=223, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=136] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=223, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=223, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=138] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=223, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=223, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=140] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=223, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=223, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=142] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=223, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=223, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=144] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=223, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=223, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=146] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=223, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=223, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=148] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=223, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=223, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=150] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=223, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=223, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=152] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=223, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=223, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=154] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=223, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=223, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=156] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=223, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=223, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=158] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=223, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=158] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 89Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 67Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 99Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 68Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 76Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 69Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 89Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 96Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=223, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=160] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 89Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 67Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 99Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 68Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 76Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 69Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 89Mbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 96Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=223, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=160] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=162] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=162] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":8500000,"burst":1048568,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":8375000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":9500000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":12375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":12000000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":8625000,"burst":1048575,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=223, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=163] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=164] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=164] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14067450,"packets":108640,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2651308,"packets":22673,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1796965,"packets":14737,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2773625,"packets":23519,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6845552,"packets":47711,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":9838,"packets":69,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":8500000,"burst":1048568,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":8375000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":9500000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":12375000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":12000000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":8625000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4998,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4998,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=223, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=165] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=166] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=166] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14071329,"packets":108662,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2651545,"packets":22674,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1796965,"packets":14737,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2777051,"packets":23538,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6845768,"packets":47713,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10314,"packets":71,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":238,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":8500000,"burst":1048568,"lat":0},"bytes":238785024,"packets":466377,"drops":167829,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":8375000,"burst":1048575,"lat":0},"bytes":235325952,"packets":459621,"drops":177347,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0},"bytes":312253952,"packets":609871,"drops":49399,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":9500000,"burst":1048572,"lat":0},"bytes":266777088,"packets":521049,"drops":131319,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":12375000,"burst":1048570,"lat":0},"bytes":321149440,"packets":627245,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0},"bytes":312254190,"packets":609872,"drops":40461,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":12000000,"burst":1048572,"lat":0},"bytes":336711168,"packets":657639,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":8625000,"burst":1048575,"lat":0},"bytes":242311680,"packets":473265,"drops":184940,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5236,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5236,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":44774,"packets":504,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31906,"packets":314,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":42862,"packets":476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30607,"packets":284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":26668,"packets":280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":31730,"packets":320,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1dd4fa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825125 Rx 627245 Loss 23.982 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825125 Rx 521049 Loss 36.852 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825125 Rx 473265 Loss 42.643 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825125 Rx 459621 Loss 44.297 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825125 Rx 466377 Loss 43.478 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825125 Rx 609871 Loss 26.087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825125 Rx 657639 Loss 20.298 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 825126 Rx 609871 Loss 26.088 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_shaper[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py INFO asyncssh:logging.py:92 [conn=223, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=167] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=223, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=168] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=223, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=168] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=169] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=170] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=170] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=170] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:35:04 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=223, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=171] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=223, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=172] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=223, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=172] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":318,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=223, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=173] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=223, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=174] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=223, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=174] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=175] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=176] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=176] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:35:04 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=223, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=177] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=178] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=178] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=178] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":8500000,"burst":1048568,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":8375000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":9500000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":12375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":12000000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":8625000,"burst":1048575,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=223, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=179] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=223, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=180] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=223, chan=180] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=180] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=181] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=223, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=182] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=223, chan=182] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=182] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=183] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=184] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=184] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=184] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=185] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=186] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=186] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=186] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=187] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=188] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=188] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=188] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=189] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=190] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=190] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=191] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=192] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=192] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=192] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=193] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=194] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=194] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=194] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=195] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=196] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=196] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=196] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=197] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=198] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=198] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=198] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=199] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=223, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=200] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=223, chan=200] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=200] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=201] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=201] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=201] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=201] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=223, chan=202] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=202] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=223, chan=202] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=202] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=202] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=203] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=203] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=203] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=203] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=203] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=204] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=204] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=204] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=204] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=204] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=205] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=205] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=205] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=205] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=205] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=206] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=206] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=206] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=206] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=206] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=207] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=207] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=207] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=207] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=207] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=208] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=208] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=208] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=208] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=208] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=209] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=209] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=209] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=209] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=209] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=210] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=210] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=210] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=210] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=210] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=211] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=211] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=211] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=211] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=211] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=212] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=212] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=212] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=212] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=212] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=213] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=213] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=213] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=213] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=213] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=214] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=214] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=214] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=214] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=214] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=215] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=215] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=215] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=215] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=215] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=216] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=216] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=216] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=216] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=216] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=217] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=217] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=217] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=217] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=217] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=218] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=218] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=223, chan=218] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=218] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=218] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=219] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=219] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=219] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=219] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=219] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=223, chan=220] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=220] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=223, chan=220] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=220] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=220] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=221] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=221] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=221] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=221] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=221] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=223, chan=222] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=222] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=223, chan=222] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=222] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=222] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=223] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=223] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=223] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=223] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=223] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=223, chan=224] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=224] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=223, chan=224] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=224] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=224] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=225] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=225] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=225] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=225] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=225] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=223, chan=226] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=226] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=223, chan=226] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=226] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=226] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=227] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=227] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=227] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=227] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=227] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=223, chan=228] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=228] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=223, chan=228] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=228] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=228] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=229] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=229] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=229] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=229] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=229] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=223, chan=230] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=230] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=223, chan=230] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=230] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=230] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=231] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=231] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=231] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=231] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=231] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=223, chan=232] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=232] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=223, chan=232] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=232] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=232] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=233] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=233] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=233] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=233] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=233] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=223, chan=234] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=234] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=223, chan=234] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=234] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=234] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=235] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=235] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=235] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=235] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=235] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=223, chan=236] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=236] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=223, chan=236] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=236] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=236] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=237] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=237] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=237] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=237] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=237] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=223, chan=238] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=238] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=223, chan=238] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=238] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=238] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=239] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=239] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=239] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=239] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=239] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=223, chan=240] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=240] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=223, chan=240] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=240] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=240] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=241] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=241] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=241] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=241] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=241] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=223, chan=242] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=242] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=223, chan=242] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=242] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=242] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=243] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=243] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=243] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=243] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=243] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=223, chan=244] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=244] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=223, chan=244] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=244] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=244] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=245] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=245] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=245] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=245] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=245] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=223, chan=246] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=246] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=223, chan=246] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=246] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=246] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=247] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=247] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=247] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=247] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=247] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=223, chan=248] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=248] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=223, chan=248] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=248] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=248] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=249] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=249] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=249] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=249] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=249] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=223, chan=250] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=250] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=223, chan=250] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=250] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=250] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=251] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=251] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=251] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=251] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=251] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=223, chan=252] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=252] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=223, chan=252] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=252] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=252] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=253] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=253] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=253] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=253] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=253] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=223, chan=254] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=254] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=223, chan=254] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=254] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=254] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=255] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=255] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=255] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=255] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=255] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=223, chan=256] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=256] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=223, chan=256] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=256] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=256] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=257] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=257] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=257] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=257] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=257] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=223, chan=258] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=258] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=223, chan=258] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=258] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=258] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=259] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=259] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=259] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=259] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=259] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=223, chan=260] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=260] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=223, chan=260] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=260] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=260] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=261] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=261] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=261] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=261] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=261] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=223, chan=262] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=262] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=223, chan=262] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=262] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=262] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=263] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=263] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=263] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=263] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=263] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=223, chan=264] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=264] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=223, chan=264] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=264] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=264] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=265] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=265] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=265] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=265] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=265] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=223, chan=266] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=266] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=223, chan=266] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=266] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=266] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=267] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=267] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=267] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=267] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=267] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=223, chan=268] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=268] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=223, chan=268] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=268] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=268] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=269] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=269] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=269] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=269] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=269] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=223, chan=270] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=270] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=223, chan=270] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=270] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=270] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=271] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=271] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=271] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=271] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=271] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=223, chan=272] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=272] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=223, chan=272] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=272] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=272] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=273] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=273] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=273] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=273] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=273] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=223, chan=274] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=274] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=223, chan=274] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=274] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=274] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=275] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=275] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=275] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=275] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=275] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=223, chan=276] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=276] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=223, chan=276] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=276] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=276] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=277] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=277] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=277] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=277] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=277] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=223, chan=278] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=278] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=223, chan=278] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=278] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=278] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=279] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=279] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=279] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=279] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=279] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=223, chan=280] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=280] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=223, chan=280] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=280] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=280] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=281] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=281] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=281] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=281] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=281] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=223, chan=282] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=282] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=223, chan=282] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=282] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=282] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=283] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=283] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=283] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=283] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=283] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=223, chan=284] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=284] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=223, chan=284] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=284] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=284] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=285] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=285] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=285] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=285] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=285] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=223, chan=286] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=286] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=223, chan=286] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=286] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=286] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=287] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=287] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=287] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=287] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=287] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=223, chan=288] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=288] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=223, chan=288] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=288] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=288] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=289] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=289] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=289] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=289] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=289] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=223, chan=290] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=290] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=223, chan=290] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=290] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=290] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=291] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=291] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=291] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=291] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=291] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=223, chan=292] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=292] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=223, chan=292] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=292] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=292] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=293] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=293] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=293] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=293] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=293] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=223, chan=294] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=294] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=223, chan=294] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=294] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=294] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=295] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=295] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=295] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=295] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=295] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=223, chan=296] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=296] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=223, chan=296] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=296] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=296] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=297] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=297] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=297] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=297] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=297] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=223, chan=298] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=298] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=223, chan=298] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=298] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=298] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=299] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=299] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=299] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=299] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=299] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=223, chan=300] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=300] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=223, chan=300] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=300] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=300] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=301] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=301] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=301] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=301] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=301] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=223, chan=302] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=302] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=223, chan=302] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=302] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=302] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=303] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=303] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=303] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=303] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=303] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=223, chan=304] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=304] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=223, chan=304] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=304] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=304] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=305] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=305] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=305] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=305] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=305] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=223, chan=306] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=306] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=223, chan=306] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=306] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=306] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=307] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=307] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=307] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=307] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=307] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=223, chan=308] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=308] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=223, chan=308] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=308] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=308] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=309] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=309] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=309] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=309] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=309] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=223, chan=310] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=310] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=223, chan=310] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=310] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=310] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[sp-L2] | 142.60 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15605' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[sp-L2]">Starting testcase:test_qos_trust_mode[sp-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=223, chan=311] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=224] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=224] Local address: 172.17.0.4, port 59554 INFO asyncssh:logging.py:92 [conn=224] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=224] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=224] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:35:06 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=224, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=2] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:35:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=224, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=224, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=224, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=224, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=224, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 INFO asyncssh:logging.py:92 [conn=224, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=8] Command: bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 INFO asyncssh:logging.py:92 [conn=224, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2403 && bridge vlan add dev swp2 vid 2403 INFO asyncssh:logging.py:92 [conn=224, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=10] Command: bridge vlan add dev swp1 vid 2403 && bridge vlan add dev swp2 vid 2403 INFO asyncssh:logging.py:92 [conn=224, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=224, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=12] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=224, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=224, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=14] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=224, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=224, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=224, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 2403, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 2403, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a25b8880>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2154782 Rx 2154782 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2154781 Rx 2154781 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2154781 Rx 2154781 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2154781 Rx 2154781 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2154781 Rx 2154781 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2154781 Rx 2154781 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2154781 Rx 2154781 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2154781 Rx 2154781 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] PCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 0 | 0 | 344.19 | 0.00 | 24.45 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 1 | 344.19 | 0.00 | 24.45 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 2 | 2 | 344.19 | 0.00 | 24.45 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 3 | 3 | 344.19 | 0.00 | 24.45 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 4 | 4 | 344.19 | 0.00 | 24.45 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 344.19 | 0.00 | 24.45 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 6 | 6 | 344.19 | 0.00 | 24.45 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 7 | 7 | 344.19 | 0.00 | 24.45 | True INFO asyncssh:logging.py:92 [conn=224, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=224, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=18] Command: tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=224, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2128,"packets":11,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103247872,"packets":2154781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103247872,"packets":2154781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103247872,"packets":2154781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103247872,"packets":2154781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103247872,"packets":2154781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103252800,"packets":2154804,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103248232,"packets":2154785,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1103247872,"packets":2154781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT aggregation 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT aggregation 1] 8 | 0 | 1103252800 | 344.19 | 344.19 | 0.0 | 24.45 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 7 | 1 | 1103247872 | 344.19 | 344.19 | 0.0 | 24.45 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 6 | 2 | 1103247872 | 344.19 | 344.19 | 0.0 | 24.45 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 5 | 3 | 1103247872 | 344.19 | 344.19 | 0.0 | 24.45 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 4 | 4 | 1103247872 | 344.19 | 344.19 | 0.0 | 24.45 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 3 | 5 | 1103247872 | 344.19 | 344.19 | 0.0 | 24.45 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 2 | 6 | 1103247872 | 344.19 | 344.19 | 0.0 | 24.45 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 1 | 7 | 1103248232 | 344.19 | 344.19 | 0.0 | 24.45 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[sp-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=224, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=19] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=224, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=20] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=224, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:37:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=224, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=224, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=224, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":319,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=224, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=224, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=224, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=28] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:37:27 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=224, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=224, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=224, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=224, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=224, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=224, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=224, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=224, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=224, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=224, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=224, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=224, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=56] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=56] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=58] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=58] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=60] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=60] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=62] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=62] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=64] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=64] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=66] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=66] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=68] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=68] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=70] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=224, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=70] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=224, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=72] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=224, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=224, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=74] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=224, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=224, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=76] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=224, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=224, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=78] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=224, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=224, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=80] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=224, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=224, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=82] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=224, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=224, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=84] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=224, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=224, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=86] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=224, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=224, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=88] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=224, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=224, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=90] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=224, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=224, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=92] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=224, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=224, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=94] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=224, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=224, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=96] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=224, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=224, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=98] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=224, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=224, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=100] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=224, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=224, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=102] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=224, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=224, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=104] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=224, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=224, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=106] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=224, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=224, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=108] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=224, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=224, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=110] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=224, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=224, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=112] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=224, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=224, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=114] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=224, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=224, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=116] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=224, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=224, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=118] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=224, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=224, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=120] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=224, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=224, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=122] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=224, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=224, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=124] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=224, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=224, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=126] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=224, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=224, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=128] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=224, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=224, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=130] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=224, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=224, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=132] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=224, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=224, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=134] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=224, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=224, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=224, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=224, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=224, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=224, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=224, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=224, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=224, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=224, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=224, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=224, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=224, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=224, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=224, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=224, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=224, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=224, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=224, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=224, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=224, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=224, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=224, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=224, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=224, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=224, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=224, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=224, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=224, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[sp-L3] | 141.15 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15780' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[sp-L3]">Starting testcase:test_qos_trust_mode[sp-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=224, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=225] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=225] Local address: 172.17.0.4, port 54896 INFO asyncssh:logging.py:92 [conn=225] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=225] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=225] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:37:29 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=225, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=2] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:37:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=225, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=225, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=225, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=225, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=225, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=7] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 56:0 10:1 37:2 42:3 53:4 62:5 34:6 13:7 INFO asyncssh:logging.py:92 [conn=225, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=8] Command: dcb app add dev swp1 dscp-prio 56:0 10:1 37:2 42:3 53:4 62:5 34:6 13:7 INFO asyncssh:logging.py:92 [conn=225, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=9] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=225, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=10] Command: dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=225, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[10,1],[13,7],[34,6],[37,2],[42,3],[53,4],[56,0],[62,5]]} INFO asyncssh:logging.py:92 [conn=225, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=225, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=12] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=225, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=225, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=14] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=225, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a25c0040>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156992 Rx 2156992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156991 Rx 2156991 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156992 Rx 2156992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156992 Rx 2156992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156992 Rx 2156992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156992 Rx 2156992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156992 Rx 2156992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2156992 Rx 2156992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 56 | 0 | 344.19 | 0.00 | 24.48 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 10 | 1 | 344.19 | 0.00 | 24.48 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 37 | 2 | 344.19 | 0.00 | 24.48 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 42 | 3 | 344.19 | 0.00 | 24.48 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 53 | 4 | 344.19 | 0.00 | 24.48 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 62 | 5 | 344.19 | 0.00 | 24.48 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 34 | 6 | 344.19 | 0.00 | 24.48 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 13 | 7 | 344.19 | 0.00 | 24.48 | True INFO asyncssh:logging.py:92 [conn=225, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=225, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=18] Command: tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=225, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2242,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104379904,"packets":2156992,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104379904,"packets":2156992,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104379904,"packets":2156992,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104379904,"packets":2156992,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104379904,"packets":2156992,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104384246,"packets":2157025,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104380246,"packets":2157000,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1104379904,"packets":2156992,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT aggregation 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT aggregation 1] 8 | 0 | 1104384246 | 344.19 | 344.19 | 0.0 | 24.48 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 7 | 1 | 1104379904 | 344.19 | 344.19 | 0.0 | 24.48 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 6 | 2 | 1104379904 | 344.19 | 344.19 | 0.0 | 24.48 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 5 | 3 | 1104379904 | 344.19 | 344.19 | 0.0 | 24.48 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 4 | 4 | 1104379904 | 344.19 | 344.19 | 0.0 | 24.48 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 3 | 5 | 1104379904 | 344.19 | 344.19 | 0.0 | 24.48 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 2 | 6 | 1104379904 | 344.19 | 344.19 | 0.0 | 24.48 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 1 | 7 | 1104380246 | 344.19 | 344.19 | 0.0 | 24.48 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[sp-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=225, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=19] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=225, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=20] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=225, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:39:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=225, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=225, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=225, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":320,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=225, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=225, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=225, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=28] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:39:48 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=225, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=225, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=225, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=225, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=225, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=225, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=225, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=225, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=225, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=225, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=56] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=56] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=58] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=58] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=60] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=60] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=62] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=62] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=64] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=64] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=66] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=66] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=68] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=68] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=70] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=225, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=70] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=225, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=72] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=225, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=225, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=74] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=225, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=225, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=76] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=225, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=225, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=78] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=225, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=225, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=80] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=225, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=225, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=82] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=225, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=225, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=84] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=225, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=225, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=86] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=225, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=225, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=88] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=225, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=225, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=90] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=225, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=225, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=92] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=225, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=225, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=94] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=225, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=225, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=96] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=225, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=225, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=98] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=225, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=225, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=100] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=225, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=225, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=102] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=225, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=225, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=104] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=225, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=225, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=106] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=225, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=225, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=108] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=225, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=225, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=110] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=225, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=225, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=112] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=225, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=225, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=114] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=225, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=225, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=116] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=225, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=225, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=118] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=225, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=225, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=120] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=225, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=225, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=122] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=225, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=225, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=124] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=225, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=225, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=126] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=225, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=225, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=128] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=225, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=225, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=130] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=225, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=225, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=132] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=225, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=225, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=134] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=225, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=225, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=225, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=225, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=225, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=225, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=225, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=225, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=225, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=225, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=225, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=225, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=225, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=225, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=225, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=225, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=225, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=225, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=225, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=225, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=225, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=225, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=225, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=225, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=225, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=225, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=225, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=225, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=225, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[wrr-L2] | 142.83 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15955' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[wrr-L2]">Starting testcase:test_qos_trust_mode[wrr-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=225, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=226] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=226] Local address: 172.17.0.4, port 37948 INFO asyncssh:logging.py:92 [conn=226] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=226] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=226] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:39:50 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=2] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:39:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=226, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=226, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=226, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=226, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=226, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 INFO asyncssh:logging.py:92 [conn=226, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=8] Command: bridge vlan delete dev swp1 vid 1 && bridge vlan delete dev swp2 vid 1 INFO asyncssh:logging.py:92 [conn=226, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 748 && bridge vlan add dev swp2 vid 748 INFO asyncssh:logging.py:92 [conn=226, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=10] Command: bridge vlan add dev swp1 vid 748 && bridge vlan add dev swp2 vid 748 INFO asyncssh:logging.py:92 [conn=226, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 quanta 8 8 7 7 6 6 3 2 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=226, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=12] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 quanta 8 8 7 7 6 6 3 2 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=226, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=226, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=14] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=226, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[8,8,7,7,6,6,3,2],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 748, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 748, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a25c33d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2151859 Rx 2151859 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2151859 Rx 2151859 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2151859 Rx 2151859 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2151859 Rx 2151859 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2151859 Rx 2151859 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2151859 Rx 2151859 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2151859 Rx 2151859 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2151858 Rx 2151858 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] PCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 0 | 0 | 344.17 | 0.00 | 24.42 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 1 | 344.17 | 0.00 | 24.42 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 2 | 2 | 344.17 | 0.00 | 24.42 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 3 | 3 | 344.17 | 0.00 | 24.42 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 4 | 4 | 344.17 | 0.00 | 24.42 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 344.17 | 0.00 | 24.42 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 6 | 6 | 344.17 | 0.00 | 24.42 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 7 | 7 | 344.17 | 0.00 | 24.42 | True INFO asyncssh:logging.py:92 [conn=226, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=226, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=18] Command: tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=226, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[8,8,7,7,6,6,3,2],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2032,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1101751808,"packets":2151859,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1101751808,"packets":2151859,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1101751808,"packets":2151859,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1101751808,"packets":2151859,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1101751808,"packets":2151859,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1101756098,"packets":2151880,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1101751566,"packets":2151861,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1101751808,"packets":2151859,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT aggregation 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT aggregation 1] 8 | 0 | 1101756098 | 344.17 | 344.17 | 0.0 | 24.42 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 7 | 1 | 1101751808 | 344.17 | 344.17 | 0.0 | 24.42 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 6 | 2 | 1101751808 | 344.17 | 344.17 | 0.0 | 24.42 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 5 | 3 | 1101751808 | 344.17 | 344.17 | 0.0 | 24.42 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 4 | 4 | 1101751808 | 344.17 | 344.17 | 0.0 | 24.42 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 3 | 5 | 1101751808 | 344.17 | 344.17 | 0.0 | 24.42 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 2 | 6 | 1101751808 | 344.17 | 344.17 | 0.0 | 24.42 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 1 | 7 | 1101751566 | 344.17 | 344.17 | 0.0 | 24.42 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[wrr-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=226, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=19] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=226, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=20] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=226, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:42:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=226, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=226, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=226, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":321,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=226, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=226, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=226, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=28] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:42:11 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=226, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[8,8,7,7,6,6,3,2],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=226, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=226, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=226, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=226, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=226, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=226, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=226, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=226, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=226, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=56] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=56] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=58] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=58] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=60] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=60] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=62] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=62] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=64] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=64] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=66] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=66] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=68] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=68] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=70] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=226, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=70] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=226, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=72] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=226, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=226, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=74] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=226, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=226, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=76] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=226, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=226, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=78] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=226, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=226, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=80] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=226, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=226, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=82] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=226, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=226, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=84] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=226, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=226, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=86] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=226, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=226, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=88] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=226, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=226, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=90] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=226, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=226, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=92] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=226, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=226, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=94] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=226, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=226, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=96] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=226, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=226, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=98] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=226, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=226, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=100] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=226, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=226, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=102] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=226, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=226, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=104] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=226, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=226, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=106] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=226, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=226, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=108] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=226, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=226, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=110] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=226, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=226, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=112] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=226, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=226, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=114] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=226, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=226, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=116] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=226, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=226, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=118] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=226, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=226, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=120] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=226, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=226, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=122] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=226, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=226, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=124] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=226, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=226, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=126] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=226, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=226, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=128] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=226, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=226, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=130] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=226, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=226, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=132] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=226, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=226, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=134] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=226, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=226, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=226, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=226, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=226, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=226, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=226, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=226, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=226, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=226, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=226, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=226, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=226, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=226, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=226, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=226, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=226, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=226, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=226, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=226, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=226, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=226, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=226, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=226, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=226, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=226, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=226, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=226, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=226, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[wrr-L3] | 144.46 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16130' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[wrr-L3]">Starting testcase:test_qos_trust_mode[wrr-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=227] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=227] Local address: 172.17.0.4, port 36020 INFO asyncssh:logging.py:92 [conn=227] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=227] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=227] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:42:13 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=227, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=1] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=2] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:42:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=227, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=227, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=227, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=227, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=227, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=7] Channel closed DEBUG agg1:Logger.py:156 dcb app add dev swp1 dscp-prio 56:0 54:1 11:2 51:3 1:4 5:5 48:6 25:7 INFO asyncssh:logging.py:92 [conn=227, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=8] Command: dcb app add dev swp1 dscp-prio 56:0 54:1 11:2 51:3 1:4 5:5 48:6 25:7 INFO asyncssh:logging.py:92 [conn=227, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=9] Channel closed DEBUG agg1:Logger.py:156 dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=227, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=10] Command: dcb -j app show dev swp1 dscp-prio INFO asyncssh:logging.py:92 [conn=227, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"dscp_prio":[[1,4],[5,5],[11,2],[25,7],[48,6],[51,3],[54,1],[56,0]]} INFO asyncssh:logging.py:92 [conn=227, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 10 root ets bands 8 quanta 10 10 9 6 5 5 4 3 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=227, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=12] Command: tc qdisc add dev swp2 handle 10 root ets bands 8 quanta 10 10 9 6 5 5 4 3 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=227, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=227, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=14] Command: tc qdisc add dev swp2 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp2 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=227, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,10,9,6,5,5,4,3],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fce830>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2158668 Rx 2158668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2158668 Rx 2158668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2158668 Rx 2158668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2158668 Rx 2158668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2158668 Rx 2158668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2158668 Rx 2158668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2158668 Rx 2158668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 2158669 Rx 2158669 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 56 | 0 | 344.19 | 0.00 | 24.50 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 54 | 1 | 344.19 | 0.00 | 24.50 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 11 | 2 | 344.19 | 0.00 | 24.50 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 51 | 3 | 344.19 | 0.00 | 24.50 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 4 | 344.19 | 0.00 | 24.50 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 344.19 | 0.00 | 24.50 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 48 | 6 | 344.19 | 0.00 | 24.50 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 25 | 7 | 344.19 | 0.00 | 24.50 | True INFO asyncssh:logging.py:92 [conn=227, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=17] Channel closed DEBUG agg1:Logger.py:156 tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=227, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=18] Command: tc -j -s qdisc show dev swp2 INFO asyncssh:logging.py:92 [conn=227, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,10,9,6,5,5,4,3],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2442,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1105238016,"packets":2158668,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1105238016,"packets":2158668,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1105238016,"packets":2158668,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1105238016,"packets":2158668,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1105238016,"packets":2158668,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1105243054,"packets":2158704,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1105239000,"packets":2158678,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1105238016,"packets":2158668,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT aggregation 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT aggregation 1] 8 | 0 | 1105243054 | 344.19 | 344.19 | 0.0 | 24.50 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 7 | 1 | 1105238016 | 344.19 | 344.19 | 0.0 | 24.50 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 6 | 2 | 1105238016 | 344.19 | 344.19 | 0.0 | 24.50 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 5 | 3 | 1105238016 | 344.19 | 344.19 | 0.0 | 24.50 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 4 | 4 | 1105238016 | 344.19 | 344.19 | 0.0 | 24.50 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 3 | 5 | 1105238016 | 344.19 | 344.19 | 0.0 | 24.50 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 2 | 6 | 1105238016 | 344.19 | 344.19 | 0.0 | 24.50 | True INFO DENT:Logger.py:84 [DENT aggregation 1] 1 | 7 | 1105239000 | 344.19 | 344.19 | 0.0 | 24.50 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[wrr-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=227, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=19] Channel closed DEBUG agg1:Logger.py:156 dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=227, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=20] Command: dcb app flush dev swp1 && dcb app flush dev swp2 && dcb app flush dev swp3 && dcb app flush dev swp4 INFO asyncssh:logging.py:92 [conn=227, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:44:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=227, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=227, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=227, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":322,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=227, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=227, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=227, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=28] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:44:35 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=227, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp2","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,10,9,6,5,5,4,3],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp2","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp2","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp2","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp2","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp2","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp2","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp2","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp2","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=227, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=227, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=227, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=227, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=227, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=50] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=227, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=227, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=227, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=227, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=56] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=56] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=58] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=58] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=60] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=60] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=62] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=62] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=64] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=64] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=66] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=66] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=68] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=68] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=70] Command: tc qdisc delete dev swp2 tbf INFO asyncssh:logging.py:92 [conn=227, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=70] Channel closed DEBUG agg1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=227, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=72] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=227, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=227, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=74] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=227, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=227, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=76] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=227, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=227, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=78] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=227, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=227, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=80] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=227, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=227, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=82] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=227, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=227, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=84] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=227, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=227, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=86] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=227, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=227, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=88] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=227, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=227, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=90] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=227, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=227, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=92] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=227, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=227, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=94] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=227, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=227, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=96] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=227, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=227, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=98] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=227, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=227, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=100] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=227, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=227, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=102] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=227, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=227, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=104] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=227, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=227, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=106] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=227, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=227, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=108] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=227, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=227, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=110] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=227, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=227, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=112] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=227, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=227, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=114] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=227, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=227, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=116] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=227, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=227, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=118] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=227, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=227, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=120] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=227, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=227, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=122] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=227, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=227, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=124] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=227, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=227, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=126] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=227, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=227, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=128] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=227, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=227, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=130] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=227, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=227, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=132] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=227, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=227, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=134] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=227, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=227, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=227, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=227, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=227, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=227, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=227, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=227, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=227, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=227, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=227, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=227, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=227, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=227, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=227, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=227, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=227, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=227, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=227, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=227, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=227, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=227, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=227, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=227, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=227, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=227, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=227, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=227, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=227, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py::test_storm_control_br_and_mc_lag_and_vlan_membership | 218.63 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_br_and_mc_lag_and_vlan_membership">Starting testcase:test_storm_control_br_and_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16306' coro=<test_storm_control_br_and_mc_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=227, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=228] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=228] Local address: 172.17.0.4, port 34246 INFO asyncssh:logging.py:92 [conn=228] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=228] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=228] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:44:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=228, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=228, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=228, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=228, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=4] Command: ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=228, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=228, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=228, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=228, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=8] Command: ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=228, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=228, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=228, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=228, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=228, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=228, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=228, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=228, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=16] Command: ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=228, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=228, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=228, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=228, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=228, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=228, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=22] Command: bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=228, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=228, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=228, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=26] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=27] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=28] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=28] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=29] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 12010 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=30] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 12010 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=31] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=32] Command: devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=32] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":12010}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=33] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 42099 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=34] Command: devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 42099 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=35] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=36] Command: devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=36] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":42099}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=37] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=38] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=39] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=40] Command: devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=40] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=41] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=42] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=43] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=44] Command: devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=44] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=45] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=46] Command: devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=47] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=48] Command: devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=48] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=49] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=50] Command: devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=51] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=52] Command: devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=52] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/4":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_br INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1f9ad10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 550401 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 12055318 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=228, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=53] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=228, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=228, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=54] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":12010}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":42099}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=55] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=56] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=57] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=58] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=59] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=60] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=60] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_br_and_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=228, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=61] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=62] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:48:11 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=228, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=228, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=228, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":323,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":324,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":325,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":86.90,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=228, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=228, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=228, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=228, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=228, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=228, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=69] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=70] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:48:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=228, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=71] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=72] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:48:16 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=228, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=228, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=228, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=74] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":325,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=228, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=228, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=228, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=76] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py::test_storm_control_br_and_unk_un_and_vlan_membership | 209.47 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_br_and_unk_un_and_vlan_membership">Starting testcase:test_storm_control_br_and_unk_un_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16395' coro=<test_storm_control_br_and_unk_un_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=228, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=229] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=229] Local address: 172.17.0.4, port 41240 INFO asyncssh:logging.py:92 [conn=229] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=229] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=229] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:48:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=229, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=229, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=4] Command: ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=229, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=229, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=8] Command: ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=229, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=229, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=229, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=229, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=229, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=229, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=229, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=16] Command: ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=229, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=229, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=22] Command: bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=26] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=27] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=28] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=28] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=29] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=30] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=31] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=32] Command: devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=32] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=33] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=34] Command: devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=35] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=36] Command: devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=36] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=37] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=38] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=39] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=40] Command: devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=40] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=41] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=42] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=43] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=44] Command: devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=44] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=45] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 20511 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=46] Command: devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 20511 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=47] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=48] Command: devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=48] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":20511}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=49] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=50] Command: devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=51] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=52] Command: devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=52] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/4":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_br INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2078be0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 16166666 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 576753 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=229, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=53] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=229, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=229, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=54] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":20511}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=55] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=56] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=57] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=58] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=59] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=60] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=60] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_br_and_unk_un_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=61] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=62] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:51:40 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=229, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=229, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=229, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":326,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":327,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":328,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":96.61,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=229, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=229, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=229, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=229, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=229, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=69] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=70] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:51:41 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=229, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=71] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=72] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:51:45 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=229, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=229, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=229, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=74] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":328,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=229, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=229, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=229, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=76] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_broadcast_traffic.py::test_storm_control_broadcast_traffic | 160.07 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_broadcast_traffic">Starting testcase:test_storm_control_broadcast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16483' coro=<test_storm_control_broadcast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=230] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=230] Local address: 172.17.0.4, port 34196 INFO asyncssh:logging.py:92 [conn=230] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=230] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=230] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:51:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=230, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=230, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=230, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=230, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=230, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=7] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=8] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=8] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=230, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 118227 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=10] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 118227 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=12] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118227}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fccc10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 9721190 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 957180 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 957205 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 957203 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=230, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=230, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=230, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=14] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118227}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=230, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=16] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=18] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=20] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=22] Command: devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=22] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_broadcast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=230, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=24] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:54:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=230, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=26] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:54:25 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=230, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=230, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=230, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":329,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=230, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=230, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=230, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=30] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_interaction_policer_rules.py::test_storm_control_interaction_policer_rules | 259.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16584' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_interaction_policer_rules">Starting testcase:test_storm_control_interaction_policer_rules from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_policer_rules.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=231, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=232] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=232] Local address: 172.17.0.4, port 40644 INFO asyncssh:logging.py:92 [conn=232] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=232] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=232] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:58:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=232, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=232, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=232, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=232, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=232, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=232, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=232, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=232, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=232, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=232, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=8] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 04:58:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=232, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=232, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=232, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 37686 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=12] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 37686 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=14] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=14] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37686}]}]}} INFO asyncssh:logging.py:92 [conn=232, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 109413 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=16] Command: devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 109413 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=18] Command: devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=18] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":109413}]}]}} INFO asyncssh:logging.py:92 [conn=232, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 75373 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=20] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 75373 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=22] Command: devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=22] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75373}]}]}} INFO asyncssh:logging.py:92 [conn=232, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=23] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 ingress && tc qdisc add dev swp2 ingress && tc qdisc add dev swp3 ingress INFO asyncssh:logging.py:92 [conn=232, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=24] Command: tc qdisc add dev swp1 ingress && tc qdisc add dev swp2 ingress && tc qdisc add dev swp3 ingress INFO asyncssh:logging.py:92 [conn=232, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=26] Command: tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp2 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=28] Command: tc filter add dev swp2 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp3 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=30] Command: tc filter add dev swp3 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=232, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=31] Channel closed DEBUG agg1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=232, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=32] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=232, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=32] Channel closed DEBUG agg1:Logger.py:156 4067 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=232, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc filter delete dev swp1 ingress pref 49152 && tc filter delete dev swp2 ingress pref 49152 && tc filter delete dev swp3 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=232, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=34] Command: tc filter delete dev swp1 ingress pref 49152 && tc filter delete dev swp2 ingress pref 49152 && tc filter delete dev swp3 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=232, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=232, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=36] Command: ip link add br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=232, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=36] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=232, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=38] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=232, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=232, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=40] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=232, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=42] Command: tc filter add dev swp1 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp2 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=44] Command: tc filter add dev swp2 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc filter add dev swp3 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=46] Command: tc filter add dev swp3 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2283970>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 18856792 Rx 13849 Frames Delta 18842943 Loss 99.927 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 18856792 Rx 13827 Frames Delta 18842965 Loss 99.927 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 4714198 Rx 13145 Frames Delta 4701053 Loss 99.721 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp4 Tx 4714198 Rx 4714196 Frames Delta 2 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp2 Tx 4714198 Rx 4714196 Frames Delta 2 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp1 Tx 4714198 Rx 4714196 Frames Delta 2 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=232, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=47] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=232, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=48] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=232, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=48] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37686}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":109413}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75373}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=232, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=49] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=50] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=51] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=52] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=52] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=53] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=54] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=54] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_interaction_policer_rules from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_policer_rules.py INFO asyncssh:logging.py:92 [conn=232, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=55] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=232, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=232, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=57] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=58] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:03:11 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=232, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=232, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=60] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=232, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=60] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp2","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp3","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=232, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=232, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=62] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=232, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=232, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=64] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=232, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=66] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=68] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=70] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=72] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=74] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=76] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=78] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=80] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=232, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=82] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=232, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=232, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=84] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=232, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=84] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=232, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=86] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=232, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=232, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=88] Command: tc qdisc delete dev swp2 ingress INFO asyncssh:logging.py:92 [conn=232, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=88] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=232, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=90] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=232, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=232, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=92] Command: tc qdisc delete dev swp3 ingress INFO asyncssh:logging.py:92 [conn=232, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=92] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=232, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=94] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=232, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=232, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=96] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=232, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=232, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=98] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=232, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=232, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=100] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=232, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=232, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=102] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=232, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=232, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=104] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=232, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=232, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=106] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=232, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=232, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=108] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=232, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=232, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=110] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=232, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=232, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=112] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=232, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=232, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=114] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=232, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=232, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=116] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=232, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=232, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=118] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=232, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=232, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=120] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=232, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=232, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=122] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=232, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=232, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=124] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=232, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=232, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=126] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=232, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=232, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=128] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=232, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=232, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=130] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=232, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=232, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=132] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=232, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=232, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=134] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=232, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=232, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=136] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=232, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=232, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=138] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=232, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=232, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=140] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=232, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=232, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=142] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=232, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=232, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=144] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=232, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=145] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=232, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=146] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=232, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=146] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=147] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=232, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=148] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=232, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=148] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=149] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=232, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=150] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=232, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=150] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=151] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=232, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=152] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=232, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=152] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=153] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=232, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=154] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=232, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=154] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=155] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=232, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=156] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=232, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=156] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=157] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=232, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=158] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=232, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=158] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=159] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=232, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=160] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=232, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=160] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=161] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=232, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=162] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=232, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=162] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=163] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=232, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=164] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=232, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=164] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=165] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=232, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=166] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=232, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=166] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=167] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=232, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=168] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=232, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=168] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=169] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=232, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=170] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=232, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=170] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=171] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=232, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=172] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=232, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=172] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=173] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=232, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=174] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=232, chan=174] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=174] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=175] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=232, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=176] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=232, chan=176] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=176] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=177] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=232, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=178] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=232, chan=178] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=178] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=179] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=232, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=180] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=232, chan=180] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=180] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=181] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=232, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=182] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=232, chan=182] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=182] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=183] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=232, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=184] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=232, chan=184] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=184] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=232, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=185] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=186] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=186] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=186] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:03:13 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=232, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=187] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=188] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=188] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=188] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:03:16 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=232, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=189] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=232, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=190] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=232, chan=190] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=190] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":331,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=232, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=191] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=232, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=192] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=232, chan=192] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=192] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py::test_storm_control_mc_lag_and_vlan_membership | 200.55 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_mc_lag_and_vlan_membership">Starting testcase:test_storm_control_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16966' coro=<test_storm_control_mc_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=233, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=234] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=234] Local address: 172.17.0.4, port 43486 INFO asyncssh:logging.py:92 [conn=234] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=234] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=234] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:06:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=234, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=234, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=234, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=234, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=4] Command: ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=234, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=234, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=234, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=234, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=8] Command: ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=234, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=234, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=234, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=234, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=234, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=234, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=234, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=234, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=16] Command: ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=234, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=234, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=234, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=234, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=234, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=234, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=22] Command: bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=234, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=234, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=234, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=26] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=27] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=28] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=28] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=234, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=29] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=30] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=31] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=32] Command: devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=32] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=234, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=33] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=34] Command: devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=35] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=36] Command: devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=36] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=234, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=37] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=38] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=39] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=40] Command: devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=40] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=234, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=41] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=42] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=43] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=44] Command: devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=44] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=234, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=45] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=46] Command: devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=47] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=48] Command: devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=48] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=234, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=49] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=50] Command: devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=51] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=52] Command: devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=52] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/4":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_mc_swp4->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_mc_swp4->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_mc_swp4->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1f9ac80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 2134390 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 26691002 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=234, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=53] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=234, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=234, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=54] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=234, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=55] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=56] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=57] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=58] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=59] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=60] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=60] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=61] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=62] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:09:52 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=234, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=234, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=234, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":333,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":334,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":335,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":106.07,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=234, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=234, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=234, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=234, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=234, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=69] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=70] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:09:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=234, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=71] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=72] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:09:58 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=234, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=234, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=234, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=74] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":335,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=234, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=234, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=234, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=76] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_packets.py::test_storm_control_packets | 598.09 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17054' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_packets">Starting testcase:test_storm_control_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=235] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=235] Local address: 172.17.0.4, port 42256 INFO asyncssh:logging.py:92 [conn=235] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=235] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=235] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:09:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=235, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=1] Channel closed DEBUG agg1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=235, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=235, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=235, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=235, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=3] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=235, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=235, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=5] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=235, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=235, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=6] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=8] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:09:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=235, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=235, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=235, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address add 192.168.1.5/24 broadcast 192.168.1.255 dev swp1 && ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp2 INFO asyncssh:logging.py:92 [conn=235, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=12] Command: ip address add 192.168.1.5/24 broadcast 192.168.1.255 dev swp1 && ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp2 INFO asyncssh:logging.py:92 [conn=235, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=14] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=16] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=16] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=18] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=20] Command: devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=20] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=22] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=24] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=24] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_192.168.1.6/24', 'count': 1, 'ip': '192.168.1.6', 'gw': '192.168.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_192.168.1.7/24', 'count': 1, 'ip': '192.168.1.7', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=235, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=25] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=235, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=26] Command: bridge -j vlan show dev swp1 INFO asyncssh:logging.py:92 [conn=235, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=26] Channel closed DEBUG agg1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'bridge -j vlan show dev swp1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=235, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=235, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=28] Command: ip -j address show swp1 INFO asyncssh:logging.py:92 [conn=235, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.5","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT aggregation 1] [{'agg1': {'command': 'ip -j address show swp1 ', 'rc': 0, 'result': '[{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.5","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::36ef:b6ff:feec:3807","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_192.168.1.6/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_192.168.1.7/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=235, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=29] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=235, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=30] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=235, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=30] Channel closed DEBUG agg1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 201 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=235, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=31] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=235, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=32] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=235, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=32] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=235, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=33] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=235, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=34] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=235, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=34] Channel closed DEBUG agg1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 201 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=235, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=35] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=235, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=36] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=235, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=36] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=235, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=37] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=235, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=38] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=235, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=38] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=235, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=39] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=235, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=40] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=235, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=40] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=235, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=41] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=235, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=42] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=235, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=42] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=235, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=43] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=235, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=44] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=235, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=44] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=235, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=45] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=46] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=47] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=48] Command: devlink -j port param show pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=48] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=49] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=50] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=51] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=52] Command: devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=52] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=53] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=54] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=54] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=55] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=56] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=56] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=235, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=57] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=235, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=58] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=235, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=58] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=235, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=59] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=235, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=60] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=235, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=60] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=235, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=61] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=235, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=62] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=235, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=62] Channel closed DEBUG agg1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 202 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=235, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=63] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=235, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=64] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=235, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=64] Channel closed DEBUG agg1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 102 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=235, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=65] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=235, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=66] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=235, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=66] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=235, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=67] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=235, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=68] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=235, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=68] Channel closed DEBUG agg1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 100 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=235, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=69] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=235, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=70] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=235, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=70] Channel closed DEBUG agg1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 101 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=235, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=71] Channel closed DEBUG agg1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=235, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=72] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=235, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=72] Channel closed DEBUG agg1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT aggregation 1] CPU rate 200 expected 200 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=235, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=73] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=235, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=74] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=235, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=74] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=75] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=76] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=76] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=77] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=78] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=78] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=79] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=80] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=80] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_packets.py INFO asyncssh:logging.py:92 [conn=235, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=81] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=235, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=82] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=235, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=82] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=83] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=84] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:19:50 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=235, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=85] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=235, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=86] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=235, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=86] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=87] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=235, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=88] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=235, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=88] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=235, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=89] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=235, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=90] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=235, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=90] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=91] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=92] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:19:52 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py::test_storm_control_unk_un_lag_and_vlan_membership | 205.79 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unk_un_lag_and_vlan_membership">Starting testcase:test_storm_control_unk_un_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17241' coro=<test_storm_control_unk_un_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=237, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=238] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=238] Local address: 172.17.0.4, port 33076 INFO asyncssh:logging.py:92 [conn=238] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=238] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=238] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:26:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=238, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=238, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=238, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=238, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=4] Command: ip link set dev bond1 up && ip link set dev swp1 down && ip link set dev swp1 master bond1 INFO asyncssh:logging.py:92 [conn=238, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=238, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=238, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=238, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=8] Command: ip link set dev bond2 up && ip link set dev swp3 down && ip link set dev swp3 master bond2 INFO asyncssh:logging.py:92 [conn=238, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=238, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up INFO asyncssh:logging.py:92 [conn=238, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=238, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=238, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=238, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=238, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=238, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=16] Command: ip link set dev swp2 master br0 && ip link set dev swp4 master br0 INFO asyncssh:logging.py:92 [conn=238, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=238, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=238, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=238, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=238, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=22] Command: bridge vlan add dev swp2 vid 1 pvid untagged && bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=26] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=27] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=28] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=28] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=29] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=30] Command: devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=31] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=32] Command: devlink -j port param show pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=32] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=33] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=34] Command: devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=35] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=36] Command: devlink -j port param show pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=36] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=37] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=38] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=39] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=40] Command: devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=40] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=41] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=42] Command: devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=42] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=43] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=44] Command: devlink -j port param show pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=44] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=45] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=46] Command: devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=46] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=47] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=48] Command: devlink -j port param show pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=48] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/3":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=49] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=50] Command: devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=51] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=52] Command: devlink -j port param show pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=52] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/4":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_unk_un_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_unk_un_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_unk_un_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1e13130>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 12528224 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 1103673 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=238, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=53] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=238, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=238, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=54] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=55] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=56] Command: devlink port param set pci/0000:01:00.0/1 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=56] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=57] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=58] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=59] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=60] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=60] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unk_un_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=238, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=61] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=62] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:30:09 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=238, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=238, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=238, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"34:ef:b6:ec:38:07","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"34:ef:b6:ec:38:09","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":338,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":339,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":15,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":340,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:7","root_id":"8000.34:ef:b6:ec:38:7","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":99.70,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=238, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=238, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=238, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=66] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=67] Channel closed DEBUG agg1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=238, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=238, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=68] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=238, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=69] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=70] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:30:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=238, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=71] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=72] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:30:13 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=238, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=73] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=238, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=238, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=74] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":340,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=238, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=75] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=238, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=238, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=76] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_unknown_unicast_traffic.py::test_storm_control_unknown_unicast_traffic | 161.88 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unknown_unicast_traffic">Starting testcase:test_storm_control_unknown_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17329' coro=<test_storm_control_unknown_unicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=238, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=239] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=239] Local address: 172.17.0.4, port 45682 INFO asyncssh:logging.py:92 [conn=239] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=239] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=239] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:30:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=239, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=239, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=239, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=239, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=239, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=7] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=8] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=8] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=239, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 23093 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=10] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 23093 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=12] Command: devlink -j port param show pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":23093}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ef2cb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 1600610 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 30232 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 30257 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 30256 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=239, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=239, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=239, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=14] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":23093}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=239, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=16] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=18] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=20] Command: devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=22] Command: devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=22] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unknown_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=239, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=24] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:32:51 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=239, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=26] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:32:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=239, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=239, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=239, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":341,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=239, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=239, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=239, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=30] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_unregistered_multicast_traffic.py::test_storm_control_unregistered_multicast_traffic | 161.00 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unregistered_multicast_traffic">Starting testcase:test_storm_control_unregistered_multicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17369' coro=<test_storm_control_unregistered_multicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=239, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=240] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=240] Local address: 172.17.0.4, port 59400 INFO asyncssh:logging.py:92 [conn=240] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=240] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=240] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:32:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=240, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=240, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=240, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=240, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=240, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=7] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=240, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=8] Command: devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=240, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=8] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=240, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 118689 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=10] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 118689 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=240, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=12] Command: devlink -j port param show pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=240, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=12] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1e10970>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 9691900 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 940055 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 1171510 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 1171508 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=240, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=240, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=240, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=14] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118689}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=240, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=15] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=16] Command: devlink port param set pci/0000:01:00.0/1 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=18] Command: devlink port param set pci/0000:01:00.0/2 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=20] Command: devlink port param set pci/0000:01:00.0/3 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=22] Command: devlink port param set pci/0000:01:00.0/4 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=22] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unregistered_multicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=240, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=24] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:35:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=240, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=26] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:35:36 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=240, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=240, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=240, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":342,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=240, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=240, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=240, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=30] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_negative_known_unicast_traffic.py::test_storm_negative_known_unicast_traffic | 177.89 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_negative_known_unicast_traffic">Starting testcase:test_storm_negative_known_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17409' coro=<test_storm_negative_known_unicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=240, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=241] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=241] Local address: 172.17.0.4, port 48670 INFO asyncssh:logging.py:92 [conn=241] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=241] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=241] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:35:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=241, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=241, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=241, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=241, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=241, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge fdb add 68:16:3d:2e:b4:c8 dev swp1 static master INFO asyncssh:logging.py:92 [conn=241, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=8] Command: bridge fdb add 68:16:3d:2e:b4:c8 dev swp1 static master INFO asyncssh:logging.py:92 [conn=241, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=9] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=10] Command: devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=10] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=241, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=11] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 50420 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=12] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 50420 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=13] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=14] Command: devlink -j port param show pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=14] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/2":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":50420}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1e11450>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 1660096 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 1660094 INFO asyncssh:logging.py:92 [conn=241, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge fdb delete 68:16:3d:2e:b4:c8 dev swp1 static master INFO asyncssh:logging.py:92 [conn=241, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=16] Command: bridge fdb delete 68:16:3d:2e:b4:c8 dev swp1 static master INFO asyncssh:logging.py:92 [conn=241, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ef3400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:5 Tx 0 Rx 5097441 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:6 Tx 19190338 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:7 Tx 0 Rx 2264490 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:1:8 Tx 0 Rx 2264488 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=241, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=17] Channel closed DEBUG agg1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=241, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=241, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=18] Channel closed DEBUG agg1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":50420}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=241, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=19] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=20] Command: devlink port param set pci/0000:01:00.0/1 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=21] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=22] Command: devlink port param set pci/0000:01:00.0/2 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=23] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=24] Command: devlink port param set pci/0000:01:00.0/3 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=25] Channel closed DEBUG agg1:Logger.py:156 devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=26] Command: devlink port param set pci/0000:01:00.0/4 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=26] Channel closed DEBUG agg1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_negative_known_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=241, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=27] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=28] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:38:30 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=241, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=30] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:38:34 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=241, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=241, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=241, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":343,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=241, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=241, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=241, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=34] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_config.py::test_stp_bpdu_guard | 142.71 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17453' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_guard">Starting testcase:test_stp_bpdu_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=241, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=242] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=242] Local address: 172.17.0.4, port 55746 INFO asyncssh:logging.py:92 [conn=242] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=242] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=242] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:38:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=242, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=1] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=242, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=242, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=3] Channel closed DEBUG agg1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=242, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=242, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=4] Channel closed DEBUG agg1:Logger.py:156 28269 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:38:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=242, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=242, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=242, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev br0 up address 22:5d:7d:43:38:dd INFO asyncssh:logging.py:92 [conn=242, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=10] Command: ip link set dev swp1 up master br0 && ip link set dev br0 up address 22:5d:7d:43:38:dd INFO asyncssh:logging.py:92 [conn=242, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=242, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 guard on INFO asyncssh:logging.py:92 [conn=242, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=12] Command: bridge link set dev swp1 guard on INFO asyncssh:logging.py:92 [conn=242, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=242, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge -j link show dev swp1 INFO asyncssh:logging.py:92 [conn=242, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=14] Command: bridge -j link show dev swp1 INFO asyncssh:logging.py:92 [conn=242, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"master":"br0","state":"disabled","priority":32,"cost":2}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=242, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=15] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=242, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=16] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=242, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:40:57 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=242, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=20] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:40:57 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=242, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=242, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=242, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":344,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:5d:7d:43:38:dd","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=242, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=242, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=242, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=24] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_config.py::test_stp_forward_delay | 139.42 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17492' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_forward_delay">Starting testcase:test_stp_forward_delay from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=243] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=243] Local address: 172.17.0.4, port 53672 INFO asyncssh:logging.py:92 [conn=243] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=243] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=243] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:40:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=243, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=1] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=243, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=243, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=3] Channel closed DEBUG agg1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=243, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=243, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=4] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=243, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:40:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=243, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge stp_state 1 && ip link add br1 type bridge stp_state 1 && ip link add br2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=243, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=8] Command: ip link add br0 type bridge stp_state 1 && ip link add br1 type bridge stp_state 1 && ip link add br2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=243, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp6 up master br0 && ip link set dev swp7 up master br0 && ip link set dev swp8 up master br1 && ip link set dev swp9 up master br1 && ip link set dev swp10 up master br2 && ip link set dev swp5 up master br2 && ip link set dev br0 up && ip link set dev br1 up && ip link set dev br2 up INFO asyncssh:logging.py:92 [conn=243, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=10] Command: ip link set dev swp6 up master br0 && ip link set dev swp7 up master br0 && ip link set dev swp8 up master br1 && ip link set dev swp9 up master br1 && ip link set dev swp10 up master br2 && ip link set dev swp5 up master br2 && ip link set dev br0 up && ip link set dev br1 up && ip link set dev br2 up INFO asyncssh:logging.py:92 [conn=243, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Start polling timeout = 80 interval = 10 INFO asyncssh:logging.py:92 [conn=243, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=12] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.96,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":0.06,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.96,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":0.06,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.97,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":0.07,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 10s Expected only 1 root bridge assert 3 == 1 + where 3 = len(['br0', 'br1', 'br2']) INFO asyncssh:logging.py:92 [conn=243, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=14] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.84,"message_age_timer":0.00,"forward_delay_timer":5.56,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.85,"forward_delay_timer":5.54,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.86,"message_age_timer":0.00,"forward_delay_timer":5.15,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.84,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.85,"forward_delay_timer":5.31,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.84,"message_age_timer":0.00,"forward_delay_timer":5.33,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":1,"root_path_cost":2,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":290.00,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":290.00,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.84,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":290.01,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 10s Expected ports to be 'forwarding' assert False + where False = all([False, False, False, False, False]) INFO asyncssh:logging.py:92 [conn=243, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=16] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.78,"message_age_timer":0.00,"forward_delay_timer":10.74,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.80,"forward_delay_timer":10.49,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.80,"message_age_timer":0.00,"forward_delay_timer":10.23,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.80,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.80,"forward_delay_timer":10.50,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.78,"message_age_timer":0.00,"forward_delay_timer":10.49,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":1,"root_path_cost":2,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":279.94,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":279.94,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.78,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":279.95,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 10s Expected ports to be 'forwarding' assert False + where False = all([False, False, False, False, False]) INFO asyncssh:logging.py:92 [conn=243, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=18] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.72,"message_age_timer":0.00,"forward_delay_timer":0.68,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.72,"forward_delay_timer":0.43,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.74,"message_age_timer":0.00,"forward_delay_timer":0.17,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.72,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.72,"forward_delay_timer":0.43,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.72,"message_age_timer":0.00,"forward_delay_timer":0.42,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":1,"root_path_cost":2,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":269.88,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":269.88,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.72,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":269.88,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 10s Expected ports to be 'forwarding' assert False + where False = all([False, False, False, False, False]) INFO asyncssh:logging.py:92 [conn=243, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=20] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.66,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.68,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.68,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.68,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.68,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.66,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":1,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.82,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.82,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.66,"tcn_timer":0.00,"topology_change_timer":25.73,"gc_timer":259.83,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Poll successful after 40s INFO asyncssh:logging.py:92 [conn=243, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=22] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.62,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.64,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.64,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.64,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.64,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.62,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":1,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.78,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.78,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.62,"tcn_timer":0.00,"topology_change_timer":25.69,"gc_timer":259.78,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=243, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=243, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=24] Command: ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=243, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Start polling timeout = 80 interval = 10 INFO asyncssh:logging.py:92 [conn=243, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=26] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","hold_timer":0.36,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":1,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.36,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.36,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.34,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.96,"tcn_timer":0.00,"topology_change_timer":34.96,"gc_timer":259.50,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.50,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.34,"tcn_timer":0.00,"topology_change_timer":25.41,"gc_timer":259.50,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 10s Expected only 1 root bridge assert 2 == 1 + where 2 = len(['br0', 'br2']) INFO asyncssh:logging.py:92 [conn=243, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=28] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":9.30,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.28,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.28,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.26,"tcn_timer":0.00,"topology_change_timer":24.90,"gc_timer":249.44,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":249.44,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.28,"tcn_timer":0.00,"topology_change_timer":15.35,"gc_timer":249.44,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 10s Expected only 1 root bridge assert 2 == 1 + where 2 = len(['br0', 'br2']) INFO asyncssh:logging.py:92 [conn=243, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=30] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.24,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.22,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.20,"tcn_timer":0.00,"topology_change_timer":14.84,"gc_timer":239.38,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":239.38,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.22,"tcn_timer":0.00,"topology_change_timer":5.29,"gc_timer":239.38,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 10s Expected only 1 root bridge assert 2 == 1 + where 2 = len(['br0', 'br2']) INFO asyncssh:logging.py:92 [conn=243, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=32] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.16,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.18,"message_age_timer":0.00,"forward_delay_timer":5.44,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.16,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.16,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":229.31,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":229.32,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.15,"tcn_timer":0.00,"topology_change_timer":26.18,"gc_timer":229.32,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 10s Port swp8 should be 'forwarding' assert 'listening' == 'forwarding' - forwarding + listening INFO asyncssh:logging.py:92 [conn=243, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=34] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.12,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.12,"message_age_timer":0.00,"forward_delay_timer":10.48,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.12,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.10,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":219.26,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":219.26,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.10,"tcn_timer":0.00,"topology_change_timer":16.12,"gc_timer":219.26,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 10s Port swp8 should be 'forwarding' assert 'learning' == 'forwarding' - forwarding + learning INFO asyncssh:logging.py:92 [conn=243, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=36] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.04,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.06,"message_age_timer":0.00,"forward_delay_timer":0.42,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.05,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.04,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":209.20,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":209.20,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.04,"tcn_timer":0.00,"topology_change_timer":6.07,"gc_timer":209.21,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 10s Port swp8 should be 'forwarding' assert 'learning' == 'forwarding' - forwarding + learning INFO asyncssh:logging.py:92 [conn=243, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=38] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=38] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":199.14,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":199.14,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.98,"tcn_timer":0.00,"topology_change_timer":25.48,"gc_timer":199.14,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Poll successful after 60s INFO asyncssh:logging.py:92 [conn=243, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br2 && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=243, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=40] Command: ip link set dev br2 && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=243, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=40] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Start polling timeout = 40.0 interval = 5 INFO asyncssh:logging.py:92 [conn=243, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=42] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":18.72,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":18.72,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":198.86,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":198.86,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.69,"tcn_timer":0.00,"topology_change_timer":25.19,"gc_timer":198.86,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 5s Expected only 1 blocked port assert 0 == 1 + where 0 = len([]) INFO asyncssh:logging.py:92 [conn=243, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=44] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=44] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.64,"message_age_timer":0.00,"forward_delay_timer":10.64,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.65,"forward_delay_timer":10.66,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.66,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.64,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.65,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.64,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":1,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":193.80,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":193.80,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.64,"tcn_timer":0.00,"topology_change_timer":32.69,"gc_timer":193.81,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=243, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=45] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=46] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=46] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":5.59,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":18.59,"forward_delay_timer":5.60,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":18.59,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":18.59,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":1,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":188.74,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":188.75,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.58,"tcn_timer":0.00,"topology_change_timer":27.63,"gc_timer":188.75,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=243, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=48] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=48] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.53,"message_age_timer":0.00,"forward_delay_timer":0.54,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.56,"forward_delay_timer":0.55,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.56,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.55,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.56,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.53,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":1,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":183.69,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":183.70,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.53,"tcn_timer":0.00,"topology_change_timer":22.58,"gc_timer":183.70,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=243, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=49] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=50] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=50] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":10.56,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":18.50,"forward_delay_timer":10.56,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":18.50,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":18.50,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":1,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":178.64,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":178.64,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.48,"tcn_timer":0.00,"topology_change_timer":17.52,"gc_timer":178.64,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=243, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=51] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=52] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=52] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.42,"message_age_timer":0.00,"forward_delay_timer":5.51,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.43,"forward_delay_timer":5.50,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.44,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.42,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.43,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.42,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":1,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":173.58,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":173.58,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.42,"tcn_timer":0.00,"topology_change_timer":12.47,"gc_timer":173.59,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=243, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=53] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=54] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=54] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.46,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":18.38,"forward_delay_timer":0.45,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":18.37,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":18.38,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":1,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":168.53,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":168.53,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.37,"tcn_timer":0.00,"topology_change_timer":7.42,"gc_timer":168.54,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=243, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=55] Channel closed DEBUG agg1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=56] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=56] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.31,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.34,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.34,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":2,"bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.33,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.00,"message_age_timer":19.34,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","hold_timer":0.31,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:c","root_id":"8000.34:ef:b6:ec:38:c","root_port":1,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":163.47,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:e","root_id":"8000.34:ef:b6:ec:38:e","root_port":2,"root_path_cost":2,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":163.48,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.34:ef:b6:ec:38:b","root_id":"8000.34:ef:b6:ec:38:b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.31,"tcn_timer":0.00,"topology_change_timer":30.52,"gc_timer":163.48,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT aggregation 1] Poll successful after 35s -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_forward_delay from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=243, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=57] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=243, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=58] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=243, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=58] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=243, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=59] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=60] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:43:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=243, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=61] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=62] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:43:16 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=243, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=63] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=243, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=64] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=243, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=64] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":346,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":347,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=243, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=65] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 && ip link delete br1 && ip link delete br2 INFO asyncssh:logging.py:92 [conn=243, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=66] Command: ip link delete br0 && ip link delete br1 && ip link delete br2 INFO asyncssh:logging.py:92 [conn=243, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=66] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_config.py::test_stp_max_age | 299.47 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17573' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_max_age">Starting testcase:test_stp_max_age from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=243, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=244] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=244] Local address: 172.17.0.4, port 42704 INFO asyncssh:logging.py:92 [conn=244] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=244] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=244] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:43:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=244, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=1] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=244, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=244, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=3] Channel closed DEBUG agg1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=244, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=244, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=4] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=244, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:43:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=244, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=244, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=244, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up address 22:be:f6:30:1a:ff INFO asyncssh:logging.py:92 [conn=244, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=10] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up address 22:be:f6:30:1a:ff INFO asyncssh:logging.py:92 [conn=244, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=244, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=244, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=12] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=244, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.2:d7:bf:7e:d0:12","root_id":"8000.2:d7:bf:7e:d0:12","hold_timer":0.00,"message_age_timer":18.80,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f2:85:3:86:5d","root_id":"8000.2:d7:bf:7e:d0:12","hold_timer":0.00,"message_age_timer":18.80,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":2,"bridge_id":"8000.22:be:f6:30:1a:ff","root_id":"8000.2:d7:bf:7e:d0:12","hold_timer":0.64,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":1,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":348,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:be:f6:30:1a:ff","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:be:f6:30:1a:ff","root_id":"8000.22:be:f6:30:1a:ff","root_port":1,"root_path_cost":2,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":1.90,"topology_change_timer":0.00,"gc_timer":126.89,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Start polling timeout = 30 interval = 5 INFO asyncssh:logging.py:92 [conn=244, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=14] Command: ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f2:85:3:86:5d","root_id":"8000.2:d7:bf:7e:d0:12","hold_timer":0.00,"message_age_timer":18.50,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 5s Port swp2 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=244, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=16] Command: ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f2:85:3:86:5d","root_id":"8000.2:d7:bf:7e:d0:12","hold_timer":0.00,"message_age_timer":13.46,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 5s Port swp2 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=244, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=18] Command: ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f2:85:3:86:5d","root_id":"8000.2:d7:bf:7e:d0:12","hold_timer":0.00,"message_age_timer":8.43,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 5s Port swp2 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=244, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=20] Command: ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f2:85:3:86:5d","root_id":"8000.2:d7:bf:7e:d0:12","hold_timer":0.00,"message_age_timer":3.39,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 5s Port swp2 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=244, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=22] Command: ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.22:be:f6:30:1a:ff","root_id":"8000.22:be:f6:30:1a:ff","hold_timer":1.20,"message_age_timer":0.00,"forward_delay_timer":14.80,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT aggregation 1] Poll successful after 20s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: swp1 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: swp2 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=244, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=244, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=24] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=244, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.2:d7:bf:7e:d0:12","root_id":"8000.2:d7:bf:7e:d0:12","hold_timer":0.00,"message_age_timer":4.73,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f2:85:3:86:5d","root_id":"8000.2:d7:bf:7e:d0:12","hold_timer":0.00,"message_age_timer":4.73,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":2,"bridge_id":"8000.22:be:f6:30:1a:ff","root_id":"8000.2:d7:bf:7e:d0:12","hold_timer":0.87,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":348,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:be:f6:30:1a:ff","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":600,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:be:f6:30:1a:ff","root_id":"8000.22:be:f6:30:1a:ff","root_port":1,"root_path_cost":2,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":1.85,"topology_change_timer":0.00,"gc_timer":8.12,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT aggregation 1] Start polling timeout = 15.0 interval = 2 INFO asyncssh:logging.py:92 [conn=244, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=26] Command: ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f2:85:3:86:5d","root_id":"8000.2:d7:bf:7e:d0:12","hold_timer":0.00,"message_age_timer":4.42,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 2s Port swp2 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=244, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=28] Command: ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f2:85:3:86:5d","root_id":"8000.2:d7:bf:7e:d0:12","hold_timer":0.00,"message_age_timer":2.38,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 2s Port swp2 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=244, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=30] Command: ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f2:85:3:86:5d","root_id":"8000.2:d7:bf:7e:d0:12","hold_timer":0.00,"message_age_timer":0.34,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT aggregation 1] Polling failed. Trying again in 2s Port swp2 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=244, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=31] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=32] Command: ip -j -d link show swp2 INFO asyncssh:logging.py:92 [conn=244, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":2,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.22:be:f6:30:1a:ff","root_id":"8000.22:be:f6:30:1a:ff","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":13.47,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT aggregation 1] Poll successful after 6s -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_max_age from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=244, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=33] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=244, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=34] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=244, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=244, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=35] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=36] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:48:15 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=244, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=37] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=38] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:48:16 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=244, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=39] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=244, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=244, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=40] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":348,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:be:f6:30:1a:ff","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=244, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=244, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=244, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=42] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_config.py::test_stp_root_guard | 184.05 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17630' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_root_guard">Starting testcase:test_stp_root_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=244, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=245] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=245] Local address: 172.17.0.4, port 38184 INFO asyncssh:logging.py:92 [conn=245] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=245] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=245] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:48:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=245, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=1] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=245, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=245, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=3] Channel closed DEBUG agg1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=245, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=245, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=4] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=245, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:48:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=245, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=245, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=245, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev br0 up address 22:28:69:56:16:74 INFO asyncssh:logging.py:92 [conn=245, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=10] Command: ip link set dev swp1 up master br0 && ip link set dev br0 up address 22:28:69:56:16:74 INFO asyncssh:logging.py:92 [conn=245, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=245, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=245, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=12] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=245, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":349,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:28:69:56:16:74","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:28:69:56:16:74","root_id":"8000.22:28:69:56:16:74","root_port":1,"root_path_cost":2,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":0.02,"topology_change_timer":0.00,"gc_timer":157.00,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=245, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 root_block on INFO asyncssh:logging.py:92 [conn=245, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=14] Command: bridge link set dev swp1 root_block on INFO asyncssh:logging.py:92 [conn=245, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=245, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=16] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=245, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":349,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:28:69:56:16:74","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:28:69:56:16:74","root_id":"8000.22:28:69:56:16:74","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":116.92,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_root_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=245, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=17] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=245, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=18] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=245, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=245, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=19] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=20] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:51:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=245, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=21] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=22] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:51:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=245, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=245, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=245, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=24] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":349,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:28:69:56:16:74","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=245, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=245, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=245, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=26] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_rstp_config.py::test_stp_bpdu_filter[stp] | 291.18 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17671' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_filter[stp]">Starting testcase:test_stp_bpdu_filter[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=245, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=246] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=246] Local address: 172.17.0.4, port 52362 INFO asyncssh:logging.py:92 [conn=246] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=246] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=246] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:51:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=246, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=1] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=246, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=246, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=3] Channel closed DEBUG agg1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=246, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=246, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=4] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=246, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:51:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=246, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=246, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=246, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up address 02:55:d8:7d:2b:a2 INFO asyncssh:logging.py:92 [conn=246, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=10] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up address 02:55:d8:7d:2b:a2 INFO asyncssh:logging.py:92 [conn=246, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=11] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=246, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=246, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=13] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=246, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=14] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=246, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=246, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=15] Channel closed DEBUG agg1:Logger.py:156 mstpctl setportbpdufilter br0 swp2 no INFO asyncssh:logging.py:92 [conn=246, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=16] Command: mstpctl setportbpdufilter br0 swp2 no INFO asyncssh:logging.py:92 [conn=246, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Waiting 40s for topo convergence INFO asyncssh:logging.py:92 [conn=246, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=17] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=246, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=18] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=246, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"port":"swp1","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:2A:58:CB:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:10:2A:58:CB:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.02:10:2A:58:CB:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"56","num-rx-bpdu":"35","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp2","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:2A:58:CB:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:AA:B0:17:95:23","dsgn-internal-cost":"0","designated-bridge":"8.000.02:AA:B0:17:95:23","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"53","num-rx-bpdu":"35","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"4","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp3","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:2A:58:CB:3B","dsgn-external-cost":"2000","dsgn-regional-root":"8.000.02:55:D8:7D:2B:A2","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:D8:7D:2B:A2","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"69","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a207bf10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:5 TI swp1 stp SIP-DIP Tx 30 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:6 TI swp2 stp SIP-DIP Tx 30 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2195235 Rx 2195235 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2195234 Rx 557 Loss 99.975 INFO DENT:Logger.py:84 [DENT aggregation 1] Expected rate 300Mbps, actual 299.0Mbps, rx port 10.36.118.199:1:5 INFO DENT:Logger.py:84 [DENT aggregation 1] Expected rate 0Mbps, actual 0.0Mbps, rx port 10.36.118.199:1:6 INFO asyncssh:logging.py:92 [conn=246, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=19] Channel closed DEBUG agg1:Logger.py:156 mstpctl setportbpdufilter br0 swp2 yes INFO asyncssh:logging.py:92 [conn=246, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=20] Command: mstpctl setportbpdufilter br0 swp2 yes INFO asyncssh:logging.py:92 [conn=246, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Waiting 40s for topo convergence INFO asyncssh:logging.py:92 [conn=246, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=21] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=246, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=246, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"port":"swp1","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:2A:58:CB:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:10:2A:58:CB:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.02:10:2A:58:CB:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"59","num-rx-bpdu":"77","num-rx-bpdu-filtered":"0","num-tx-tcn":"21","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp2","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:2A:58:CB:3B","dsgn-external-cost":"2000","dsgn-regional-root":"8.000.02:55:D8:7D:2B:A2","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:D8:7D:2B:A2","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"yes","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"53","num-rx-bpdu":"77","num-rx-bpdu-filtered":"40","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp3","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:2A:58:CB:3B","dsgn-external-cost":"2000","dsgn-regional-root":"8.000.02:55:D8:7D:2B:A2","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:D8:7D:2B:A2","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"90","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"21","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ef0bb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:5 TI swp1 stp SIP-DIP Tx 72 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:6 TI swp2 stp SIP-DIP Tx 72 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 5271407 Rx 5271407 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 5271406 Rx 90777 Loss 98.278 INFO DENT:Logger.py:84 [DENT aggregation 1] Expected rate 300Mbps, actual 299.0Mbps, rx port 10.36.118.199:1:5 INFO DENT:Logger.py:84 [DENT aggregation 1] Expected rate 300Mbps, actual 300.0Mbps, rx port 10.36.118.199:1:6 INFO asyncssh:logging.py:92 [conn=246, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=23] Channel closed DEBUG agg1:Logger.py:156 mstpctl setportbpdufilter br0 swp2 no INFO asyncssh:logging.py:92 [conn=246, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=24] Command: mstpctl setportbpdufilter br0 swp2 no INFO asyncssh:logging.py:92 [conn=246, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Waiting 40s for topo convergence INFO asyncssh:logging.py:92 [conn=246, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=25] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=246, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=26] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=246, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"port":"swp1","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:2A:58:CB:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:10:2A:58:CB:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.02:10:2A:58:CB:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"73","num-rx-bpdu":"119","num-rx-bpdu-filtered":"0","num-tx-tcn":"35","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp2","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:2A:58:CB:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:AA:B0:17:95:23","dsgn-internal-cost":"0","designated-bridge":"8.000.02:AA:B0:17:95:23","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"54","num-rx-bpdu":"119","num-rx-bpdu-filtered":"0","num-tx-tcn":"19","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"5","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp3","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:2A:58:CB:3B","dsgn-external-cost":"2000","dsgn-regional-root":"8.000.02:55:D8:7D:2B:A2","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:D8:7D:2B:A2","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"111","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"35","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a207a410>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:5 TI swp1 stp SIP-DIP Tx 116 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:6 TI swp2 stp SIP-DIP Tx 116 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 8494063 Rx 8494063 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 8494063 Rx 606063 Loss 92.865 INFO DENT:Logger.py:84 [DENT aggregation 1] Expected rate 300Mbps, actual 299.0Mbps, rx port 10.36.118.199:1:5 INFO DENT:Logger.py:84 [DENT aggregation 1] Expected rate 0Mbps, actual 0.0Mbps, rx port 10.36.118.199:1:6 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_filter[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=246, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=27] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=246, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=28] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=246, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=246, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=30] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:56:11 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=246, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=32] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:56:11 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=246, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=246, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=246, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":350,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"02:55:d8:7d:2b:a2","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=246, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=246, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=246, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=36] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_rstp_config.py::test_stp_bpdu_filter[rstp] | 228.24 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17722' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_filter[rstp]">Starting testcase:test_stp_bpdu_filter[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=246, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=247] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=247] Local address: 172.17.0.4, port 47142 INFO asyncssh:logging.py:92 [conn=247] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=247] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=247] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:56:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=247, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=1] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=247, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=247, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=3] Channel closed DEBUG agg1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=247, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=247, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=4] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=247, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:56:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=247, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=247, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=247, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up address 02:55:a3:9d:60:03 INFO asyncssh:logging.py:92 [conn=247, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=10] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev br0 up address 02:55:a3:9d:60:03 INFO asyncssh:logging.py:92 [conn=247, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=11] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=247, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=247, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=13] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=247, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=14] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=247, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp1 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp2 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=247, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=15] Channel closed DEBUG agg1:Logger.py:156 mstpctl setportbpdufilter br0 swp2 no INFO asyncssh:logging.py:92 [conn=247, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=16] Command: mstpctl setportbpdufilter br0 swp2 no INFO asyncssh:logging.py:92 [conn=247, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Waiting 20s for topo convergence INFO asyncssh:logging.py:92 [conn=247, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=17] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=247, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=18] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=247, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=18] Channel closed DEBUG agg1:Logger.py:156 [{"port":"swp1","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:C2:09:9B:44","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:10:C2:09:9B:44","dsgn-internal-cost":"0","designated-bridge":"8.000.02:10:C2:09:9B:44","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"73","num-rx-bpdu":"15","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp2","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:C2:09:9B:44","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:AA:CE:18:3E:EB","dsgn-internal-cost":"0","designated-bridge":"8.000.02:AA:CE:18:3E:EB","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"71","num-rx-bpdu":"15","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp3","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:C2:09:9B:44","dsgn-external-cost":"2000","dsgn-regional-root":"8.000.02:55:A3:9D:60:03","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:A3:9D:60:03","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"61","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a20781c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:5 TI swp1 rstp SIP-DIP Tx 10 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:6 TI swp2 rstp SIP-DIP Tx 10 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 731412 Rx 731412 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 731412 Rx 1101 Loss 99.849 INFO DENT:Logger.py:84 [DENT aggregation 1] Expected rate 300Mbps, actual 299.0Mbps, rx port 10.36.118.199:1:5 INFO DENT:Logger.py:84 [DENT aggregation 1] Expected rate 0Mbps, actual 0.0Mbps, rx port 10.36.118.199:1:6 INFO asyncssh:logging.py:92 [conn=247, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=19] Channel closed DEBUG agg1:Logger.py:156 mstpctl setportbpdufilter br0 swp2 yes INFO asyncssh:logging.py:92 [conn=247, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=20] Command: mstpctl setportbpdufilter br0 swp2 yes INFO asyncssh:logging.py:92 [conn=247, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Waiting 20s for topo convergence INFO asyncssh:logging.py:92 [conn=247, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=21] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=247, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=247, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=22] Channel closed DEBUG agg1:Logger.py:156 [{"port":"swp1","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:C2:09:9B:44","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:10:C2:09:9B:44","dsgn-internal-cost":"0","designated-bridge":"8.000.02:10:C2:09:9B:44","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"95","num-rx-bpdu":"37","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp2","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:C2:09:9B:44","dsgn-external-cost":"2000","dsgn-regional-root":"8.000.02:55:A3:9D:60:03","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:A3:9D:60:03","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"yes","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"73","num-rx-bpdu":"37","num-rx-bpdu-filtered":"20","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"4","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp3","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:C2:09:9B:44","dsgn-external-cost":"2000","dsgn-regional-root":"8.000.02:55:A3:9D:60:03","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:A3:9D:60:03","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"72","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1e11210>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:5 TI swp1 rstp SIP-DIP Tx 34 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:6 TI swp2 rstp SIP-DIP Tx 34 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2489225 Rx 2489224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2489224 Rx 697399 Loss 71.983 INFO DENT:Logger.py:84 [DENT aggregation 1] Expected rate 300Mbps, actual 299.0Mbps, rx port 10.36.118.199:1:5 INFO DENT:Logger.py:84 [DENT aggregation 1] Expected rate 300Mbps, actual 300.0Mbps, rx port 10.36.118.199:1:6 INFO asyncssh:logging.py:92 [conn=247, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=23] Channel closed DEBUG agg1:Logger.py:156 mstpctl setportbpdufilter br0 swp2 no INFO asyncssh:logging.py:92 [conn=247, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=24] Command: mstpctl setportbpdufilter br0 swp2 no INFO asyncssh:logging.py:92 [conn=247, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Waiting 20s for topo convergence INFO asyncssh:logging.py:92 [conn=247, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=25] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=247, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=26] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=247, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"port":"swp1","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:C2:09:9B:44","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:10:C2:09:9B:44","dsgn-internal-cost":"0","designated-bridge":"8.000.02:10:C2:09:9B:44","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"117","num-rx-bpdu":"59","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp2","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:C2:09:9B:44","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:AA:CE:18:3E:EB","dsgn-internal-cost":"0","designated-bridge":"8.000.02:AA:CE:18:3E:EB","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"94","num-rx-bpdu":"59","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"4","num-transition-blk":"5","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp3","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:C2:09:9B:44","dsgn-external-cost":"2000","dsgn-regional-root":"8.000.02:55:A3:9D:60:03","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:A3:9D:60:03","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"83","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a20187f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:5 TI swp1 rstp SIP-DIP Tx 56 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:6 TI swp2 rstp SIP-DIP Tx 56 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 4100553 Rx 4100552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:6 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 4100552 Rx 1065262 Loss 74.021 INFO DENT:Logger.py:84 [DENT aggregation 1] Expected rate 300Mbps, actual 299.0Mbps, rx port 10.36.118.199:1:5 INFO DENT:Logger.py:84 [DENT aggregation 1] Expected rate 0Mbps, actual 0.0Mbps, rx port 10.36.118.199:1:6 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_filter[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=247, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=27] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=247, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=28] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=247, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=247, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=29] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=30] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:59:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=247, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=32] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 05:59:59 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=247, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=33] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=247, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=247, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=34] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":351,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"02:55:a3:9d:60:03","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=247, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=247, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=247, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=36] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_rstp_config.py::test_stp_hello_time[stp] | 141.14 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17773' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_hello_time[stp]">Starting testcase:test_stp_hello_time[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=247, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=248] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=248] Local address: 172.17.0.4, port 41440 INFO asyncssh:logging.py:92 [conn=248] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=248] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=248] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:00:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=248, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=1] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=248, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=248, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=3] Channel closed DEBUG agg1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=248, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=248, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=4] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=248, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:00:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=248, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=248, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=248, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=248, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=10] Command: ip link set dev swp1 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=248, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=11] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=248, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=248, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=13] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=248, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=14] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=248, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 30 tcpdump -i swp1 -n llc on agg1... INFO asyncssh:logging.py:92 [conn=248, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=15] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp1 -n llc INFO asyncssh:logging.py:92 [conn=248, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=16] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp1 -n llc INFO asyncssh:logging.py:92 [conn=248, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=16] Channel closed DEBUG agg1:Logger.py:156 06:00:40.705373 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:00:42.705725 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:00:44.705400 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:00:46.705396 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:00:48.705402 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:00:50.705910 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:00:52.705402 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:00:54.705739 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:00:56.705396 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:00:58.705789 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:01:00.705968 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:01:02.705393 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:01:04.705401 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:01:06.705598 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:01:08.705868 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 15 packets captured 15 packets received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=248, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=17] Channel closed DEBUG agg1:Logger.py:156 mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=248, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=18] Command: mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=248, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 30 tcpdump -i swp1 -n llc on agg1... INFO asyncssh:logging.py:92 [conn=248, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=19] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp1 -n llc INFO asyncssh:logging.py:92 [conn=248, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=20] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp1 -n llc INFO asyncssh:logging.py:92 [conn=248, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=20] Channel closed DEBUG agg1:Logger.py:156 06:01:50.705372 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:01:51.705924 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:01:52.705994 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:01:53.705373 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:01:54.705451 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:01:55.705837 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:01:56.705912 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:01:57.705536 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:01:58.705621 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:01:59.705729 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:00.705817 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:01.705834 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:02.705900 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:03.705401 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:04.705478 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:05.705900 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:06.705985 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:07.705372 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:08.705442 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:09.705374 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:10.705433 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:11.705385 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:12.705452 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:13.705627 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:14.705707 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:15.705927 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:16.705975 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:17.705556 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:18.705642 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 06:02:19.705374 STP 802.1d, Config, Flags [none], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 35 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 30 packets captured 30 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_hello_time[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=248, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=21] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=248, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=22] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=248, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=248, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=24] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:02:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=248, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=26] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:02:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=248, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=248, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=248, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":352,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=248, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=248, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=248, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=30] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_rstp_config.py::test_stp_hello_time[rstp] | 101.14 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17818' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_hello_time[rstp]">Starting testcase:test_stp_hello_time[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=248, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=249] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=249] Local address: 172.17.0.4, port 42306 INFO asyncssh:logging.py:92 [conn=249] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=249] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=249] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:02:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=249, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=1] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=249, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=249, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=3] Channel closed DEBUG agg1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=249, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=249, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=4] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:02:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=249, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=249, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=249, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=249, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=10] Command: ip link set dev swp1 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=249, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=11] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=249, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=249, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=13] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=249, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=14] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=249, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 30 tcpdump -i swp1 -n llc on agg1... INFO asyncssh:logging.py:92 [conn=249, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=15] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp1 -n llc INFO asyncssh:logging.py:92 [conn=249, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=16] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp1 -n llc INFO asyncssh:logging.py:92 [conn=249, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=16] Channel closed DEBUG agg1:Logger.py:156 06:02:42.705408 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:02:44.705433 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:02:46.705822 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:02:48.705712 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:02:50.705411 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:02:52.705754 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:02:54.705941 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:02:56.705392 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:02:58.705933 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:00.705462 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:02.705467 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:04.705992 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:06.705408 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:08.705643 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:10.705404 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 15 packets captured 15 packets received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=249, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=17] Channel closed DEBUG agg1:Logger.py:156 mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=249, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=18] Command: mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=249, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [DENT aggregation 1] Starting timeout --preserve-status 30 tcpdump -i swp1 -n llc on agg1... INFO asyncssh:logging.py:92 [conn=249, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=19] Channel closed DEBUG agg1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp1 -n llc INFO asyncssh:logging.py:92 [conn=249, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=20] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp1 -n llc INFO asyncssh:logging.py:92 [conn=249, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=20] Channel closed DEBUG agg1:Logger.py:156 06:03:32.706260 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:33.705370 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:34.705448 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:35.705370 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:36.705442 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:37.705372 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:38.705446 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:39.705422 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:40.705488 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:41.705364 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:42.705431 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:43.705457 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:44.705543 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:45.705641 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:46.705702 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:47.705798 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:48.705879 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:49.705375 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:50.705460 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:51.705827 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:52.705899 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:53.705373 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:54.705454 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:55.705487 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:56.705543 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:57.705374 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:58.705458 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:03:59.705822 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 06:04:00.705900 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.34:ef:b6:ec:38:07.8001, length 36 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp1, link-type EN10MB (Ethernet), capture size 262144 bytes 29 packets captured 29 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_hello_time[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=249, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=21] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=249, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=22] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=249, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=24] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:04:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=249, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=26] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:04:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=249, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=249, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=249, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":353,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=249, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=249, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=249, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=30] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_select_root.py::test_stp_select_root_port[stp] | 83.18 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18008' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_port[stp]">Starting testcase:test_stp_select_root_port[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=252] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=252] Local address: 172.17.0.4, port 47600 INFO asyncssh:logging.py:92 [conn=252] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=252] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=252] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:05:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=252, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=1] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=252, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=252, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=3] Channel closed DEBUG agg1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=252, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=252, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=4] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:05:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=252, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=252, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=252, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=9] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=11] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp INFO asyncssh:logging.py:92 [conn=252, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=12] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp INFO asyncssh:logging.py:92 [conn=252, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=252, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=252, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=252, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=252, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=18] Command: ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=19] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=252, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=20] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=252, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=21] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=252, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=22] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=252, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=252, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=24] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=252, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=252, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=26] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=252, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=27] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=252, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=28] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=252, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"swp5","last-topology-change-port":"swp7"}] INFO asyncssh:logging.py:92 [conn=252, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=29] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=30] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"swp6 (#1)","path-cost":"2000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"2","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"swp6"}] INFO asyncssh:logging.py:92 [conn=252, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=31] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=32] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"21","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"21","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"3","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=252, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=33] Channel closed DEBUG agg1:Logger.py:156 mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=252, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=34] Command: mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=252, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=35] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=36] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.001","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"41","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"22","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"7.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"42","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"23","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_port[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=252, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=37] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=252, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=38] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=252, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=39] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=40] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:06:33 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=252, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=252, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=252, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":360,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":361,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=252, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=44] Command: ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=45] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=46] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:06:34 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=252, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=252, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=48] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=252, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=48] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=49] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=50] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:06:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/stp/test_stp_select_root.py::test_stp_select_root_port[rstp] | 43.16 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18076' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_port[rstp]">Starting testcase:test_stp_select_root_port[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=253] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=253] Local address: 172.17.0.4, port 53852 INFO asyncssh:logging.py:92 [conn=253] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=253] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=253] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:06:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=253, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=1] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=253, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=253, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=3] Channel closed DEBUG agg1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=253, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=253, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=4] Channel closed DEBUG agg1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=5] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=6] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:06:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=253, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=253, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=253, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=9] Channel closed DEBUG agg1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=11] Channel closed DEBUG agg1:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp INFO asyncssh:logging.py:92 [conn=253, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=12] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp INFO asyncssh:logging.py:92 [conn=253, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=253, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=253, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=253, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=253, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=18] Command: ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=19] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=253, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=20] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=253, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=21] Channel closed DEBUG agg1:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=253, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=22] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=253, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=23] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=253, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=24] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=253, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=25] Channel closed DEBUG agg1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=253, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=26] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=253, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=27] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=253, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=28] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=253, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"15","topology-change-count":"1","topology-change":"no","topology-change-port":"swp5","last-topology-change-port":"swp7"}] INFO asyncssh:logging.py:92 [conn=253, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=29] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=30] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=30] Channel closed DEBUG agg1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"swp6 (#1)","path-cost":"2000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"16","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"swp6"}] INFO asyncssh:logging.py:92 [conn=253, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=31] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=32] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=32] Channel closed DEBUG agg1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"12","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"2","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"2","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=253, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=33] Channel closed DEBUG agg1:Logger.py:156 mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=253, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=34] Command: mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=253, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=34] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=35] Channel closed DEBUG agg1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=36] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.001","state":"discarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"4","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"2000","internal-port-cost":"2000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"7.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"22","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_port[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=253, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=37] Channel closed DEBUG agg1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=253, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=38] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=253, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=38] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=39] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=40] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:07:16 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=253, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=41] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=253, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=253, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=42] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":362,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":363,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=253, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=43] Channel closed DEBUG agg1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=44] Command: ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=44] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=45] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=46] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:07:17 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=253, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=47] Channel closed DEBUG agg1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=253, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=48] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=253, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=48] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=49] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=50] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:07:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/table_size/test_table_size.py::test_ipv4_route_table_fill | 72.74 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_route_table_fill">Starting testcase:test_ipv4_route_table_fill from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18142' coro=<test_ipv4_route_table_fill() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:70> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=254] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=254] Local address: 172.17.0.4, port 50012 INFO asyncssh:logging.py:92 [conn=254] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=254] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=254] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:07:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=254, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=1] Channel closed DEBUG agg1:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=254, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=254, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=2] Channel closed DEBUG agg1:Logger.py:156 arm64-accton-as5114-48x-r0 INFO asyncssh:logging.py:92 [conn=254, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=254, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=4] Command: ip link set dev swp1 up INFO asyncssh:logging.py:92 [conn=254, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=5] Channel closed DEBUG agg1:Logger.py:156 for x in `seq 40` do for y in `seq 250` do ip ro add dev swp1 1.1.$x.$y done done INFO asyncssh:logging.py:92 [conn=254, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=6] Command: for x in `seq 40` do for y in `seq 250` do ip ro add dev swp1 1.1.$x.$y done done INFO asyncssh:logging.py:92 [conn=254, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip route | grep rt_offload | wc -l INFO asyncssh:logging.py:92 [conn=254, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=8] Command: ip route | grep rt_offload | wc -l INFO asyncssh:logging.py:92 [conn=254, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=8] Channel closed DEBUG agg1:Logger.py:156 10001 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_route_table_fill from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=254, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=10] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:08:24 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=254, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=254, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=12] Command: ip address flush swp1 && ip address flush swp2 && ip address flush swp3 && ip address flush swp4 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=254, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=254, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=254, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:ee:25:a0:db:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"34:ef:b6:ec:38:04","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:08","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:09","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:11","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:12","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:13","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:14","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:17","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:18","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:19","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:1f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:20","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:21","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:22","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:23","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:24","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:26","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:27","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:28","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:30","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:31","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:32","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:33","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:35","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:36","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=254, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up INFO asyncssh:logging.py:92 [conn=254, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=16] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up INFO asyncssh:logging.py:92 [conn=254, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=16] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/table_size/test_table_size.py::test_bridging_mac_table_size | 132.50 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_mac_table_size">Starting testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18167' coro=<test_bridging_mac_table_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:111> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=254, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=255] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=255] Local address: 172.17.0.4, port 50118 INFO asyncssh:logging.py:92 [conn=255] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=255] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=255] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:08:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=255, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=255, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=255, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=255, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=255, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=255, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=255, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge link set dev swp1 learning on && bridge link set dev swp2 learning on && bridge link set dev swp3 learning on && bridge link set dev swp4 learning on INFO asyncssh:logging.py:92 [conn=255, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=8] Command: bridge link set dev swp1 learning on && bridge link set dev swp2 learning on && bridge link set dev swp3 learning on && bridge link set dev swp4 learning on INFO asyncssh:logging.py:92 [conn=255, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcfd30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI streamA SIP-DIP N/A Tx 105149 Rx 105149 Loss 0.000 INFO asyncssh:logging.py:92 [conn=255, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=255, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=255, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=10] Channel closed DEBUG agg1:Logger.py:156 4002 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=255, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=12] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:10:42 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=255, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:10:42 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=255, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=255, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=255, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":364,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=255, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=255, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=255, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=18] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/table_size/test_table_size.py::test_acl_table_size | 402.42 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_table_size">Starting testcase:test_acl_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18194' coro=<test_acl_table_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:200> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=255, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=256] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=256] Local address: 172.17.0.4, port 40298 INFO asyncssh:logging.py:92 [conn=256] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=256] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=256] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:10:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=256, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=1] Channel closed DEBUG agg1:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=256, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=256, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=2] Channel closed DEBUG agg1:Logger.py:156 arm64-accton-as5114-48x-r0 INFO asyncssh:logging.py:92 [conn=256, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=3] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 handle 10 ingress INFO asyncssh:logging.py:92 [conn=256, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=4] Command: tc qdisc add dev swp1 handle 10 ingress INFO asyncssh:logging.py:92 [conn=256, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=5] Channel closed DEBUG agg1:Logger.py:156 for x in `seq 1636` do tc filter add dev swp1 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=256, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=6] Command: for x in `seq 1636` do tc filter add dev swp1 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=256, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=7] Channel closed DEBUG agg1:Logger.py:156 tc filter show dev swp1 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=8] Command: tc filter show dev swp1 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=8] Channel closed DEBUG agg1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=256, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=9] Channel closed DEBUG agg1:Logger.py:156 tc filter show dev swp1 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=10] Command: tc filter show dev swp1 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=10] Channel closed DEBUG agg1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=256, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=11] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 handle 10 ingress INFO asyncssh:logging.py:92 [conn=256, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=12] Command: tc qdisc delete dev swp1 handle 10 ingress INFO asyncssh:logging.py:92 [conn=256, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=13] Channel closed DEBUG agg1:Logger.py:156 tc qdisc add dev swp1 handle 10 ingress INFO asyncssh:logging.py:92 [conn=256, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=14] Command: tc qdisc add dev swp1 handle 10 ingress INFO asyncssh:logging.py:92 [conn=256, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=15] Channel closed DEBUG agg1:Logger.py:156 tc chain add dev swp1 ingress chain 0 flower INFO asyncssh:logging.py:92 [conn=256, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=16] Command: tc chain add dev swp1 ingress chain 0 flower INFO asyncssh:logging.py:92 [conn=256, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=17] Channel closed DEBUG agg1:Logger.py:156 for x in `seq 9292` do tc filter add dev swp1 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=256, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=18] Command: for x in `seq 9292` do tc filter add dev swp1 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=256, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=19] Channel closed DEBUG agg1:Logger.py:156 tc f show dev swp1 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=20] Command: tc f show dev swp1 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=20] Channel closed DEBUG agg1:Logger.py:156 9192 INFO asyncssh:logging.py:92 [conn=256, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=21] Channel closed DEBUG agg1:Logger.py:156 tc f show dev swp1 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=22] Command: tc f show dev swp1 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=22] Channel closed DEBUG agg1:Logger.py:156 9192 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO asyncssh:logging.py:92 [conn=256, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=23] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=24] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:16:59 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=256, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=25] Channel closed DEBUG agg1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=256, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=256, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=26] Channel closed DEBUG agg1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp1","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=256, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=27] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=256, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=256, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=28] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=29] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=256, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=256, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=30] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=31] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=32] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=33] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=34] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=35] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=36] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=37] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=38] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=39] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=40] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=41] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=42] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=43] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=44] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=45] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=46] Channel closed DEBUG agg1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=47] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=256, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=256, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=48] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=49] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=256, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=50] Command: tc qdisc delete dev swp1 ingress INFO asyncssh:logging.py:92 [conn=256, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=50] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=51] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=256, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=256, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=52] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=53] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=256, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=256, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=54] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=55] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=256, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=256, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=56] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=57] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=256, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=58] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=256, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=58] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=59] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=256, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=60] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=256, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=60] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=61] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=256, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=62] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=256, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=62] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=63] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=256, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=64] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=256, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=64] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=65] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=256, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=66] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=256, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=66] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=67] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=256, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=68] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=256, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=68] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=69] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=256, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=70] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=256, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=70] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=71] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=256, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=72] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=256, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=72] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=73] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=256, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=74] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=256, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=74] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=75] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=256, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=76] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=256, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=76] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=77] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=256, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=78] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=256, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=78] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=79] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=256, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=80] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=256, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=80] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=81] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=256, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=82] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=256, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=82] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=83] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=256, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=84] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=256, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=84] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=85] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=256, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=86] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=256, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=86] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=87] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=256, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=88] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=256, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=88] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=89] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=256, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=90] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=256, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=90] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=91] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=256, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=92] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=256, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=92] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=93] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=256, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=94] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=256, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=94] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=95] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=256, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=96] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=256, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=96] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=97] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=256, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=98] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=256, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=98] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=99] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=256, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=100] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=256, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=100] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=101] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=256, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=102] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=256, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=102] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=103] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=256, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=104] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=256, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=104] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=105] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=256, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=106] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=256, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=106] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=107] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=256, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=108] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=256, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=108] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=109] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=256, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=110] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=256, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=110] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=111] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=256, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=112] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=256, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=112] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=113] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=256, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=114] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=256, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=114] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=115] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=256, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=116] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=256, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=116] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=117] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=256, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=118] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=256, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=118] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=119] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=256, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=120] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=256, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=120] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=121] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=256, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=122] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=256, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=122] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=123] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=256, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=124] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=256, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=124] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=125] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=256, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=126] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=256, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=126] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=127] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=256, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=128] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=256, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=128] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=129] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=256, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=130] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=256, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=130] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=131] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=256, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=132] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=256, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=132] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=133] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=256, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=134] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=256, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=134] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=135] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=256, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=136] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=256, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=136] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=137] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=256, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=138] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=256, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=138] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=139] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=256, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=140] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=256, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=140] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=141] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=256, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=142] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=256, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=142] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=143] Channel closed DEBUG agg1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=256, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=144] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=256, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=144] Channel closed DEBUG agg1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_broadcast | 238.30 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_broadcast">Starting testcase:test_vlan_all_supported_modes_broadcast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18349' coro=<test_vlan_all_supported_modes_broadcast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:43> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=256, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=257] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=257] Local address: 172.17.0.4, port 58840 INFO asyncssh:logging.py:92 [conn=257] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=257] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=257] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:17:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=257, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=257, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=257, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=257, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=257, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=257, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=257, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=8] Command: bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=257, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=10] Command: bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=257, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=12] Command: bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=14] Command: bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1f998d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 247 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 247 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 247 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 247 Rx 247 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 247 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 247 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 247 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 247 Rx 247 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 247 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 247 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 247 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 247 Rx 247 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 247 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 247 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 247 Rx 247 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_broadcast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=257, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:21:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=257, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:21:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=257, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=257, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=257, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":365,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=257, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=257, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=257, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_multicast | 238.39 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_multicast">Starting testcase:test_vlan_all_supported_modes_multicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18381' coro=<test_vlan_all_supported_modes_multicast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:124> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=257, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=258] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=258] Local address: 172.17.0.4, port 58210 INFO asyncssh:logging.py:92 [conn=258] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=258] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=258] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:21:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=258, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=258, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=258, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=258, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=258, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=8] Command: bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=258, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=10] Command: bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=258, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=12] Command: bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=14] Command: bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1f988e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 25 Rx 25 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 25 Rx 25 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 25 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_multicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=258, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:25:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=258, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:25:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=258, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=258, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=258, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":366,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=258, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=258, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=258, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_unicast | 258.62 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_unicast">Starting testcase:test_vlan_all_supported_modes_unicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18413' coro=<test_vlan_all_supported_modes_unicast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:207> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=258, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=259] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=259] Local address: 172.17.0.4, port 49990 INFO asyncssh:logging.py:92 [conn=259] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=259] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=259] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:25:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=259, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=259, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=259, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=259, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=259, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=259, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=259, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=259, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=8] Command: bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=259, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=259, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=10] Command: bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=259, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=259, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=12] Command: bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=259, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=259, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=14] Command: bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=259, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> X INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:6 -> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:7 -> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fce3e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 1 SIP-DIP N/A Tx 345 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 -> 1 SIP-DIP N/A Tx 344 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> 1 SIP-DIP N/A Tx 344 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 2 SIP-DIP N/A Tx 345 Rx 345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 -> 2 SIP-DIP N/A Tx 344 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> 2 SIP-DIP N/A Tx 344 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 3 SIP-DIP N/A Tx 345 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 -> 3 SIP-DIP N/A Tx 344 Rx 344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> 3 SIP-DIP N/A Tx 344 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> 4 SIP-DIP N/A Tx 345 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 -> 4 SIP-DIP N/A Tx 344 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> 4 SIP-DIP N/A Tx 344 Rx 344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI 10.36.118.199:1:5 -> X SIP-DIP N/A Tx 345 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI 10.36.118.199:1:5 -> X SIP-DIP N/A Tx 344 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> X SIP-DIP N/A Tx 344 Rx 344 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:6 -> 10.36.118.199:1:5 SIP-DIP N/A Tx 345 Rx 345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:7 -> 10.36.118.199:1:5 SIP-DIP N/A Tx 345 Rx 345 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:8 -> 10.36.118.199:1:5 SIP-DIP N/A Tx 345 Rx 345 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_unicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=259, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:29:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=259, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:29:40 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=259, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=259, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=259, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":367,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=259, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=259, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=259, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_configuration_checks.py::test_vlan_can_set_max_vlans | 153.39 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_can_set_max_vlans">Starting testcase:test_vlan_can_set_max_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18445' coro=<test_vlan_can_set_max_vlans() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py:26> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=259, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=260] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=260] Local address: 172.17.0.4, port 37978 INFO asyncssh:logging.py:92 [conn=260] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=260] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=260] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:29:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=260, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=260, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=260, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=260, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=260, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp6 up master br0 INFO asyncssh:logging.py:92 [conn=260, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=6] Command: ip link set dev swp6 up master br0 INFO asyncssh:logging.py:92 [conn=260, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=7] Channel closed DEBUG agg1:Logger.py:156 time for i in {1..4094}; do bridge vlan add vid $i dev swp6; done INFO asyncssh:logging.py:92 [conn=260, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=8] Command: time for i in {1..4094}; do bridge vlan add vid $i dev swp6; done INFO asyncssh:logging.py:92 [conn=260, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=8] Channel closed DEBUG agg1:Logger.py:156 real 1m43.409s user 0m3.346s sys 1m39.379s INFO asyncssh:logging.py:92 [conn=260, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge -j vlan show dev swp6 INFO asyncssh:logging.py:92 [conn=260, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=10] Command: bridge -j vlan show dev swp6 INFO asyncssh:logging.py:92 [conn=260, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=10] Channel closed DEBUG agg1:Logger.py:156 [{"ifname":"swp6","vlans":[{"vlan":1},{"vlan":2},{"vlan":3},{"vlan":4},{"vlan":5},{"vlan":6},{"vlan":7},{"vlan":8},{"vlan":9},{"vlan":10},{"vlan":11},{"vlan":12},{"vlan":13},{"vlan":14},{"vlan":15},{"vlan":16},{"vlan":17},{"vlan":18},{"vlan":19},{"vlan":20},{"vlan":21},{"vlan":22},{"vlan":23},{"vlan":24},{"vlan":25},{"vlan":26},{"vlan":27},{"vlan":28},{"vlan":29},{"vlan":30},{"vlan":31},{"vlan":32},{"vlan":33},{"vlan":34},{"vlan":35},{"vlan":36},{"vlan":37},{"vlan":38},{"vlan":39},{"vlan":40},{"vlan":41},{"vlan":42},{"vlan":43},{"vlan":44},{"vlan":45},{"vlan":46},{"vlan":47},{"vlan":48},{"vlan":49},{"vlan":50},{"vlan":51},{"vlan":52},{"vlan":53},{"vlan":54},{"vlan":55},{"vlan":56},{"vlan":57},{"vlan":58},{"vlan":59},{"vlan":60},{"vlan":61},{"vlan":62},{"vlan":63},{"vlan":64},{"vlan":65},{"vlan":66},{"vlan":67},{"vlan":68},{"vlan":69},{"vlan":70},{"vlan":71},{"vlan":72},{"vlan":73},{"vlan":74},{"vlan":75},{"vlan":76},{"vlan":77},{"vlan":78},{"vlan":79},{"vlan":80},{"vlan":81},{"vlan":82},{"vlan":83},{"vlan":84},{"vlan":85},{"vlan":86},{"vlan":87},{"vlan":88},{"vlan":89},{"vlan":90},{"vlan":91},{"vlan":92},{"vlan":93},{"vlan":94},{"vlan":95},{"vlan":96},{"vlan":97},{"vlan":98},{"vlan":99},{"vlan":100},{"vlan":101},{"vlan":102},{"vlan":103},{"vlan":104},{"vlan":105},{"vlan":106},{"vlan":107},{"vlan":108},{"vlan":109},{"vlan":110},{"vlan":111},{"vlan":112},{"vlan":113},{"vlan":114},{"vlan":115},{"vlan":116},{"vlan":117},{"vlan":118},{"vlan":119},{"vlan":120},{"vlan":121},{"vlan":122},{"vlan":123},{"vlan":124},{"vlan":125},{"vlan":126},{"vlan":127},{"vlan":128},{"vlan":129},{"vlan":130},{"vlan":131},{"vlan":132},{"vlan":133},{"vlan":134},{"vlan":135},{"vlan":136},{"vlan":137},{"vlan":138},{"vlan":139},{"vlan":140},{"vlan":141},{"vlan":142},{"vlan":143},{"vlan":144},{"vlan":145},{"vlan":146},{"vlan":147},{"vlan":148},{"vlan":149},{"vlan":150},{"vlan":151},{"vlan":152},{"vlan":153},{"vlan":154},{"vlan":155},{"vlan":156},{"vlan":157},{"vlan":158},{"vlan":159},{"vlan":160},{"vlan":161},{"vlan":162},{"vlan":163},{"vlan":164},{"vlan":165},{"vlan":166},{"vlan":167},{"vlan":168},{"vlan":169},{"vlan":170},{"vlan":171},{"vlan":172},{"vlan":173},{"vlan":174},{"vlan":175},{"vlan":176},{"vlan":177},{"vlan":178},{"vlan":179},{"vlan":180},{"vlan":181},{"vlan":182},{"vlan":183},{"vlan":184},{"vlan":185},{"vlan":186},{"vlan":187},{"vlan":188},{"vlan":189},{"vlan":190},{"vlan":191},{"vlan":192},{"vlan":193},{"vlan":194},{"vlan":195},{"vlan":196},{"vlan":197},{"vlan":198},{"vlan":199},{"vlan":200},{"vlan":201},{"vlan":202},{"vlan":203},{"vlan":204},{"vlan":205},{"vlan":206},{"vlan":207},{"vlan":208},{"vlan":209},{"vlan":210},{"vlan":211},{"vlan":212},{"vlan":213},{"vlan":214},{"vlan":215},{"vlan":216},{"vlan":217},{"vlan":218},{"vlan":219},{"vlan":220},{"vlan":221},{"vlan":222},{"vlan":223},{"vlan":224},{"vlan":225},{"vlan":226},{"vlan":227},{"vlan":228},{"vlan":229},{"vlan":230},{"vlan":231},{"vlan":232},{"vlan":233},{"vlan":234},{"vlan":235},{"vlan":236},{"vlan":237},{"vlan":238},{"vlan":239},{"vlan":240},{"vlan":241},{"vlan":242},{"vlan":243},{"vlan":244},{"vlan":245},{"vlan":246},{"vlan":247},{"vlan":248},{"vlan":249},{"vlan":250},{"vlan":251},{"vlan":252},{"vlan":253},{"vlan":254},{"vlan":255},{"vlan":256},{"vlan":257},{"vlan":258},{"vlan":259},{"vlan":260},{"vlan":261},{"vlan":262},{"vlan":263},{"vlan":264},{"vlan":265},{"vlan":266},{"vlan":267},{"vlan":268},{"vlan":269},{"vlan":270},{"vlan":271},{"vlan":272},{"vlan":273},{"vlan":274},{"vlan":275},{"vlan":276},{"vlan":277},{"vlan":278},{"vlan":279},{"vlan":280},{"vlan":281},{"vlan":282},{"vlan":283},{"vlan":284},{"vlan":285},{"vlan":286},{"vlan":287},{"vlan":288},{"vlan":289},{"vlan":290},{"vlan":291},{"vlan":292},{"vlan":293},{"vlan":294},{"vlan":295},{"vlan":296},{"vlan":297},{"vlan":298},{"vlan":299},{"vlan":300},{"vlan":301},{"vlan":302},{"vlan":303},{"vlan":304},{"vlan":305},{"vlan":306},{"vlan":307},{"vlan":308},{"vlan":309},{"vlan":310},{"vlan":311},{"vlan":312},{"vlan":313},{"vlan":314},{"vlan":315},{"vlan":316},{"vlan":317},{"vlan":318},{"vlan":319},{"vlan":320},{"vlan":321},{"vlan":322},{"vlan":323},{"vlan":324},{"vlan":325},{"vlan":326},{"vlan":327},{"vlan":328},{"vlan":329},{"vlan":330},{"vlan":331},{"vlan":332},{"vlan":333},{"vlan":334},{"vlan":335},{"vlan":336},{"vlan":337},{"vlan":338},{"vlan":339},{"vlan":340},{"vlan":341},{"vlan":342},{"vlan":343},{"vlan":344},{"vlan":345},{"vlan":346},{"vlan":347},{"vlan":348},{"vlan":349},{"vlan":350},{"vlan":351},{"vlan":352},{"vlan":353},{"vlan":354},{"vlan":355},{"vlan":356},{"vlan":357},{"vlan":358},{"vlan":359},{"vlan":360},{"vlan":361},{"vlan":362},{"vlan":363},{"vlan":364},{"vlan":365},{"vlan":366},{"vlan":367},{"vlan":368},{"vlan":369},{"vlan":370},{"vlan":371},{"vlan":372},{"vlan":373},{"vlan":374},{"vlan":375},{"vlan":376},{"vlan":377},{"vlan":378},{"vlan":379},{"vlan":380},{"vlan":381},{"vlan":382},{"vlan":383},{"vlan":384},{"vlan":385},{"vlan":386},{"vlan":387},{"vlan":388},{"vlan":389},{"vlan":390},{"vlan":391},{"vlan":392},{"vlan":393},{"vlan":394},{"vlan":395},{"vlan":396},{"vlan":397},{"vlan":398},{"vlan":399},{"vlan":400},{"vlan":401},{"vlan":402},{"vlan":403},{"vlan":404},{"vlan":405},{"vlan":406},{"vlan":407},{"vlan":408},{"vlan":409},{"vlan":410},{"vlan":411},{"vlan":412},{"vlan":413},{"vlan":414},{"vlan":415},{"vlan":416},{"vlan":417},{"vlan":418},{"vlan":419},{"vlan":420},{"vlan":421},{"vlan":422},{"vlan":423},{"vlan":424},{"vlan":425},{"vlan":426},{"vlan":427},{"vlan":428},{"vlan":429},{"vlan":430},{"vlan":431},{"vlan":432},{"vlan":433},{"vlan":434},{"vlan":435},{"vlan":436},{"vlan":437},{"vlan":438},{"vlan":439},{"vlan":440},{"vlan":441},{"vlan":442},{"vlan":443},{"vlan":444},{"vlan":445},{"vlan":446},{"vlan":447},{"vlan":448},{"vlan":449},{"vlan":450},{"vlan":451},{"vlan":452},{"vlan":453},{"vlan":454},{"vlan":455},{"vlan":456},{"vlan":457},{"vlan":458},{"vlan":459},{"vlan":460},{"vlan":461},{"vlan":462},{"vlan":463},{"vlan":464},{"vlan":465},{"vlan":466},{"vlan":467},{"vlan":468},{"vlan":469},{"vlan":470},{"vlan":471},{"vlan":472},{"vlan":473},{"vlan":474},{"vlan":475},{"vlan":476},{"vlan":477},{"vlan":478},{"vlan":479},{"vlan":480},{"vlan":481},{"vlan":482},{"vlan":483},{"vlan":484},{"vlan":485},{"vlan":486},{"vlan":487},{"vlan":488},{"vlan":489},{"vlan":490},{"vlan":491},{"vlan":492},{"vlan":493},{"vlan":494},{"vlan":495},{"vlan":496},{"vlan":497},{"vlan":498},{"vlan":499},{"vlan":500},{"vlan":501},{"vlan":502},{"vlan":503},{"vlan":504},{"vlan":505},{"vlan":506},{"vlan":507},{"vlan":508},{"vlan":509},{"vlan":510},{"vlan":511},{"vlan":512},{"vlan":513},{"vlan":514},{"vlan":515},{"vlan":516},{"vlan":517},{"vlan":518},{"vlan":519},{"vlan":520},{"vlan":521},{"vlan":522},{"vlan":523},{"vlan":524},{"vlan":525},{"vlan":526},{"vlan":527},{"vlan":528},{"vlan":529},{"vlan":530},{"vlan":531},{"vlan":532},{"vlan":533},{"vlan":534},{"vlan":535},{"vlan":536},{"vlan":537},{"vlan":538},{"vlan":539},{"vlan":540},{"vlan":541},{"vlan":542},{"vlan":543},{"vlan":544},{"vlan":545},{"vlan":546},{"vlan":547},{"vlan":548},{"vlan":549},{"vlan":550},{"vlan":551},{"vlan":552},{"vlan":553},{"vlan":554},{"vlan":555},{"vlan":556},{"vlan":557},{"vlan":558},{"vlan":559},{"vlan":560},{"vlan":561},{"vlan":562},{"vlan":563},{"vlan":564},{"vlan":565},{"vlan":566},{"vlan":567},{"vlan":568},{"vlan":569},{"vlan":570},{"vlan":571},{"vlan":572},{"vlan":573},{"vlan":574},{"vlan":575},{"vlan":576},{"vlan":577},{"vlan":578},{"vlan":579},{"vlan":580},{"vlan":581},{"vlan":582},{"vlan":583},{"vlan":584},{"vlan":585},{"vlan":586},{"vlan":587},{"vlan":588},{"vlan":589},{"vlan":590},{"vlan":591},{"vlan":592},{"vlan":593},{"vlan":594},{"vlan":595},{"vlan":596},{"vlan":597},{"vlan":598},{"vlan":599},{"vlan":600},{"vlan":601},{"vlan":602},{"vlan":603},{"vlan":604},{"vlan":605},{"vlan":606},{"vlan":607},{"vlan":608},{"vlan":609},{"vlan":610},{"vlan":611},{"vlan":612},{"vlan":613},{"vlan":614},{"vlan":615},{"vlan":616},{"vlan":617},{"vlan":618},{"vlan":619},{"vlan":620},{"vlan":621},{"vlan":622},{"vlan":623},{"vlan":624},{"vlan":625},{"vlan":626},{"vlan":627},{"vlan":628},{"vlan":629},{"vlan":630},{"vlan":631},{"vlan":632},{"vlan":633},{"vlan":634},{"vlan":635},{"vlan":636},{"vlan":637},{"vlan":638},{"vlan":639},{"vlan":640},{"vlan":641},{"vlan":642},{"vlan":643},{"vlan":644},{"vlan":645},{"vlan":646},{"vlan":647},{"vlan":648},{"vlan":649},{"vlan":650},{"vlan":651},{"vlan":652},{"vlan":653},{"vlan":654},{"vlan":655},{"vlan":656},{"vlan":657},{"vlan":658},{"vlan":659},{"vlan":660},{"vlan":661},{"vlan":662},{"vlan":663},{"vlan":664},{"vlan":665},{"vlan":666},{"vlan":667},{"vlan":668},{"vlan":669},{"vlan":670},{"vlan":671},{"vlan":672},{"vlan":673},{"vlan":674},{"vlan":675},{"vlan":676},{"vlan":677},{"vlan":678},{"vlan":679},{"vlan":680},{"vlan":681},{"vlan":682},{"vlan":683},{"vlan":684},{"vlan":685},{"vlan":686},{"vlan":687},{"vlan":688},{"vlan":689},{"vlan":690},{"vlan":691},{"vlan":692},{"vlan":693},{"vlan":694},{"vlan":695},{"vlan":696},{"vlan":697},{"vlan":698},{"vlan":699},{"vlan":700},{"vlan":701},{"vlan":702},{"vlan":703},{"vlan":704},{"vlan":705},{"vlan":706},{"vlan":707},{"vlan":708},{"vlan":709},{"vlan":710},{"vlan":711},{"vlan":712},{"vlan":713},{"vlan":714},{"vlan":715},{"vlan":716},{"vlan":717},{"vlan":718},{"vlan":719},{"vlan":720},{"vlan":721},{"vlan":722},{"vlan":723},{"vlan":724},{"vlan":725},{"vlan":726},{"vlan":727},{"vlan":728},{"vlan":729},{"vlan":730},{"vlan":731},{"vlan":732},{"vlan":733},{"vlan":734},{"vlan":735},{"vlan":736},{"vlan":737},{"vlan":738},{"vlan":739},{"vlan":740},{"vlan":741},{"vlan":742},{"vlan":743},{"vlan":744},{"vlan":745},{"vlan":746},{"vlan":747},{"vlan":748},{"vlan":749},{"vlan":750},{"vlan":751},{"vlan":752},{"vlan":753},{"vlan":754},{"vlan":755},{"vlan":756},{"vlan":757},{"vlan":758},{"vlan":759},{"vlan":760},{"vlan":761},{"vlan":762},{"vlan":763},{"vlan":764},{"vlan":765},{"vlan":766},{"vlan":767},{"vlan":768},{"vlan":769},{"vlan":770},{"vlan":771},{"vlan":772},{"vlan":773},{"vlan":774},{"vlan":775},{"vlan":776},{"vlan":777},{"vlan":778},{"vlan":779},{"vlan":780},{"vlan":781},{"vlan":782},{"vlan":783},{"vlan":784},{"vlan":785},{"vlan":786},{"vlan":787},{"vlan":788},{"vlan":789},{"vlan":790},{"vlan":791},{"vlan":792},{"vlan":793},{"vlan":794},{"vlan":795},{"vlan":796},{"vlan":797},{"vlan":798},{"vlan":799},{"vlan":800},{"vlan":801},{"vlan":802},{"vlan":803},{"vlan":804},{"vlan":805},{"vlan":806},{"vlan":807},{"vlan":808},{"vlan":809},{"vlan":810},{"vlan":811},{"vlan":812},{"vlan":813},{"vlan":814},{"vlan":815},{"vlan":816},{"vlan":817},{"vlan":818},{"vlan":819},{"vlan":820},{"vlan":821},{"vlan":822},{"vlan":823},{"vlan":824},{"vlan":825},{"vlan":826},{"vlan":827},{"vlan":828},{"vlan":829},{"vlan":830},{"vlan":831},{"vlan":832},{"vlan":833},{"vlan":834},{"vlan":835},{"vlan":836},{"vlan":837},{"vlan":838},{"vlan":839},{"vlan":840},{"vlan":841},{"vlan":842},{"vlan":843},{"vlan":844},{"vlan":845},{"vlan":846},{"vlan":847},{"vlan":848},{"vlan":849},{"vlan":850},{"vlan":851},{"vlan":852},{"vlan":853},{"vlan":854},{"vlan":855},{"vlan":856},{"vlan":857},{"vlan":858},{"vlan":859},{"vlan":860},{"vlan":861},{"vlan":862},{"vlan":863},{"vlan":864},{"vlan":865},{"vlan":866},{"vlan":867},{"vlan":868},{"vlan":869},{"vlan":870},{"vlan":871},{"vlan":872},{"vlan":873},{"vlan":874},{"vlan":875},{"vlan":876},{"vlan":877},{"vlan":878},{"vlan":879},{"vlan":880},{"vlan":881},{"vlan":882},{"vlan":883},{"vlan":884},{"vlan":885},{"vlan":886},{"vlan":887},{"vlan":888},{"vlan":889},{"vlan":890},{"vlan":891},{"vlan":892},{"vlan":893},{"vlan":894},{"vlan":895},{"vlan":896},{"vlan":897},{"vlan":898},{"vlan":899},{"vlan":900},{"vlan":901},{"vlan":902},{"vlan":903},{"vlan":904},{"vlan":905},{"vlan":906},{"vlan":907},{"vlan":908},{"vlan":909},{"vlan":910},{"vlan":911},{"vlan":912},{"vlan":913},{"vlan":914},{"vlan":915},{"vlan":916},{"vlan":917},{"vlan":918},{"vlan":919},{"vlan":920},{"vlan":921},{"vlan":922},{"vlan":923},{"vlan":924},{"vlan":925},{"vlan":926},{"vlan":927},{"vlan":928},{"vlan":929},{"vlan":930},{"vlan":931},{"vlan":932},{"vlan":933},{"vlan":934},{"vlan":935},{"vlan":936},{"vlan":937},{"vlan":938},{"vlan":939},{"vlan":940},{"vlan":941},{"vlan":942},{"vlan":943},{"vlan":944},{"vlan":945},{"vlan":946},{"vlan":947},{"vlan":948},{"vlan":949},{"vlan":950},{"vlan":951},{"vlan":952},{"vlan":953},{"vlan":954},{"vlan":955},{"vlan":956},{"vlan":957},{"vlan":958},{"vlan":959},{"vlan":960},{"vlan":961},{"vlan":962},{"vlan":963},{"vlan":964},{"vlan":965},{"vlan":966},{"vlan":967},{"vlan":968},{"vlan":969},{"vlan":970},{"vlan":971},{"vlan":972},{"vlan":973},{"vlan":974},{"vlan":975},{"vlan":976},{"vlan":977},{"vlan":978},{"vlan":979},{"vlan":980},{"vlan":981},{"vlan":982},{"vlan":983},{"vlan":984},{"vlan":985},{"vlan":986},{"vlan":987},{"vlan":988},{"vlan":989},{"vlan":990},{"vlan":991},{"vlan":992},{"vlan":993},{"vlan":994},{"vlan":995},{"vlan":996},{"vlan":997},{"vlan":998},{"vlan":999},{"vlan":1000},{"vlan":1001},{"vlan":1002},{"vlan":1003},{"vlan":1004},{"vlan":1005},{"vlan":1006},{"vlan":1007},{"vlan":1008},{"vlan":1009},{"vlan":1010},{"vlan":1011},{"vlan":1012},{"vlan":1013},{"vlan":1014},{"vlan":1015},{"vlan":1016},{"vlan":1017},{"vlan":1018},{"vlan":1019},{"vlan":1020},{"vlan":1021},{"vlan":1022},{"vlan":1023},{"vlan":1024},{"vlan":1025},{"vlan":1026},{"vlan":1027},{"vlan":1028},{"vlan":1029},{"vlan":1030},{"vlan":1031},{"vlan":1032},{"vlan":1033},{"vlan":1034},{"vlan":1035},{"vlan":1036},{"vlan":1037},{"vlan":1038},{"vlan":1039},{"vlan":1040},{"vlan":1041},{"vlan":1042},{"vlan":1043},{"vlan":1044},{"vlan":1045},{"vlan":1046},{"vlan":1047},{"vlan":1048},{"vlan":1049},{"vlan":1050},{"vlan":1051},{"vlan":1052},{"vlan":1053},{"vlan":1054},{"vlan":1055},{"vlan":1056},{"vlan":1057},{"vlan":1058},{"vlan":1059},{"vlan":1060},{"vlan":1061},{"vlan":1062},{"vlan":1063},{"vlan":1064},{"vlan":1065},{"vlan":1066},{"vlan":1067},{"vlan":1068},{"vlan":1069},{"vlan":1070},{"vlan":1071},{"vlan":1072},{"vlan":1073},{"vlan":1074},{"vlan":1075},{"vlan":1076},{"vlan":1077},{"vlan":1078},{"vlan":1079},{"vlan":1080},{"vlan":1081},{"vlan":1082},{"vlan":1083},{"vlan":1084},{"vlan":1085},{"vlan":1086},{"vlan":1087},{"vlan":1088},{"vlan":1089},{"vlan":1090},{"vlan":1091},{"vlan":1092},{"vlan":1093},{"vlan":1094},{"vlan":1095},{"vlan":1096},{"vlan":1097},{"vlan":1098},{"vlan":1099},{"vlan":1100},{"vlan":1101},{"vlan":1102},{"vlan":1103},{"vlan":1104},{"vlan":1105},{"vlan":1106},{"vlan":1107},{"vlan":1108},{"vlan":1109},{"vlan":1110},{"vlan":1111},{"vlan":1112},{"vlan":1113},{"vlan":1114},{"vlan":1115},{"vlan":1116},{"vlan":1117},{"vlan":1118},{"vlan":1119},{"vlan":1120},{"vlan":1121},{"vlan":1122},{"vlan":1123},{"vlan":1124},{"vlan":1125},{"vlan":1126},{"vlan":1127},{"vlan":1128},{"vlan":1129},{"vlan":1130},{"vlan":1131},{"vlan":1132},{"vlan":1133},{"vlan":1134},{"vlan":1135},{"vlan":1136},{"vlan":1137},{"vlan":1138},{"vlan":1139},{"vlan":1140},{"vlan":1141},{"vlan":1142},{"vlan":1143},{"vlan":1144},{"vlan":1145},{"vlan":1146},{"vlan":1147},{"vlan":1148},{"vlan":1149},{"vlan":1150},{"vlan":1151},{"vlan":1152},{"vlan":1153},{"vlan":1154},{"vlan":1155},{"vlan":1156},{"vlan":1157},{"vlan":1158},{"vlan":1159},{"vlan":1160},{"vlan":1161},{"vlan":1162},{"vlan":1163},{"vlan":1164},{"vlan":1165},{"vlan":1166},{"vlan":1167},{"vlan":1168},{"vlan":1169},{"vlan":1170},{"vlan":1171},{"vlan":1172},{"vlan":1173},{"vlan":1174},{"vlan":1175},{"vlan":1176},{"vlan":1177},{"vlan":1178},{"vlan":1179},{"vlan":1180},{"vlan":1181},{"vlan":1182},{"vlan":1183},{"vlan":1184},{"vlan":1185},{"vlan":1186},{"vlan":1187},{"vlan":1188},{"vlan":1189},{"vlan":1190},{"vlan":1191},{"vlan":1192},{"vlan":1193},{"vlan":1194},{"vlan":1195},{"vlan":1196},{"vlan":1197},{"vlan":1198},{"vlan":1199},{"vlan":1200},{"vlan":1201},{"vlan":1202},{"vlan":1203},{"vlan":1204},{"vlan":1205},{"vlan":1206},{"vlan":1207},{"vlan":1208},{"vlan":1209},{"vlan":1210},{"vlan":1211},{"vlan":1212},{"vlan":1213},{"vlan":1214},{"vlan":1215},{"vlan":1216},{"vlan":1217},{"vlan":1218},{"vlan":1219},{"vlan":1220},{"vlan":1221},{"vlan":1222},{"vlan":1223},{"vlan":1224},{"vlan":1225},{"vlan":1226},{"vlan":1227},{"vlan":1228},{"vlan":1229},{"vlan":1230},{"vlan":1231},{"vlan":1232},{"vlan":1233},{"vlan":1234},{"vlan":1235},{"vlan":1236},{"vlan":1237},{"vlan":1238},{"vlan":1239},{"vlan":1240},{"vlan":1241},{"vlan":1242},{"vlan":1243},{"vlan":1244},{"vlan":1245},{"vlan":1246},{"vlan":1247},{"vlan":1248},{"vlan":1249},{"vlan":1250},{"vlan":1251},{"vlan":1252},{"vlan":1253},{"vlan":1254},{"vlan":1255},{"vlan":1256},{"vlan":1257},{"vlan":1258},{"vlan":1259},{"vlan":1260},{"vlan":1261},{"vlan":1262},{"vlan":1263},{"vlan":1264},{"vlan":1265},{"vlan":1266},{"vlan":1267},{"vlan":1268},{"vlan":1269},{"vlan":1270},{"vlan":1271},{"vlan":1272},{"vlan":1273},{"vlan":1274},{"vlan":1275},{"vlan":1276},{"vlan":1277},{"vlan":1278},{"vlan":1279},{"vlan":1280},{"vlan":1281},{"vlan":1282},{"vlan":1283},{"vlan":1284},{"vlan":1285},{"vlan":1286},{"vlan":1287},{"vlan":1288},{"vlan":1289},{"vlan":1290},{"vlan":1291},{"vlan":1292},{"vlan":1293},{"vlan":1294},{"vlan":1295},{"vlan":1296},{"vlan":1297},{"vlan":1298},{"vlan":1299},{"vlan":1300},{"vlan":1301},{"vlan":1302},{"vlan":1303},{"vlan":1304},{"vlan":1305},{"vlan":1306},{"vlan":1307},{"vlan":1308},{"vlan":1309},{"vlan":1310},{"vlan":1311},{"vlan":1312},{"vlan":1313},{"vlan":1314},{"vlan":1315},{"vlan":1316},{"vlan":1317},{"vlan":1318},{"vlan":1319},{"vlan":1320},{"vlan":1321},{"vlan":1322},{"vlan":1323},{"vlan":1324},{"vlan":1325},{"vlan":1326},{"vlan":1327},{"vlan":1328},{"vlan":1329},{"vlan":1330},{"vlan":1331},{"vlan":1332},{"vlan":1333},{"vlan":1334},{"vlan":1335},{"vlan":1336},{"vlan":1337},{"vlan":1338},{"vlan":1339},{"vlan":1340},{"vlan":1341},{"vlan":1342},{"vlan":1343},{"vlan":1344},{"vlan":1345},{"vlan":1346},{"vlan":1347},{"vlan":1348},{"vlan":1349},{"vlan":1350},{"vlan":1351},{"vlan":1352},{"vlan":1353},{"vlan":1354},{"vlan":1355},{"vlan":1356},{"vlan":1357},{"vlan":1358},{"vlan":1359},{"vlan":1360},{"vlan":1361},{"vlan":1362},{"vlan":1363},{"vlan":1364},{"vlan":1365},{"vlan":1366},{"vlan":1367},{"vlan":1368},{"vlan":1369},{"vlan":1370},{"vlan":1371},{"vlan":1372},{"vlan":1373},{"vlan":1374},{"vlan":1375},{"vlan":1376},{"vlan":1377},{"vlan":1378},{"vlan":1379},{"vlan":1380},{"vlan":1381},{"vlan":1382},{"vlan":1383},{"vlan":1384},{"vlan":1385},{"vlan":1386},{"vlan":1387},{"vlan":1388},{"vlan":1389},{"vlan":1390},{"vlan":1391},{"vlan":1392},{"vlan":1393},{"vlan":1394},{"vlan":1395},{"vlan":1396},{"vlan":1397},{"vlan":1398},{"vlan":1399},{"vlan":1400},{"vlan":1401},{"vlan":1402},{"vlan":1403},{"vlan":1404},{"vlan":1405},{"vlan":1406},{"vlan":1407},{"vlan":1408},{"vlan":1409},{"vlan":1410},{"vlan":1411},{"vlan":1412},{"vlan":1413},{"vlan":1414},{"vlan":1415},{"vlan":1416},{"vlan":1417},{"vlan":1418},{"vlan":1419},{"vlan":1420},{"vlan":1421},{"vlan":1422},{"vlan":1423},{"vlan":1424},{"vlan":1425},{"vlan":1426},{"vlan":1427},{"vlan":1428},{"vlan":1429},{"vlan":1430},{"vlan":1431},{"vlan":1432},{"vlan":1433},{"vlan":1434},{"vlan":1435},{"vlan":1436},{"vlan":1437},{"vlan":1438},{"vlan":1439},{"vlan":1440},{"vlan":1441},{"vlan":1442},{"vlan":1443},{"vlan":1444},{"vlan":1445},{"vlan":1446},{"vlan":1447},{"vlan":1448},{"vlan":1449},{"vlan":1450},{"vlan":1451},{"vlan":1452},{"vlan":1453},{"vlan":1454},{"vlan":1455},{"vlan":1456},{"vlan":1457},{"vlan":1458},{"vlan":1459},{"vlan":1460},{"vlan":1461},{"vlan":1462},{"vlan":1463},{"vlan":1464},{"vlan":1465},{"vlan":1466},{"vlan":1467},{"vlan":1468},{"vlan":1469},{"vlan":1470},{"vlan":1471},{"vlan":1472},{"vlan":1473},{"vlan":1474},{"vlan":1475},{"vlan":1476},{"vlan":1477},{"vlan":1478},{"vlan":1479},{"vlan":1480},{"vlan":1481},{"vlan":1482},{"vlan":1483},{"vlan":1484},{"vlan":1485},{"vlan":1486},{"vlan":1487},{"vlan":1488},{"vlan":1489},{"vlan":1490},{"vlan":1491},{"vlan":1492},{"vlan":1493},{"vlan":1494},{"vlan":1495},{"vlan":1496},{"vlan":1497},{"vlan":1498},{"vlan":1499},{"vlan":1500},{"vlan":1501},{"vlan":1502},{"vlan":1503},{"vlan":1504},{"vlan":1505},{"vlan":1506},{"vlan":1507},{"vlan":1508},{"vlan":1509},{"vlan":1510},{"vlan":1511},{"vlan":1512},{"vlan":1513},{"vlan":1514},{"vlan":1515},{"vlan":1516},{"vlan":1517},{"vlan":1518},{"vlan":1519},{"vlan":1520},{"vlan":1521},{"vlan":1522},{"vlan":1523},{"vlan":1524},{"vlan":1525},{"vlan":1526},{"vlan":1527},{"vlan":1528},{"vlan":1529},{"vlan":1530},{"vlan":1531},{"vlan":1532},{"vlan":1533},{"vlan":1534},{"vlan":1535},{"vlan":1536},{"vlan":1537},{"vlan":1538},{"vlan":1539},{"vlan":1540},{"vlan":1541},{"vlan":1542},{"vlan":1543},{"vlan":1544},{"vlan":1545},{"vlan":1546},{"vlan":1547},{"vlan":1548},{"vlan":1549},{"vlan":1550},{"vlan":1551},{"vlan":1552},{"vlan":1553},{"vlan":1554},{"vlan":1555},{"vlan":1556},{"vlan":1557},{"vlan":1558},{"vlan":1559},{"vlan":1560},{"vlan":1561},{"vlan":1562},{"vlan":1563},{"vlan":1564},{"vlan":1565},{"vlan":1566},{"vlan":1567},{"vlan":1568},{"vlan":1569},{"vlan":1570},{"vlan":1571},{"vlan":1572},{"vlan":1573},{"vlan":1574},{"vlan":1575},{"vlan":1576},{"vlan":1577},{"vlan":1578},{"vlan":1579},{"vlan":1580},{"vlan":1581},{"vlan":1582},{"vlan":1583},{"vlan":1584},{"vlan":1585},{"vlan":1586},{"vlan":1587},{"vlan":1588},{"vlan":1589},{"vlan":1590},{"vlan":1591},{"vlan":1592},{"vlan":1593},{"vlan":1594},{"vlan":1595},{"vlan":1596},{"vlan":1597},{"vlan":1598},{"vlan":1599},{"vlan":1600},{"vlan":1601},{"vlan":1602},{"vlan":1603},{"vlan":1604},{"vlan":1605},{"vlan":1606},{"vlan":1607},{"vlan":1608},{"vlan":1609},{"vlan":1610},{"vlan":1611},{"vlan":1612},{"vlan":1613},{"vlan":1614},{"vlan":1615},{"vlan":1616},{"vlan":1617},{"vlan":1618},{"vlan":1619},{"vlan":1620},{"vlan":1621},{"vlan":1622},{"vlan":1623},{"vlan":1624},{"vlan":1625},{"vlan":1626},{"vlan":1627},{"vlan":1628},{"vlan":1629},{"vlan":1630},{"vlan":1631},{"vlan":1632},{"vlan":1633},{"vlan":1634},{"vlan":1635},{"vlan":1636},{"vlan":1637},{"vlan":1638},{"vlan":1639},{"vlan":1640},{"vlan":1641},{"vlan":1642},{"vlan":1643},{"vlan":1644},{"vlan":1645},{"vlan":1646},{"vlan":1647},{"vlan":1648},{"vlan":1649},{"vlan":1650},{"vlan":1651},{"vlan":1652},{"vlan":1653},{"vlan":1654},{"vlan":1655},{"vlan":1656},{"vlan":1657},{"vlan":1658},{"vlan":1659},{"vlan":1660},{"vlan":1661},{"vlan":1662},{"vlan":1663},{"vlan":1664},{"vlan":1665},{"vlan":1666},{"vlan":1667},{"vlan":1668},{"vlan":1669},{"vlan":1670},{"vlan":1671},{"vlan":1672},{"vlan":1673},{"vlan":1674},{"vlan":1675},{"vlan":1676},{"vlan":1677},{"vlan":1678},{"vlan":1679},{"vlan":1680},{"vlan":1681},{"vlan":1682},{"vlan":1683},{"vlan":1684},{"vlan":1685},{"vlan":1686},{"vlan":1687},{"vlan":1688},{"vlan":1689},{"vlan":1690},{"vlan":1691},{"vlan":1692},{"vlan":1693},{"vlan":1694},{"vlan":1695},{"vlan":1696},{"vlan":1697},{"vlan":1698},{"vlan":1699},{"vlan":1700},{"vlan":1701},{"vlan":1702},{"vlan":1703},{"vlan":1704},{"vlan":1705},{"vlan":1706},{"vlan":1707},{"vlan":1708},{"vlan":1709},{"vlan":1710},{"vlan":1711},{"vlan":1712},{"vlan":1713},{"vlan":1714},{"vlan":1715},{"vlan":1716},{"vlan":1717},{"vlan":1718},{"vlan":1719},{"vlan":1720},{"vlan":1721},{"vlan":1722},{"vlan":1723},{"vlan":1724},{"vlan":1725},{"vlan":1726},{"vlan":1727},{"vlan":1728},{"vlan":1729},{"vlan":1730},{"vlan":1731},{"vlan":1732},{"vlan":1733},{"vlan":1734},{"vlan":1735},{"vlan":1736},{"vlan":1737},{"vlan":1738},{"vlan":1739},{"vlan":1740},{"vlan":1741},{"vlan":1742},{"vlan":1743},{"vlan":1744},{"vlan":1745},{"vlan":1746},{"vlan":1747},{"vlan":1748},{"vlan":1749},{"vlan":1750},{"vlan":1751},{"vlan":1752},{"vlan":1753},{"vlan":1754},{"vlan":1755},{"vlan":1756},{"vlan":1757},{"vlan":1758},{"vlan":1759},{"vlan":1760},{"vlan":1761},{"vlan":1762},{"vlan":1763},{"vlan":1764},{"vlan":1765},{"vlan":1766},{"vlan":1767},{"vlan":1768},{"vlan":1769},{"vlan":1770},{"vlan":1771},{"vlan":1772},{"vlan":1773},{"vlan":1774},{"vlan":1775},{"vlan":1776},{"vlan":1777},{"vlan":1778},{"vlan":1779},{"vlan":1780},{"vlan":1781},{"vlan":1782},{"vlan":1783},{"vlan":1784},{"vlan":1785},{"vlan":1786},{"vlan":1787},{"vlan":1788},{"vlan":1789},{"vlan":1790},{"vlan":1791},{"vlan":1792},{"vlan":1793},{"vlan":1794},{"vlan":1795},{"vlan":1796},{"vlan":1797},{"vlan":1798},{"vlan":1799},{"vlan":1800},{"vlan":1801},{"vlan":1802},{"vlan":1803},{"vlan":1804},{"vlan":1805},{"vlan":1806},{"vlan":1807},{"vlan":1808},{"vlan":1809},{"vlan":1810},{"vlan":1811},{"vlan":1812},{"vlan":1813},{"vlan":1814},{"vlan":1815},{"vlan":1816},{"vlan":1817},{"vlan":1818},{"vlan":1819},{"vlan":1820},{"vlan":1821},{"vlan":1822},{"vlan":1823},{"vlan":1824},{"vlan":1825},{"vlan":1826},{"vlan":1827},{"vlan":1828},{"vlan":1829},{"vlan":1830},{"vlan":1831},{"vlan":1832},{"vlan":1833},{"vlan":1834},{"vlan":1835},{"vlan":1836},{"vlan":1837},{"vlan":1838},{"vlan":1839},{"vlan":1840},{"vlan":1841},{"vlan":1842},{"vlan":1843},{"vlan":1844},{"vlan":1845},{"vlan":1846},{"vlan":1847},{"vlan":1848},{"vlan":1849},{"vlan":1850},{"vlan":1851},{"vlan":1852},{"vlan":1853},{"vlan":1854},{"vlan":1855},{"vlan":1856},{"vlan":1857},{"vlan":1858},{"vlan":1859},{"vlan":1860},{"vlan":1861},{"vlan":1862},{"vlan":1863},{"vlan":1864},{"vlan":1865},{"vlan":1866},{"vlan":1867},{"vlan":1868},{"vlan":1869},{"vlan":1870},{"vlan":1871},{"vlan":1872},{"vlan":1873},{"vlan":1874},{"vlan":1875},{"vlan":1876},{"vlan":1877},{"vlan":1878},{"vlan":1879},{"vlan":1880},{"vlan":1881},{"vlan":1882},{"vlan":1883},{"vlan":1884},{"vlan":1885},{"vlan":1886},{"vlan":1887},{"vlan":1888},{"vlan":1889},{"vlan":1890},{"vlan":1891},{"vlan":1892},{"vlan":1893},{"vlan":1894},{"vlan":1895},{"vlan":1896},{"vlan":1897},{"vlan":1898},{"vlan":1899},{"vlan":1900},{"vlan":1901},{"vlan":1902},{"vlan":1903},{"vlan":1904},{"vlan":1905},{"vlan":1906},{"vlan":1907},{"vlan":1908},{"vlan":1909},{"vlan":1910},{"vlan":1911},{"vlan":1912},{"vlan":1913},{"vlan":1914},{"vlan":1915},{"vlan":1916},{"vlan":1917},{"vlan":1918},{"vlan":1919},{"vlan":1920},{"vlan":1921},{"vlan":1922},{"vlan":1923},{"vlan":1924},{"vlan":1925},{"vlan":1926},{"vlan":1927},{"vlan":1928},{"vlan":1929},{"vlan":1930},{"vlan":1931},{"vlan":1932},{"vlan":1933},{"vlan":1934},{"vlan":1935},{"vlan":1936},{"vlan":1937},{"vlan":1938},{"vlan":1939},{"vlan":1940},{"vlan":1941},{"vlan":1942},{"vlan":1943},{"vlan":1944},{"vlan":1945},{"vlan":1946},{"vlan":1947},{"vlan":1948},{"vlan":1949},{"vlan":1950},{"vlan":1951},{"vlan":1952},{"vlan":1953},{"vlan":1954},{"vlan":1955},{"vlan":1956},{"vlan":1957},{"vlan":1958},{"vlan":1959},{"vlan":1960},{"vlan":1961},{"vlan":1962},{"vlan":1963},{"vlan":1964},{"vlan":1965},{"vlan":1966},{"vlan":1967},{"vlan":1968},{"vlan":1969},{"vlan":1970},{"vlan":1971},{"vlan":1972},{"vlan":1973},{"vlan":1974},{"vlan":1975},{"vlan":1976},{"vlan":1977},{"vlan":1978},{"vlan":1979},{"vlan":1980},{"vlan":1981},{"vlan":1982},{"vlan":1983},{"vlan":1984},{"vlan":1985},{"vlan":1986},{"vlan":1987},{"vlan":1988},{"vlan":1989},{"vlan":1990},{"vlan":1991},{"vlan":1992},{"vlan":1993},{"vlan":1994},{"vlan":1995},{"vlan":1996},{"vlan":1997},{"vlan":1998},{"vlan":1999},{"vlan":2000},{"vlan":2001},{"vlan":2002},{"vlan":2003},{"vlan":2004},{"vlan":2005},{"vlan":2006},{"vlan":2007},{"vlan":2008},{"vlan":2009},{"vlan":2010},{"vlan":2011},{"vlan":2012},{"vlan":2013},{"vlan":2014},{"vlan":2015},{"vlan":2016},{"vlan":2017},{"vlan":2018},{"vlan":2019},{"vlan":2020},{"vlan":2021},{"vlan":2022},{"vlan":2023},{"vlan":2024},{"vlan":2025},{"vlan":2026},{"vlan":2027},{"vlan":2028},{"vlan":2029},{"vlan":2030},{"vlan":2031},{"vlan":2032},{"vlan":2033},{"vlan":2034},{"vlan":2035},{"vlan":2036},{"vlan":2037},{"vlan":2038},{"vlan":2039},{"vlan":2040},{"vlan":2041},{"vlan":2042},{"vlan":2043},{"vlan":2044},{"vlan":2045},{"vlan":2046},{"vlan":2047},{"vlan":2048},{"vlan":2049},{"vlan":2050},{"vlan":2051},{"vlan":2052},{"vlan":2053},{"vlan":2054},{"vlan":2055},{"vlan":2056},{"vlan":2057},{"vlan":2058},{"vlan":2059},{"vlan":2060},{"vlan":2061},{"vlan":2062},{"vlan":2063},{"vlan":2064},{"vlan":2065},{"vlan":2066},{"vlan":2067},{"vlan":2068},{"vlan":2069},{"vlan":2070},{"vlan":2071},{"vlan":2072},{"vlan":2073},{"vlan":2074},{"vlan":2075},{"vlan":2076},{"vlan":2077},{"vlan":2078},{"vlan":2079},{"vlan":2080},{"vlan":2081},{"vlan":2082},{"vlan":2083},{"vlan":2084},{"vlan":2085},{"vlan":2086},{"vlan":2087},{"vlan":2088},{"vlan":2089},{"vlan":2090},{"vlan":2091},{"vlan":2092},{"vlan":2093},{"vlan":2094},{"vlan":2095},{"vlan":2096},{"vlan":2097},{"vlan":2098},{"vlan":2099},{"vlan":2100},{"vlan":2101},{"vlan":2102},{"vlan":2103},{"vlan":2104},{"vlan":2105},{"vlan":2106},{"vlan":2107},{"vlan":2108},{"vlan":2109},{"vlan":2110},{"vlan":2111},{"vlan":2112},{"vlan":2113},{"vlan":2114},{"vlan":2115},{"vlan":2116},{"vlan":2117},{"vlan":2118},{"vlan":2119},{"vlan":2120},{"vlan":2121},{"vlan":2122},{"vlan":2123},{"vlan":2124},{"vlan":2125},{"vlan":2126},{"vlan":2127},{"vlan":2128},{"vlan":2129},{"vlan":2130},{"vlan":2131},{"vlan":2132},{"vlan":2133},{"vlan":2134},{"vlan":2135},{"vlan":2136},{"vlan":2137},{"vlan":2138},{"vlan":2139},{"vlan":2140},{"vlan":2141},{"vlan":2142},{"vlan":2143},{"vlan":2144},{"vlan":2145},{"vlan":2146},{"vlan":2147},{"vlan":2148},{"vlan":2149},{"vlan":2150},{"vlan":2151},{"vlan":2152},{"vlan":2153},{"vlan":2154},{"vlan":2155},{"vlan":2156},{"vlan":2157},{"vlan":2158},{"vlan":2159},{"vlan":2160},{"vlan":2161},{"vlan":2162},{"vlan":2163},{"vlan":2164},{"vlan":2165},{"vlan":2166},{"vlan":2167},{"vlan":2168},{"vlan":2169},{"vlan":2170},{"vlan":2171},{"vlan":2172},{"vlan":2173},{"vlan":2174},{"vlan":2175},{"vlan":2176},{"vlan":2177},{"vlan":2178},{"vlan":2179},{"vlan":2180},{"vlan":2181},{"vlan":2182},{"vlan":2183},{"vlan":2184},{"vlan":2185},{"vlan":2186},{"vlan":2187},{"vlan":2188},{"vlan":2189},{"vlan":2190},{"vlan":2191},{"vlan":2192},{"vlan":2193},{"vlan":2194},{"vlan":2195},{"vlan":2196},{"vlan":2197},{"vlan":2198},{"vlan":2199},{"vlan":2200},{"vlan":2201},{"vlan":2202},{"vlan":2203},{"vlan":2204},{"vlan":2205},{"vlan":2206},{"vlan":2207},{"vlan":2208},{"vlan":2209},{"vlan":2210},{"vlan":2211},{"vlan":2212},{"vlan":2213},{"vlan":2214},{"vlan":2215},{"vlan":2216},{"vlan":2217},{"vlan":2218},{"vlan":2219},{"vlan":2220},{"vlan":2221},{"vlan":2222},{"vlan":2223},{"vlan":2224},{"vlan":2225},{"vlan":2226},{"vlan":2227},{"vlan":2228},{"vlan":2229},{"vlan":2230},{"vlan":2231},{"vlan":2232},{"vlan":2233},{"vlan":2234},{"vlan":2235},{"vlan":2236},{"vlan":2237},{"vlan":2238},{"vlan":2239},{"vlan":2240},{"vlan":2241},{"vlan":2242},{"vlan":2243},{"vlan":2244},{"vlan":2245},{"vlan":2246},{"vlan":2247},{"vlan":2248},{"vlan":2249},{"vlan":2250},{"vlan":2251},{"vlan":2252},{"vlan":2253},{"vlan":2254},{"vlan":2255},{"vlan":2256},{"vlan":2257},{"vlan":2258},{"vlan":2259},{"vlan":2260},{"vlan":2261},{"vlan":2262},{"vlan":2263},{"vlan":2264},{"vlan":2265},{"vlan":2266},{"vlan":2267},{"vlan":2268},{"vlan":2269},{"vlan":2270},{"vlan":2271},{"vlan":2272},{"vlan":2273},{"vlan":2274},{"vlan":2275},{"vlan":2276},{"vlan":2277},{"vlan":2278},{"vlan":2279},{"vlan":2280},{"vlan":2281},{"vlan":2282},{"vlan":2283},{"vlan":2284},{"vlan":2285},{"vlan":2286},{"vlan":2287},{"vlan":2288},{"vlan":2289},{"vlan":2290},{"vlan":2291},{"vlan":2292},{"vlan":2293},{"vlan":2294},{"vlan":2295},{"vlan":2296},{"vlan":2297},{"vlan":2298},{"vlan":2299},{"vlan":2300},{"vlan":2301},{"vlan":2302},{"vlan":2303},{"vlan":2304},{"vlan":2305},{"vlan":2306},{"vlan":2307},{"vlan":2308},{"vlan":2309},{"vlan":2310},{"vlan":2311},{"vlan":2312},{"vlan":2313},{"vlan":2314},{"vlan":2315},{"vlan":2316},{"vlan":2317},{"vlan":2318},{"vlan":2319},{"vlan":2320},{"vlan":2321},{"vlan":2322},{"vlan":2323},{"vlan":2324},{"vlan":2325},{"vlan":2326},{"vlan":2327},{"vlan":2328},{"vlan":2329},{"vlan":2330},{"vlan":2331},{"vlan":2332},{"vlan":2333},{"vlan":2334},{"vlan":2335},{"vlan":2336},{"vlan":2337},{"vlan":2338},{"vlan":2339},{"vlan":2340},{"vlan":2341},{"vlan":2342},{"vlan":2343},{"vlan":2344},{"vlan":2345},{"vlan":2346},{"vlan":2347},{"vlan":2348},{"vlan":2349},{"vlan":2350},{"vlan":2351},{"vlan":2352},{"vlan":2353},{"vlan":2354},{"vlan":2355},{"vlan":2356},{"vlan":2357},{"vlan":2358},{"vlan":2359},{"vlan":2360},{"vlan":2361},{"vlan":2362},{"vlan":2363},{"vlan":2364},{"vlan":2365},{"vlan":2366},{"vlan":2367},{"vlan":2368},{"vlan":2369},{"vlan":2370},{"vlan":2371},{"vlan":2372},{"vlan":2373},{"vlan":2374},{"vlan":2375},{"vlan":2376},{"vlan":2377},{"vlan":2378},{"vlan":2379},{"vlan":2380},{"vlan":2381},{"vlan":2382},{"vlan":2383},{"vlan":2384},{"vlan":2385},{"vlan":2386},{"vlan":2387},{"vlan":2388},{"vlan":2389},{"vlan":2390},{"vlan":2391},{"vlan":2392},{"vlan":2393},{"vlan":2394},{"vlan":2395},{"vlan":2396},{"vlan":2397},{"vlan":2398},{"vlan":2399},{"vlan":2400},{"vlan":2401},{"vlan":2402},{"vlan":2403},{"vlan":2404},{"vlan":2405},{"vlan":2406},{"vlan":2407},{"vlan":2408},{"vlan":2409},{"vlan":2410},{"vlan":2411},{"vlan":2412},{"vlan":2413},{"vlan":2414},{"vlan":2415},{"vlan":2416},{"vlan":2417},{"vlan":2418},{"vlan":2419},{"vlan":2420},{"vlan":2421},{"vlan":2422},{"vlan":2423},{"vlan":2424},{"vlan":2425},{"vlan":2426},{"vlan":2427},{"vlan":2428},{"vlan":2429},{"vlan":2430},{"vlan":2431},{"vlan":2432},{"vlan":2433},{"vlan":2434},{"vlan":2435},{"vlan":2436},{"vlan":2437},{"vlan":2438},{"vlan":2439},{"vlan":2440},{"vlan":2441},{"vlan":2442},{"vlan":2443},{"vlan":2444},{"vlan":2445},{"vlan":2446},{"vlan":2447},{"vlan":2448},{"vlan":2449},{"vlan":2450},{"vlan":2451},{"vlan":2452},{"vlan":2453},{"vlan":2454},{"vlan":2455},{"vlan":2456},{"vlan":2457},{"vlan":2458},{"vlan":2459},{"vlan":2460},{"vlan":2461},{"vlan":2462},{"vlan":2463},{"vlan":2464},{"vlan":2465},{"vlan":2466},{"vlan":2467},{"vlan":2468},{"vlan":2469},{"vlan":2470},{"vlan":2471},{"vlan":2472},{"vlan":2473},{"vlan":2474},{"vlan":2475},{"vlan":2476},{"vlan":2477},{"vlan":2478},{"vlan":2479},{"vlan":2480},{"vlan":2481},{"vlan":2482},{"vlan":2483},{"vlan":2484},{"vlan":2485},{"vlan":2486},{"vlan":2487},{"vlan":2488},{"vlan":2489},{"vlan":2490},{"vlan":2491},{"vlan":2492},{"vlan":2493},{"vlan":2494},{"vlan":2495},{"vlan":2496},{"vlan":2497},{"vlan":2498},{"vlan":2499},{"vlan":2500},{"vlan":2501},{"vlan":2502},{"vlan":2503},{"vlan":2504},{"vlan":2505},{"vlan":2506},{"vlan":2507},{"vlan":2508},{"vlan":2509},{"vlan":2510},{"vlan":2511},{"vlan":2512},{"vlan":2513},{"vlan":2514},{"vlan":2515},{"vlan":2516},{"vlan":2517},{"vlan":2518},{"vlan":2519},{"vlan":2520},{"vlan":2521},{"vlan":2522},{"vlan":2523},{"vlan":2524},{"vlan":2525},{"vlan":2526},{"vlan":2527},{"vlan":2528},{"vlan":2529},{"vlan":2530},{"vlan":2531},{"vlan":2532},{"vlan":2533},{"vlan":2534},{"vlan":2535},{"vlan":2536},{"vlan":2537},{"vlan":2538},{"vlan":2539},{"vlan":2540},{"vlan":2541},{"vlan":2542},{"vlan":2543},{"vlan":2544},{"vlan":2545},{"vlan":2546},{"vlan":2547},{"vlan":2548},{"vlan":2549},{"vlan":2550},{"vlan":2551},{"vlan":2552},{"vlan":2553},{"vlan":2554},{"vlan":2555},{"vlan":2556},{"vlan":2557},{"vlan":2558},{"vlan":2559},{"vlan":2560},{"vlan":2561},{"vlan":2562},{"vlan":2563},{"vlan":2564},{"vlan":2565},{"vlan":2566},{"vlan":2567},{"vlan":2568},{"vlan":2569},{"vlan":2570},{"vlan":2571},{"vlan":2572},{"vlan":2573},{"vlan":2574},{"vlan":2575},{"vlan":2576},{"vlan":2577},{"vlan":2578},{"vlan":2579},{"vlan":2580},{"vlan":2581},{"vlan":2582},{"vlan":2583},{"vlan":2584},{"vlan":2585},{"vlan":2586},{"vlan":2587},{"vlan":2588},{"vlan":2589},{"vlan":2590},{"vlan":2591},{"vlan":2592},{"vlan":2593},{"vlan":2594},{"vlan":2595},{"vlan":2596},{"vlan":2597},{"vlan":2598},{"vlan":2599},{"vlan":2600},{"vlan":2601},{"vlan":2602},{"vlan":2603},{"vlan":2604},{"vlan":2605},{"vlan":2606},{"vlan":2607},{"vlan":2608},{"vlan":2609},{"vlan":2610},{"vlan":2611},{"vlan":2612},{"vlan":2613},{"vlan":2614},{"vlan":2615},{"vlan":2616},{"vlan":2617},{"vlan":2618},{"vlan":2619},{"vlan":2620},{"vlan":2621},{"vlan":2622},{"vlan":2623},{"vlan":2624},{"vlan":2625},{"vlan":2626},{"vlan":2627},{"vlan":2628},{"vlan":2629},{"vlan":2630},{"vlan":2631},{"vlan":2632},{"vlan":2633},{"vlan":2634},{"vlan":2635},{"vlan":2636},{"vlan":2637},{"vlan":2638},{"vlan":2639},{"vlan":2640},{"vlan":2641},{"vlan":2642},{"vlan":2643},{"vlan":2644},{"vlan":2645},{"vlan":2646},{"vlan":2647},{"vlan":2648},{"vlan":2649},{"vlan":2650},{"vlan":2651},{"vlan":2652},{"vlan":2653},{"vlan":2654},{"vlan":2655},{"vlan":2656},{"vlan":2657},{"vlan":2658},{"vlan":2659},{"vlan":2660},{"vlan":2661},{"vlan":2662},{"vlan":2663},{"vlan":2664},{"vlan":2665},{"vlan":2666},{"vlan":2667},{"vlan":2668},{"vlan":2669},{"vlan":2670},{"vlan":2671},{"vlan":2672},{"vlan":2673},{"vlan":2674},{"vlan":2675},{"vlan":2676},{"vlan":2677},{"vlan":2678},{"vlan":2679},{"vlan":2680},{"vlan":2681},{"vlan":2682},{"vlan":2683},{"vlan":2684},{"vlan":2685},{"vlan":2686},{"vlan":2687},{"vlan":2688},{"vlan":2689},{"vlan":2690},{"vlan":2691},{"vlan":2692},{"vlan":2693},{"vlan":2694},{"vlan":2695},{"vlan":2696},{"vlan":2697},{"vlan":2698},{"vlan":2699},{"vlan":2700},{"vlan":2701},{"vlan":2702},{"vlan":2703},{"vlan":2704},{"vlan":2705},{"vlan":2706},{"vlan":2707},{"vlan":2708},{"vlan":2709},{"vlan":2710},{"vlan":2711},{"vlan":2712},{"vlan":2713},{"vlan":2714},{"vlan":2715},{"vlan":2716},{"vlan":2717},{"vlan":2718},{"vlan":2719},{"vlan":2720},{"vlan":2721},{"vlan":2722},{"vlan":2723},{"vlan":2724},{"vlan":2725},{"vlan":2726},{"vlan":2727},{"vlan":2728},{"vlan":2729},{"vlan":2730},{"vlan":2731},{"vlan":2732},{"vlan":2733},{"vlan":2734},{"vlan":2735},{"vlan":2736},{"vlan":2737},{"vlan":2738},{"vlan":2739},{"vlan":2740},{"vlan":2741},{"vlan":2742},{"vlan":2743},{"vlan":2744},{"vlan":2745},{"vlan":2746},{"vlan":2747},{"vlan":2748},{"vlan":2749},{"vlan":2750},{"vlan":2751},{"vlan":2752},{"vlan":2753},{"vlan":2754},{"vlan":2755},{"vlan":2756},{"vlan":2757},{"vlan":2758},{"vlan":2759},{"vlan":2760},{"vlan":2761},{"vlan":2762},{"vlan":2763},{"vlan":2764},{"vlan":2765},{"vlan":2766},{"vlan":2767},{"vlan":2768},{"vlan":2769},{"vlan":2770},{"vlan":2771},{"vlan":2772},{"vlan":2773},{"vlan":2774},{"vlan":2775},{"vlan":2776},{"vlan":2777},{"vlan":2778},{"vlan":2779},{"vlan":2780},{"vlan":2781},{"vlan":2782},{"vlan":2783},{"vlan":2784},{"vlan":2785},{"vlan":2786},{"vlan":2787},{"vlan":2788},{"vlan":2789},{"vlan":2790},{"vlan":2791},{"vlan":2792},{"vlan":2793},{"vlan":2794},{"vlan":2795},{"vlan":2796},{"vlan":2797},{"vlan":2798},{"vlan":2799},{"vlan":2800},{"vlan":2801},{"vlan":2802},{"vlan":2803},{"vlan":2804},{"vlan":2805},{"vlan":2806},{"vlan":2807},{"vlan":2808},{"vlan":2809},{"vlan":2810},{"vlan":2811},{"vlan":2812},{"vlan":2813},{"vlan":2814},{"vlan":2815},{"vlan":2816},{"vlan":2817},{"vlan":2818},{"vlan":2819},{"vlan":2820},{"vlan":2821},{"vlan":2822},{"vlan":2823},{"vlan":2824},{"vlan":2825},{"vlan":2826},{"vlan":2827},{"vlan":2828},{"vlan":2829},{"vlan":2830},{"vlan":2831},{"vlan":2832},{"vlan":2833},{"vlan":2834},{"vlan":2835},{"vlan":2836},{"vlan":2837},{"vlan":2838},{"vlan":2839},{"vlan":2840},{"vlan":2841},{"vlan":2842},{"vlan":2843},{"vlan":2844},{"vlan":2845},{"vlan":2846},{"vlan":2847},{"vlan":2848},{"vlan":2849},{"vlan":2850},{"vlan":2851},{"vlan":2852},{"vlan":2853},{"vlan":2854},{"vlan":2855},{"vlan":2856},{"vlan":2857},{"vlan":2858},{"vlan":2859},{"vlan":2860},{"vlan":2861},{"vlan":2862},{"vlan":2863},{"vlan":2864},{"vlan":2865},{"vlan":2866},{"vlan":2867},{"vlan":2868},{"vlan":2869},{"vlan":2870},{"vlan":2871},{"vlan":2872},{"vlan":2873},{"vlan":2874},{"vlan":2875},{"vlan":2876},{"vlan":2877},{"vlan":2878},{"vlan":2879},{"vlan":2880},{"vlan":2881},{"vlan":2882},{"vlan":2883},{"vlan":2884},{"vlan":2885},{"vlan":2886},{"vlan":2887},{"vlan":2888},{"vlan":2889},{"vlan":2890},{"vlan":2891},{"vlan":2892},{"vlan":2893},{"vlan":2894},{"vlan":2895},{"vlan":2896},{"vlan":2897},{"vlan":2898},{"vlan":2899},{"vlan":2900},{"vlan":2901},{"vlan":2902},{"vlan":2903},{"vlan":2904},{"vlan":2905},{"vlan":2906},{"vlan":2907},{"vlan":2908},{"vlan":2909},{"vlan":2910},{"vlan":2911},{"vlan":2912},{"vlan":2913},{"vlan":2914},{"vlan":2915},{"vlan":2916},{"vlan":2917},{"vlan":2918},{"vlan":2919},{"vlan":2920},{"vlan":2921},{"vlan":2922},{"vlan":2923},{"vlan":2924},{"vlan":2925},{"vlan":2926},{"vlan":2927},{"vlan":2928},{"vlan":2929},{"vlan":2930},{"vlan":2931},{"vlan":2932},{"vlan":2933},{"vlan":2934},{"vlan":2935},{"vlan":2936},{"vlan":2937},{"vlan":2938},{"vlan":2939},{"vlan":2940},{"vlan":2941},{"vlan":2942},{"vlan":2943},{"vlan":2944},{"vlan":2945},{"vlan":2946},{"vlan":2947},{"vlan":2948},{"vlan":2949},{"vlan":2950},{"vlan":2951},{"vlan":2952},{"vlan":2953},{"vlan":2954},{"vlan":2955},{"vlan":2956},{"vlan":2957},{"vlan":2958},{"vlan":2959},{"vlan":2960},{"vlan":2961},{"vlan":2962},{"vlan":2963},{"vlan":2964},{"vlan":2965},{"vlan":2966},{"vlan":2967},{"vlan":2968},{"vlan":2969},{"vlan":2970},{"vlan":2971},{"vlan":2972},{"vlan":2973},{"vlan":2974},{"vlan":2975},{"vlan":2976},{"vlan":2977},{"vlan":2978},{"vlan":2979},{"vlan":2980},{"vlan":2981},{"vlan":2982},{"vlan":2983},{"vlan":2984},{"vlan":2985},{"vlan":2986},{"vlan":2987},{"vlan":2988},{"vlan":2989},{"vlan":2990},{"vlan":2991},{"vlan":2992},{"vlan":2993},{"vlan":2994},{"vlan":2995},{"vlan":2996},{"vlan":2997},{"vlan":2998},{"vlan":2999},{"vlan":3000},{"vlan":3001},{"vlan":3002},{"vlan":3003},{"vlan":3004},{"vlan":3005},{"vlan":3006},{"vlan":3007},{"vlan":3008},{"vlan":3009},{"vlan":3010},{"vlan":3011},{"vlan":3012},{"vlan":3013},{"vlan":3014},{"vlan":3015},{"vlan":3016},{"vlan":3017},{"vlan":3018},{"vlan":3019},{"vlan":3020},{"vlan":3021},{"vlan":3022},{"vlan":3023},{"vlan":3024},{"vlan":3025},{"vlan":3026},{"vlan":3027},{"vlan":3028},{"vlan":3029},{"vlan":3030},{"vlan":3031},{"vlan":3032},{"vlan":3033},{"vlan":3034},{"vlan":3035},{"vlan":3036},{"vlan":3037},{"vlan":3038},{"vlan":3039},{"vlan":3040},{"vlan":3041},{"vlan":3042},{"vlan":3043},{"vlan":3044},{"vlan":3045},{"vlan":3046},{"vlan":3047},{"vlan":3048},{"vlan":3049},{"vlan":3050},{"vlan":3051},{"vlan":3052},{"vlan":3053},{"vlan":3054},{"vlan":3055},{"vlan":3056},{"vlan":3057},{"vlan":3058},{"vlan":3059},{"vlan":3060},{"vlan":3061},{"vlan":3062},{"vlan":3063},{"vlan":3064},{"vlan":3065},{"vlan":3066},{"vlan":3067},{"vlan":3068},{"vlan":3069},{"vlan":3070},{"vlan":3071},{"vlan":3072},{"vlan":3073},{"vlan":3074},{"vlan":3075},{"vlan":3076},{"vlan":3077},{"vlan":3078},{"vlan":3079},{"vlan":3080},{"vlan":3081},{"vlan":3082},{"vlan":3083},{"vlan":3084},{"vlan":3085},{"vlan":3086},{"vlan":3087},{"vlan":3088},{"vlan":3089},{"vlan":3090},{"vlan":3091},{"vlan":3092},{"vlan":3093},{"vlan":3094},{"vlan":3095},{"vlan":3096},{"vlan":3097},{"vlan":3098},{"vlan":3099},{"vlan":3100},{"vlan":3101},{"vlan":3102},{"vlan":3103},{"vlan":3104},{"vlan":3105},{"vlan":3106},{"vlan":3107},{"vlan":3108},{"vlan":3109},{"vlan":3110},{"vlan":3111},{"vlan":3112},{"vlan":3113},{"vlan":3114},{"vlan":3115},{"vlan":3116},{"vlan":3117},{"vlan":3118},{"vlan":3119},{"vlan":3120},{"vlan":3121},{"vlan":3122},{"vlan":3123},{"vlan":3124},{"vlan":3125},{"vlan":3126},{"vlan":3127},{"vlan":3128},{"vlan":3129},{"vlan":3130},{"vlan":3131},{"vlan":3132},{"vlan":3133},{"vlan":3134},{"vlan":3135},{"vlan":3136},{"vlan":3137},{"vlan":3138},{"vlan":3139},{"vlan":3140},{"vlan":3141},{"vlan":3142},{"vlan":3143},{"vlan":3144},{"vlan":3145},{"vlan":3146},{"vlan":3147},{"vlan":3148},{"vlan":3149},{"vlan":3150},{"vlan":3151},{"vlan":3152},{"vlan":3153},{"vlan":3154},{"vlan":3155},{"vlan":3156},{"vlan":3157},{"vlan":3158},{"vlan":3159},{"vlan":3160},{"vlan":3161},{"vlan":3162},{"vlan":3163},{"vlan":3164},{"vlan":3165},{"vlan":3166},{"vlan":3167},{"vlan":3168},{"vlan":3169},{"vlan":3170},{"vlan":3171},{"vlan":3172},{"vlan":3173},{"vlan":3174},{"vlan":3175},{"vlan":3176},{"vlan":3177},{"vlan":3178},{"vlan":3179},{"vlan":3180},{"vlan":3181},{"vlan":3182},{"vlan":3183},{"vlan":3184},{"vlan":3185},{"vlan":3186},{"vlan":3187},{"vlan":3188},{"vlan":3189},{"vlan":3190},{"vlan":3191},{"vlan":3192},{"vlan":3193},{"vlan":3194},{"vlan":3195},{"vlan":3196},{"vlan":3197},{"vlan":3198},{"vlan":3199},{"vlan":3200},{"vlan":3201},{"vlan":3202},{"vlan":3203},{"vlan":3204},{"vlan":3205},{"vlan":3206},{"vlan":3207},{"vlan":3208},{"vlan":3209},{"vlan":3210},{"vlan":3211},{"vlan":3212},{"vlan":3213},{"vlan":3214},{"vlan":3215},{"vlan":3216},{"vlan":3217},{"vlan":3218},{"vlan":3219},{"vlan":3220},{"vlan":3221},{"vlan":3222},{"vlan":3223},{"vlan":3224},{"vlan":3225},{"vlan":3226},{"vlan":3227},{"vlan":3228},{"vlan":3229},{"vlan":3230},{"vlan":3231},{"vlan":3232},{"vlan":3233},{"vlan":3234},{"vlan":3235},{"vlan":3236},{"vlan":3237},{"vlan":3238},{"vlan":3239},{"vlan":3240},{"vlan":3241},{"vlan":3242},{"vlan":3243},{"vlan":3244},{"vlan":3245},{"vlan":3246},{"vlan":3247},{"vlan":3248},{"vlan":3249},{"vlan":3250},{"vlan":3251},{"vlan":3252},{"vlan":3253},{"vlan":3254},{"vlan":3255},{"vlan":3256},{"vlan":3257},{"vlan":3258},{"vlan":3259},{"vlan":3260},{"vlan":3261},{"vlan":3262},{"vlan":3263},{"vlan":3264},{"vlan":3265},{"vlan":3266},{"vlan":3267},{"vlan":3268},{"vlan":3269},{"vlan":3270},{"vlan":3271},{"vlan":3272},{"vlan":3273},{"vlan":3274},{"vlan":3275},{"vlan":3276},{"vlan":3277},{"vlan":3278},{"vlan":3279},{"vlan":3280},{"vlan":3281},{"vlan":3282},{"vlan":3283},{"vlan":3284},{"vlan":3285},{"vlan":3286},{"vlan":3287},{"vlan":3288},{"vlan":3289},{"vlan":3290},{"vlan":3291},{"vlan":3292},{"vlan":3293},{"vlan":3294},{"vlan":3295},{"vlan":3296},{"vlan":3297},{"vlan":3298},{"vlan":3299},{"vlan":3300},{"vlan":3301},{"vlan":3302},{"vlan":3303},{"vlan":3304},{"vlan":3305},{"vlan":3306},{"vlan":3307},{"vlan":3308},{"vlan":3309},{"vlan":3310},{"vlan":3311},{"vlan":3312},{"vlan":3313},{"vlan":3314},{"vlan":3315},{"vlan":3316},{"vlan":3317},{"vlan":3318},{"vlan":3319},{"vlan":3320},{"vlan":3321},{"vlan":3322},{"vlan":3323},{"vlan":3324},{"vlan":3325},{"vlan":3326},{"vlan":3327},{"vlan":3328},{"vlan":3329},{"vlan":3330},{"vlan":3331},{"vlan":3332},{"vlan":3333},{"vlan":3334},{"vlan":3335},{"vlan":3336},{"vlan":3337},{"vlan":3338},{"vlan":3339},{"vlan":3340},{"vlan":3341},{"vlan":3342},{"vlan":3343},{"vlan":3344},{"vlan":3345},{"vlan":3346},{"vlan":3347},{"vlan":3348},{"vlan":3349},{"vlan":3350},{"vlan":3351},{"vlan":3352},{"vlan":3353},{"vlan":3354},{"vlan":3355},{"vlan":3356},{"vlan":3357},{"vlan":3358},{"vlan":3359},{"vlan":3360},{"vlan":3361},{"vlan":3362},{"vlan":3363},{"vlan":3364},{"vlan":3365},{"vlan":3366},{"vlan":3367},{"vlan":3368},{"vlan":3369},{"vlan":3370},{"vlan":3371},{"vlan":3372},{"vlan":3373},{"vlan":3374},{"vlan":3375},{"vlan":3376},{"vlan":3377},{"vlan":3378},{"vlan":3379},{"vlan":3380},{"vlan":3381},{"vlan":3382},{"vlan":3383},{"vlan":3384},{"vlan":3385},{"vlan":3386},{"vlan":3387},{"vlan":3388},{"vlan":3389},{"vlan":3390},{"vlan":3391},{"vlan":3392},{"vlan":3393},{"vlan":3394},{"vlan":3395},{"vlan":3396},{"vlan":3397},{"vlan":3398},{"vlan":3399},{"vlan":3400},{"vlan":3401},{"vlan":3402},{"vlan":3403},{"vlan":3404},{"vlan":3405},{"vlan":3406},{"vlan":3407},{"vlan":3408},{"vlan":3409},{"vlan":3410},{"vlan":3411},{"vlan":3412},{"vlan":3413},{"vlan":3414},{"vlan":3415},{"vlan":3416},{"vlan":3417},{"vlan":3418},{"vlan":3419},{"vlan":3420},{"vlan":3421},{"vlan":3422},{"vlan":3423},{"vlan":3424},{"vlan":3425},{"vlan":3426},{"vlan":3427},{"vlan":3428},{"vlan":3429},{"vlan":3430},{"vlan":3431},{"vlan":3432},{"vlan":3433},{"vlan":3434},{"vlan":3435},{"vlan":3436},{"vlan":3437},{"vlan":3438},{"vlan":3439},{"vlan":3440},{"vlan":3441},{"vlan":3442},{"vlan":3443},{"vlan":3444},{"vlan":3445},{"vlan":3446},{"vlan":3447},{"vlan":3448},{"vlan":3449},{"vlan":3450},{"vlan":3451},{"vlan":3452},{"vlan":3453},{"vlan":3454},{"vlan":3455},{"vlan":3456},{"vlan":3457},{"vlan":3458},{"vlan":3459},{"vlan":3460},{"vlan":3461},{"vlan":3462},{"vlan":3463},{"vlan":3464},{"vlan":3465},{"vlan":3466},{"vlan":3467},{"vlan":3468},{"vlan":3469},{"vlan":3470},{"vlan":3471},{"vlan":3472},{"vlan":3473},{"vlan":3474},{"vlan":3475},{"vlan":3476},{"vlan":3477},{"vlan":3478},{"vlan":3479},{"vlan":3480},{"vlan":3481},{"vlan":3482},{"vlan":3483},{"vlan":3484},{"vlan":3485},{"vlan":3486},{"vlan":3487},{"vlan":3488},{"vlan":3489},{"vlan":3490},{"vlan":3491},{"vlan":3492},{"vlan":3493},{"vlan":3494},{"vlan":3495},{"vlan":3496},{"vlan":3497},{"vlan":3498},{"vlan":3499},{"vlan":3500},{"vlan":3501},{"vlan":3502},{"vlan":3503},{"vlan":3504},{"vlan":3505},{"vlan":3506},{"vlan":3507},{"vlan":3508},{"vlan":3509},{"vlan":3510},{"vlan":3511},{"vlan":3512},{"vlan":3513},{"vlan":3514},{"vlan":3515},{"vlan":3516},{"vlan":3517},{"vlan":3518},{"vlan":3519},{"vlan":3520},{"vlan":3521},{"vlan":3522},{"vlan":3523},{"vlan":3524},{"vlan":3525},{"vlan":3526},{"vlan":3527},{"vlan":3528},{"vlan":3529},{"vlan":3530},{"vlan":3531},{"vlan":3532},{"vlan":3533},{"vlan":3534},{"vlan":3535},{"vlan":3536},{"vlan":3537},{"vlan":3538},{"vlan":3539},{"vlan":3540},{"vlan":3541},{"vlan":3542},{"vlan":3543},{"vlan":3544},{"vlan":3545},{"vlan":3546},{"vlan":3547},{"vlan":3548},{"vlan":3549},{"vlan":3550},{"vlan":3551},{"vlan":3552},{"vlan":3553},{"vlan":3554},{"vlan":3555},{"vlan":3556},{"vlan":3557},{"vlan":3558},{"vlan":3559},{"vlan":3560},{"vlan":3561},{"vlan":3562},{"vlan":3563},{"vlan":3564},{"vlan":3565},{"vlan":3566},{"vlan":3567},{"vlan":3568},{"vlan":3569},{"vlan":3570},{"vlan":3571},{"vlan":3572},{"vlan":3573},{"vlan":3574},{"vlan":3575},{"vlan":3576},{"vlan":3577},{"vlan":3578},{"vlan":3579},{"vlan":3580},{"vlan":3581},{"vlan":3582},{"vlan":3583},{"vlan":3584},{"vlan":3585},{"vlan":3586},{"vlan":3587},{"vlan":3588},{"vlan":3589},{"vlan":3590},{"vlan":3591},{"vlan":3592},{"vlan":3593},{"vlan":3594},{"vlan":3595},{"vlan":3596},{"vlan":3597},{"vlan":3598},{"vlan":3599},{"vlan":3600},{"vlan":3601},{"vlan":3602},{"vlan":3603},{"vlan":3604},{"vlan":3605},{"vlan":3606},{"vlan":3607},{"vlan":3608},{"vlan":3609},{"vlan":3610},{"vlan":3611},{"vlan":3612},{"vlan":3613},{"vlan":3614},{"vlan":3615},{"vlan":3616},{"vlan":3617},{"vlan":3618},{"vlan":3619},{"vlan":3620},{"vlan":3621},{"vlan":3622},{"vlan":3623},{"vlan":3624},{"vlan":3625},{"vlan":3626},{"vlan":3627},{"vlan":3628},{"vlan":3629},{"vlan":3630},{"vlan":3631},{"vlan":3632},{"vlan":3633},{"vlan":3634},{"vlan":3635},{"vlan":3636},{"vlan":3637},{"vlan":3638},{"vlan":3639},{"vlan":3640},{"vlan":3641},{"vlan":3642},{"vlan":3643},{"vlan":3644},{"vlan":3645},{"vlan":3646},{"vlan":3647},{"vlan":3648},{"vlan":3649},{"vlan":3650},{"vlan":3651},{"vlan":3652},{"vlan":3653},{"vlan":3654},{"vlan":3655},{"vlan":3656},{"vlan":3657},{"vlan":3658},{"vlan":3659},{"vlan":3660},{"vlan":3661},{"vlan":3662},{"vlan":3663},{"vlan":3664},{"vlan":3665},{"vlan":3666},{"vlan":3667},{"vlan":3668},{"vlan":3669},{"vlan":3670},{"vlan":3671},{"vlan":3672},{"vlan":3673},{"vlan":3674},{"vlan":3675},{"vlan":3676},{"vlan":3677},{"vlan":3678},{"vlan":3679},{"vlan":3680},{"vlan":3681},{"vlan":3682},{"vlan":3683},{"vlan":3684},{"vlan":3685},{"vlan":3686},{"vlan":3687},{"vlan":3688},{"vlan":3689},{"vlan":3690},{"vlan":3691},{"vlan":3692},{"vlan":3693},{"vlan":3694},{"vlan":3695},{"vlan":3696},{"vlan":3697},{"vlan":3698},{"vlan":3699},{"vlan":3700},{"vlan":3701},{"vlan":3702},{"vlan":3703},{"vlan":3704},{"vlan":3705},{"vlan":3706},{"vlan":3707},{"vlan":3708},{"vlan":3709},{"vlan":3710},{"vlan":3711},{"vlan":3712},{"vlan":3713},{"vlan":3714},{"vlan":3715},{"vlan":3716},{"vlan":3717},{"vlan":3718},{"vlan":3719},{"vlan":3720},{"vlan":3721},{"vlan":3722},{"vlan":3723},{"vlan":3724},{"vlan":3725},{"vlan":3726},{"vlan":3727},{"vlan":3728},{"vlan":3729},{"vlan":3730},{"vlan":3731},{"vlan":3732},{"vlan":3733},{"vlan":3734},{"vlan":3735},{"vlan":3736},{"vlan":3737},{"vlan":3738},{"vlan":3739},{"vlan":3740},{"vlan":3741},{"vlan":3742},{"vlan":3743},{"vlan":3744},{"vlan":3745},{"vlan":3746},{"vlan":3747},{"vlan":3748},{"vlan":3749},{"vlan":3750},{"vlan":3751},{"vlan":3752},{"vlan":3753},{"vlan":3754},{"vlan":3755},{"vlan":3756},{"vlan":3757},{"vlan":3758},{"vlan":3759},{"vlan":3760},{"vlan":3761},{"vlan":3762},{"vlan":3763},{"vlan":3764},{"vlan":3765},{"vlan":3766},{"vlan":3767},{"vlan":3768},{"vlan":3769},{"vlan":3770},{"vlan":3771},{"vlan":3772},{"vlan":3773},{"vlan":3774},{"vlan":3775},{"vlan":3776},{"vlan":3777},{"vlan":3778},{"vlan":3779},{"vlan":3780},{"vlan":3781},{"vlan":3782},{"vlan":3783},{"vlan":3784},{"vlan":3785},{"vlan":3786},{"vlan":3787},{"vlan":3788},{"vlan":3789},{"vlan":3790},{"vlan":3791},{"vlan":3792},{"vlan":3793},{"vlan":3794},{"vlan":3795},{"vlan":3796},{"vlan":3797},{"vlan":3798},{"vlan":3799},{"vlan":3800},{"vlan":3801},{"vlan":3802},{"vlan":3803},{"vlan":3804},{"vlan":3805},{"vlan":3806},{"vlan":3807},{"vlan":3808},{"vlan":3809},{"vlan":3810},{"vlan":3811},{"vlan":3812},{"vlan":3813},{"vlan":3814},{"vlan":3815},{"vlan":3816},{"vlan":3817},{"vlan":3818},{"vlan":3819},{"vlan":3820},{"vlan":3821},{"vlan":3822},{"vlan":3823},{"vlan":3824},{"vlan":3825},{"vlan":3826},{"vlan":3827},{"vlan":3828},{"vlan":3829},{"vlan":3830},{"vlan":3831},{"vlan":3832},{"vlan":3833},{"vlan":3834},{"vlan":3835},{"vlan":3836},{"vlan":3837},{"vlan":3838},{"vlan":3839},{"vlan":3840},{"vlan":3841},{"vlan":3842},{"vlan":3843},{"vlan":3844},{"vlan":3845},{"vlan":3846},{"vlan":3847},{"vlan":3848},{"vlan":3849},{"vlan":3850},{"vlan":3851},{"vlan":3852},{"vlan":3853},{"vlan":3854},{"vlan":3855},{"vlan":3856},{"vlan":3857},{"vlan":3858},{"vlan":3859},{"vlan":3860},{"vlan":3861},{"vlan":3862},{"vlan":3863},{"vlan":3864},{"vlan":3865},{"vlan":3866},{"vlan":3867},{"vlan":3868},{"vlan":3869},{"vlan":3870},{"vlan":3871},{"vlan":3872},{"vlan":3873},{"vlan":3874},{"vlan":3875},{"vlan":3876},{"vlan":3877},{"vlan":3878},{"vlan":3879},{"vlan":3880},{"vlan":3881},{"vlan":3882},{"vlan":3883},{"vlan":3884},{"vlan":3885},{"vlan":3886},{"vlan":3887},{"vlan":3888},{"vlan":3889},{"vlan":3890},{"vlan":3891},{"vlan":3892},{"vlan":3893},{"vlan":3894},{"vlan":3895},{"vlan":3896},{"vlan":3897},{"vlan":3898},{"vlan":3899},{"vlan":3900},{"vlan":3901},{"vlan":3902},{"vlan":3903},{"vlan":3904},{"vlan":3905},{"vlan":3906},{"vlan":3907},{"vlan":3908},{"vlan":3909},{"vlan":3910},{"vlan":3911},{"vlan":3912},{"vlan":3913},{"vlan":3914},{"vlan":3915},{"vlan":3916},{"vlan":3917},{"vlan":3918},{"vlan":3919},{"vlan":3920},{"vlan":3921},{"vlan":3922},{"vlan":3923},{"vlan":3924},{"vlan":3925},{"vlan":3926},{"vlan":3927},{"vlan":3928},{"vlan":3929},{"vlan":3930},{"vlan":3931},{"vlan":3932},{"vlan":3933},{"vlan":3934},{"vlan":3935},{"vlan":3936},{"vlan":3937},{"vlan":3938},{"vlan":3939},{"vlan":3940},{"vlan":3941},{"vlan":3942},{"vlan":3943},{"vlan":3944},{"vlan":3945},{"vlan":3946},{"vlan":3947},{"vlan":3948},{"vlan":3949},{"vlan":3950},{"vlan":3951},{"vlan":3952},{"vlan":3953},{"vlan":3954},{"vlan":3955},{"vlan":3956},{"vlan":3957},{"vlan":3958},{"vlan":3959},{"vlan":3960},{"vlan":3961},{"vlan":3962},{"vlan":3963},{"vlan":3964},{"vlan":3965},{"vlan":3966},{"vlan":3967},{"vlan":3968},{"vlan":3969},{"vlan":3970},{"vlan":3971},{"vlan":3972},{"vlan":3973},{"vlan":3974},{"vlan":3975},{"vlan":3976},{"vlan":3977},{"vlan":3978},{"vlan":3979},{"vlan":3980},{"vlan":3981},{"vlan":3982},{"vlan":3983},{"vlan":3984},{"vlan":3985},{"vlan":3986},{"vlan":3987},{"vlan":3988},{"vlan":3989},{"vlan":3990},{"vlan":3991},{"vlan":3992},{"vlan":3993},{"vlan":3994},{"vlan":3995},{"vlan":3996},{"vlan":3997},{"vlan":3998},{"vlan":3999},{"vlan":4000},{"vlan":4001},{"vlan":4002},{"vlan":4003},{"vlan":4004},{"vlan":4005},{"vlan":4006},{"vlan":4007},{"vlan":4008},{"vlan":4009},{"vlan":4010},{"vlan":4011},{"vlan":4012},{"vlan":4013},{"vlan":4014},{"vlan":4015},{"vlan":4016},{"vlan":4017},{"vlan":4018},{"vlan":4019},{"vlan":4020},{"vlan":4021},{"vlan":4022},{"vlan":4023},{"vlan":4024},{"vlan":4025},{"vlan":4026},{"vlan":4027},{"vlan":4028},{"vlan":4029},{"vlan":4030},{"vlan":4031},{"vlan":4032},{"vlan":4033},{"vlan":4034},{"vlan":4035},{"vlan":4036},{"vlan":4037},{"vlan":4038},{"vlan":4039},{"vlan":4040},{"vlan":4041},{"vlan":4042},{"vlan":4043},{"vlan":4044},{"vlan":4045},{"vlan":4046},{"vlan":4047},{"vlan":4048},{"vlan":4049},{"vlan":4050},{"vlan":4051},{"vlan":4052},{"vlan":4053},{"vlan":4054},{"vlan":4055},{"vlan":4056},{"vlan":4057},{"vlan":4058},{"vlan":4059},{"vlan":4060},{"vlan":4061},{"vlan":4062},{"vlan":4063},{"vlan":4064},{"vlan":4065},{"vlan":4066},{"vlan":4067},{"vlan":4068},{"vlan":4069},{"vlan":4070},{"vlan":4071},{"vlan":4072},{"vlan":4073},{"vlan":4074},{"vlan":4075},{"vlan":4076},{"vlan":4077},{"vlan":4078},{"vlan":4079},{"vlan":4080},{"vlan":4081},{"vlan":4082},{"vlan":4083},{"vlan":4084},{"vlan":4085},{"vlan":4086},{"vlan":4087},{"vlan":4088},{"vlan":4089},{"vlan":4090},{"vlan":4091},{"vlan":4092},{"vlan":4093},{"vlan":4094}]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_can_set_max_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=260, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=12] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:31:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=260, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:31:24 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=260, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=260, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=260, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":368,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:0c","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=260, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=260, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=260, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=18] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_configuration_checks.py::test_vlan_can_not_add_interface_to_vlan_wo_bridge | 0.69 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_can_not_add_interface_to_vlan_wo_bridge">Starting testcase:test_vlan_can_not_add_interface_to_vlan_wo_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18473' coro=<test_vlan_can_not_add_interface_to_vlan_wo_bridge() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py:70> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=260, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=261] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=261] Local address: 172.17.0.4, port 36666 INFO asyncssh:logging.py:92 [conn=261] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=261] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=261] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:32:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=261, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=1] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=261, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=2] Command: bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=261, chan=2] Received exit status 255 INFO asyncssh:logging.py:92 [conn=261, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=2] Channel closed DEBUG agg1:Logger.py:156 RTNETLINK answers: Operation not supported INFO asyncssh:logging.py:92 [conn=261, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=261, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=4] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=261, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=261, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=261, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=261, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=8] Command: bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=261, chan=8] Received exit status 255 INFO asyncssh:logging.py:92 [conn=261, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=8] Channel closed DEBUG agg1:Logger.py:156 RTNETLINK answers: Operation not supported -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_can_not_add_interface_to_vlan_wo_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=261, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=10] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:32:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=261, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=12] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:32:14 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=261, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=261, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=261, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=14] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":369,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:6a:07:c1:34:4e","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=261, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=261, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=261, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=16] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[broadcast] | 210.45 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[broadcast]">Starting testcase:test_vlan_default_configuration_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18499' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=261, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=262] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=262] Local address: 172.17.0.4, port 36682 INFO asyncssh:logging.py:92 [conn=262] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=262] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=262] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:32:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=262, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=262, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=262, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=262, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=262, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=262, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=262, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a2280370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 255 Rx 255 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 255 Rx 255 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 255 Rx 255 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 255 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 255 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 255 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 255 Rx 255 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 255 Rx 255 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 255 Rx 255 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=8] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:35:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=262, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=10] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:35:44 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=262, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=262, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=262, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":370,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=262, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=262, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=262, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=14] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[multicast] | 214.92 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[multicast]">Starting testcase:test_vlan_default_configuration_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18523' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=263] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=263] Local address: 172.17.0.4, port 41612 INFO asyncssh:logging.py:92 [conn=263] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=263] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=263] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:35:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=263, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=263, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=263, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=263, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=263, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=263, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=263, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a227bf40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 123 Rx 123 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 123 Rx 123 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 122 Rx 122 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 123 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 123 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 122 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 123 Rx 123 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 123 Rx 123 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 122 Rx 122 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=8] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:39:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=263, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=10] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:39:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=263, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=263, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=263, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":371,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=263, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=263, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=263, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=14] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[unicast] | 209.34 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[unicast]">Starting testcase:test_vlan_default_configuration_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18547' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=264] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=264] Local address: 172.17.0.4, port 44010 INFO asyncssh:logging.py:92 [conn=264] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=264] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=264] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:39:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=264, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=264, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=264, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=264, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=264, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=264, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=264, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:5 -> X INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:1:8 -> 10.36.118.199:1:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fccc40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> 1 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> 2 SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI 10.36.118.199:1:5 -> X SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI 10.36.118.199:1:8 -> 10.36.118.199:1:5 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=264, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=8] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:42:46 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=264, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=10] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:42:48 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=264, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=264, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=264, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":372,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=264, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=264, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=264, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=14] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[unknown_unicast] | 211.31 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[unknown_unicast]">Starting testcase:test_vlan_default_configuration_with_[unknown_unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18571' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=264, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=265] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=265] Local address: 172.17.0.4, port 41216 INFO asyncssh:logging.py:92 [conn=265] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=265] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=265] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=265, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:42:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=265, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=265, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=265, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=265, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=265, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=265, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=265, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcca00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 246 Rx 246 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 245 Rx 245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 245 Rx 245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 246 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 245 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 245 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 246 Rx 246 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 245 Rx 245 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 245 Rx 245 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[unknown_unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=265, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=7] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=265, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=8] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:46:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=265, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=9] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=265, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=10] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:46:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=265, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=11] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=265, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=265, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=12] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":373,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=265, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=13] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=265, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=265, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=14] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_basic_functionality | 195.29 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_basic_functionality">Starting testcase:test_vlan_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18595' coro=<test_vlan_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:192> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=265, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=266] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=266] Local address: 172.17.0.4, port 42706 INFO asyncssh:logging.py:92 [conn=266] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=266] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=266] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=266, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:46:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=266, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=266, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=266, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=266, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=266, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=266, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=266, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=8] Command: bridge vlan add dev swp1 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=10] Command: bridge vlan add dev swp2 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=12] Command: bridge vlan add dev swp3 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 2 untagged INFO asyncssh:logging.py:92 [conn=266, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=14] Command: bridge vlan add dev swp4 vid 2 untagged INFO asyncssh:logging.py:92 [conn=266, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcf010>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 241 Rx 241 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 240 Rx 240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 240 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=266, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=266, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:49:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=266, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=266, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:49:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=266, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=266, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=266, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":374,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=266, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=266, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=266, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_changing_default_pvid | 209.40 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_changing_default_pvid">Starting testcase:test_vlan_changing_default_pvid from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18627' coro=<test_vlan_changing_default_pvid() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:269> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=266, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=267] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=267] Local address: 172.17.0.4, port 59250 INFO asyncssh:logging.py:92 [conn=267] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=267] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=267] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=267, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:49:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=267, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 2 INFO asyncssh:logging.py:92 [conn=267, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 2 INFO asyncssh:logging.py:92 [conn=267, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=267, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=267, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=267, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=267, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=8] Command: bridge vlan add dev swp1 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=10] Command: bridge vlan add dev swp2 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=12] Command: bridge vlan add dev swp3 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=14] Command: bridge vlan add dev swp4 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ed7d60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 243 Rx 243 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 243 Rx 243 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_changing_default_pvid from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=267, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=267, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:53:04 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=267, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=267, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:53:04 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=267, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=267, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=267, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":375,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=267, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=267, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=267, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_increment_mac.py::test_vlan_with_increment_macs | 444.14 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_with_increment_macs">Starting testcase:test_vlan_with_increment_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18659' coro=<test_vlan_with_increment_macs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=267, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=268] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=268] Local address: 172.17.0.4, port 44336 INFO asyncssh:logging.py:92 [conn=268] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=268] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=268] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=268, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 06:53:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=268, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=1] Channel closed DEBUG agg1:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=268, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=268, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=2] Channel closed DEBUG agg1:Logger.py:156 arm64-accton-as5114-48x-r0 INFO asyncssh:logging.py:92 [conn=268, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=268, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=268, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=268, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=268, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=7] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=268, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=8] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=268, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=9] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 type bridge ageing_time 3000 INFO asyncssh:logging.py:92 [conn=268, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=10] Command: ip link set dev br0 type bridge ageing_time 3000 INFO asyncssh:logging.py:92 [conn=268, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 5 pvid && bridge vlan add dev swp1 vid 33 && bridge vlan add dev swp1 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=12] Command: bridge vlan add dev swp1 vid 5 pvid && bridge vlan add dev swp1 vid 33 && bridge vlan add dev swp1 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 5 pvid && bridge vlan add dev swp2 vid 33 && bridge vlan add dev swp2 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=14] Command: bridge vlan add dev swp2 vid 5 pvid && bridge vlan add dev swp2 vid 33 && bridge vlan add dev swp2 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 5 pvid && bridge vlan add dev swp3 vid 33 && bridge vlan add dev swp3 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=16] Command: bridge vlan add dev swp3 vid 5 pvid && bridge vlan add dev swp3 vid 33 && bridge vlan add dev swp3 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=17] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 5 pvid && bridge vlan add dev swp4 vid 33 && bridge vlan add dev swp4 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=18] Command: bridge vlan add dev swp4 vid 5 pvid && bridge vlan add dev swp4 vid 33 && bridge vlan add dev swp4 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcdb10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 5 SIP-DIP N/A Tx 131565 Rx 131565 Loss 0.000 INFO asyncssh:logging.py:92 [conn=268, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show dev swp1 | grep 'vlan 5' | wc -l INFO asyncssh:logging.py:92 [conn=268, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=20] Command: bridge fdb show dev swp1 | grep 'vlan 5' | wc -l INFO asyncssh:logging.py:92 [conn=268, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=20] Channel closed DEBUG agg1:Logger.py:156 31387 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ed7550>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 33 SIP-DIP N/A Tx 142126 Rx 142126 Loss 0.000 INFO asyncssh:logging.py:92 [conn=268, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show dev swp1 | grep 'vlan 33' | wc -l INFO asyncssh:logging.py:92 [conn=268, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=22] Command: bridge fdb show dev swp1 | grep 'vlan 33' | wc -l INFO asyncssh:logging.py:92 [conn=268, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=22] Channel closed DEBUG agg1:Logger.py:156 31435 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ed46d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI traffic with VLAN ID: 20 SIP-DIP N/A Tx 142594 Rx 142594 Loss 0.000 INFO asyncssh:logging.py:92 [conn=268, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge fdb show dev swp1 | grep 'vlan 20' | wc -l INFO asyncssh:logging.py:92 [conn=268, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=24] Command: bridge fdb show dev swp1 | grep 'vlan 20' | wc -l INFO asyncssh:logging.py:92 [conn=268, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=24] Channel closed DEBUG agg1:Logger.py:156 31439 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_with_increment_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py INFO asyncssh:logging.py:92 [conn=268, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=25] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=268, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=26] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:00:28 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=268, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=27] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=268, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=268, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=28] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":376,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=268, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=29] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=268, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=268, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=268, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=268, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=32] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:00:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/vlan/test_vlan_priority.py::test_vlan_priority_tag | 178.52 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_priority_tag">Starting testcase:test_vlan_priority_tag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18701' coro=<test_vlan_priority_tag() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=268, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=269] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=269] Local address: 172.17.0.4, port 34480 INFO asyncssh:logging.py:92 [conn=269] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=269] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=269] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=269, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:00:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=269, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=269, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=269, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=269, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=269, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=269, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=269, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 5 pvid INFO asyncssh:logging.py:92 [conn=269, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=8] Command: bridge vlan add dev swp1 vid 5 pvid INFO asyncssh:logging.py:92 [conn=269, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 5 pvid INFO asyncssh:logging.py:92 [conn=269, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=10] Command: bridge vlan add dev swp2 vid 5 pvid INFO asyncssh:logging.py:92 [conn=269, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN priority INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a25c0fa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN priority SIP-DIP N/A Tx 21068102 Rx 21068102 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item Traffic with VLAN priority Tx 21068102 Rx 21068102 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking 1: Ethernet:Outer VLAN ID (4 bits) at offset 124 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking 2: Ethernet:Outer VLAN Priority (3 bits) at offset 112 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Vlan Id: 5, Vlan Priority: 6 | Rx 21068102 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_priority_tag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=269, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=11] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=269, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=12] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:03:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=269, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=13] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=269, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=14] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:03:27 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=269, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=15] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=269, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=269, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=16] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":377,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=269, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=17] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=269, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=269, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=18] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_switching_modes.py::test_vlan_switching_vlan_modes_via_cli | 408.10 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_switching_vlan_modes_via_cli">Starting testcase:test_vlan_switching_vlan_modes_via_cli from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18729' coro=<test_vlan_switching_vlan_modes_via_cli() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py:56> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=269, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=270] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=270] Local address: 172.17.0.4, port 37258 INFO asyncssh:logging.py:92 [conn=270] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=270] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=270] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=270, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:03:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=270, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=270, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=270, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=270, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=270, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=270, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=270, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=8] Command: bridge vlan add dev swp1 vid 2 && bridge vlan add dev swp1 vid 3 untagged && bridge vlan add dev swp1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=270, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=10] Command: bridge vlan add dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=270, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=12] Command: bridge vlan add dev swp3 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=14] Command: bridge vlan add dev swp4 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ed79a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO asyncssh:logging.py:92 [conn=270, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=15] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp1 vid 4 INFO asyncssh:logging.py:92 [conn=270, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=16] Command: bridge vlan delete dev swp1 vid 4 INFO asyncssh:logging.py:92 [conn=270, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=16] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=17] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=270, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=18] Command: bridge vlan delete dev swp2 vid 2 INFO asyncssh:logging.py:92 [conn=270, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=18] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=19] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp3 vid 3 INFO asyncssh:logging.py:92 [conn=270, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=20] Command: bridge vlan delete dev swp3 vid 3 INFO asyncssh:logging.py:92 [conn=270, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=20] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=21] Channel closed DEBUG agg1:Logger.py:156 bridge vlan delete dev swp4 vid 4 INFO asyncssh:logging.py:92 [conn=270, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=22] Command: bridge vlan delete dev swp4 vid 4 INFO asyncssh:logging.py:92 [conn=270, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=22] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=23] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 5 pvid untagged && bridge vlan add dev swp1 vid 101 && bridge vlan add dev swp1 vid 4094 untagged INFO asyncssh:logging.py:92 [conn=270, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=24] Command: bridge vlan add dev swp1 vid 5 pvid untagged && bridge vlan add dev swp1 vid 101 && bridge vlan add dev swp1 vid 4094 untagged INFO asyncssh:logging.py:92 [conn=270, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=24] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=25] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 5 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=26] Command: bridge vlan add dev swp2 vid 5 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=26] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=27] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 101 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=28] Command: bridge vlan add dev swp3 vid 101 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=28] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=29] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=30] Command: bridge vlan add dev swp4 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=30] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 101 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 500 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 4094 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1f988e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 242 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 242 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 242 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 242 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 243 Rx 243 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 242 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 243 Rx 243 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 242 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 243 Rx 243 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 242 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 243 Rx 243 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 242 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 242 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 242 Rx 242 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI New configuration untagged traffic SIP-DIP N/A Tx 243 Rx 243 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI New configuration untagged traffic SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI New configuration untagged traffic SIP-DIP N/A Tx 242 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_switching_vlan_modes_via_cli from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=270, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=31] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=270, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=32] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:10:15 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=270, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=33] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=270, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=34] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:10:15 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=270, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=35] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=270, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=270, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=36] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":378,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=270, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=37] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=270, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=270, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=38] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[broadcast] | 234.32 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[broadcast]">Starting testcase:test_vlan_tagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18777' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=270, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=271] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=271] Local address: 172.17.0.4, port 56640 INFO asyncssh:logging.py:92 [conn=271] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=271] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=271] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=271, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:10:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=271, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=271, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=271, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=271, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=271, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=271, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=271, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp1 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=8] Command: bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp1 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp2 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=10] Command: bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp2 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp3 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=12] Command: bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp3 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 22 && bridge vlan add dev swp4 vid 23 && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=14] Command: bridge vlan add dev swp4 vid 22 && bridge vlan add dev swp4 vid 23 && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ed77f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 243 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 243 Rx 243 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 243 Rx 243 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 243 Rx 243 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 244 Rx 244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 243 Rx 243 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=271, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=271, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:14:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=271, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=271, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:14:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=271, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=271, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=271, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":379,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=271, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=271, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=271, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[multicast] | 242.61 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[multicast]">Starting testcase:test_vlan_tagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18809' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=271, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=272] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=272] Local address: 172.17.0.4, port 44632 INFO asyncssh:logging.py:92 [conn=272] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=272] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=272] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=272, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:14:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=272, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=272, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=272, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=272, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=272, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=272, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=272, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp1 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=8] Command: bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp1 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp2 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=10] Command: bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp2 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp3 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=12] Command: bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp3 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 22 && bridge vlan add dev swp4 vid 23 && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=14] Command: bridge vlan add dev swp4 vid 22 && bridge vlan add dev swp4 vid 23 && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ed74f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 18 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 18 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 18 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 18 Rx 18 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 18 Rx 18 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 18 Rx 18 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 18 Rx 18 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 18 Rx 18 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 18 Rx 18 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 18 Rx 18 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 18 Rx 18 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 18 Rx 18 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 18 Rx 18 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 18 Rx 18 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 18 Rx 18 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=272, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=272, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:18:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=272, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=272, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:18:12 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=272, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=272, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=272, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":380,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=272, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=272, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=272, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[unicast] | 317.01 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[unicast]">Starting testcase:test_vlan_tagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18841' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=272, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=273] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=273] Local address: 172.17.0.4, port 37988 INFO asyncssh:logging.py:92 [conn=273] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=273] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=273] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=273, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:18:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=273, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=273, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=273, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=273, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=273, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=273, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=273, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp1 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=8] Command: bridge vlan add dev swp1 vid 22 && bridge vlan add dev swp1 vid 23 && bridge vlan add dev swp1 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp2 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=10] Command: bridge vlan add dev swp2 vid 22 && bridge vlan add dev swp2 vid 23 && bridge vlan add dev swp2 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp3 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=12] Command: bridge vlan add dev swp3 vid 22 && bridge vlan add dev swp3 vid 23 && bridge vlan add dev swp3 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 22 && bridge vlan add dev swp4 vid 23 && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=14] Command: bridge vlan add dev swp4 vid 22 && bridge vlan add dev swp4 vid 23 && bridge vlan add dev swp4 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp3 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp4 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1ed5570>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 1 learning SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 1 learning SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 1 learning SIP-DIP N/A Tx 199 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 22 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 22 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 22 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 23 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 23 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 23 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:6 -> 10.36.118.199:1:5: VLAN : 24 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:7 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:7 -> 10.36.118.199:1:5: VLAN : 24 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:8 Rx 10.36.118.199:1:5 TI From 10.36.118.199:1:8 -> 10.36.118.199:1:5: VLAN : 24 learning SIP-DIP N/A Tx 199 Rx 199 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=273, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=273, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:23:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=273, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=273, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:23:29 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=273, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=273, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=273, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":381,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=273, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=273, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=273, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_size.py::test_vlan_tagged_packet_size | 202.29 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_packet_size">Starting testcase:test_vlan_tagged_packet_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18873' coro=<test_vlan_tagged_packet_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py:42> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=273, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=274] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=274] Local address: 172.17.0.4, port 54110 INFO asyncssh:logging.py:92 [conn=274] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=274] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=274] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=274, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:23:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=274, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 1 INFO asyncssh:logging.py:92 [conn=274, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 1 INFO asyncssh:logging.py:92 [conn=274, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=274, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=274, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=274, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=274, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=274, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=8] Command: bridge vlan add dev swp1 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=274, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=274, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=10] Command: bridge vlan add dev swp2 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=274, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=274, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=12] Command: bridge vlan add dev swp3 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=274, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 1 pvid INFO asyncssh:logging.py:92 [conn=274, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=14] Command: bridge vlan add dev swp4 vid 1 pvid INFO asyncssh:logging.py:92 [conn=274, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fcc970>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged traffic SIP-DIP N/A Tx 238 Rx 238 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged traffic SIP-DIP N/A Tx 238 Rx 238 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged traffic SIP-DIP N/A Tx 238 Rx 238 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_packet_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=274, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=274, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:26:51 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=274, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=274, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:26:51 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=274, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=274, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=274, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":382,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=274, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=274, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=274, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[broadcast] | 197.49 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[broadcast]">Starting testcase:test_vlan_untagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18905' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=274, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=275] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=275] Local address: 172.17.0.4, port 38200 INFO asyncssh:logging.py:92 [conn=275] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=275] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=275] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=275, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:26:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=275, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=275, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=275, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=275, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=275, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=275, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=275, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=8] Command: bridge vlan add dev swp1 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=10] Command: bridge vlan add dev swp2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=12] Command: bridge vlan add dev swp3 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=14] Command: bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged broadcast traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1dd6230>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged broadcast traffic SIP-DIP N/A Tx 68 Rx 68 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged broadcast traffic SIP-DIP N/A Tx 68 Rx 68 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged broadcast traffic SIP-DIP N/A Tx 67 Rx 67 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=275, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=275, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:30:08 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=275, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=275, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:30:09 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=275, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=275, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=275, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":383,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=275, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=275, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=275, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[multicast] | 200.15 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[multicast]">Starting testcase:test_vlan_untagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18937' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=275, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=276] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=276] Local address: 172.17.0.4, port 40050 INFO asyncssh:logging.py:92 [conn=276] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=276] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=276] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=276, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:30:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=276, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=276, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=276, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=276, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=276, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=276, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=276, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=8] Command: bridge vlan add dev swp1 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=10] Command: bridge vlan add dev swp2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=12] Command: bridge vlan add dev swp3 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=14] Command: bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged multicast traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1dd6c80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged multicast traffic SIP-DIP N/A Tx 123 Rx 123 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:7 TI Untagged multicast traffic SIP-DIP N/A Tx 122 Rx 122 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:8 TI Untagged multicast traffic SIP-DIP N/A Tx 122 Rx 122 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=276, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=276, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:33:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=276, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=276, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:33:29 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=276, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=276, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=276, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":384,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=276, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=276, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=276, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[unicast] | 201.44 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[unicast]">Starting testcase:test_vlan_untagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18969' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.44 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=276, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=277] Connected to SSH server at 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=277] Local address: 172.17.0.4, port 41128 INFO asyncssh:logging.py:92 [conn=277] Peer address: 10.36.118.44, port 22 INFO asyncssh:logging.py:92 [conn=277] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=277] Auth for user root succeeded DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=277, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=0] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:33:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=277, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=1] Channel closed DEBUG agg1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=277, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=277, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=2] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=3] Channel closed DEBUG agg1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=277, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=277, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=4] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=5] Channel closed DEBUG agg1:Logger.py:156 ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=277, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=6] Command: ip link set dev swp1 up master br0 && ip link set dev swp2 up master br0 && ip link set dev swp3 up master br0 && ip link set dev swp4 up master br0 INFO asyncssh:logging.py:92 [conn=277, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=6] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=7] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp1 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=8] Command: bridge vlan add dev swp1 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=8] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=9] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=10] Command: bridge vlan add dev swp2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=10] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=11] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp3 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=12] Command: bridge vlan add dev swp3 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=12] Channel closed DEBUG agg1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=13] Channel closed DEBUG agg1:Logger.py:156 bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=14] Command: bridge vlan add dev swp4 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=14] Channel closed DEBUG agg1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:5 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:6 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:7 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:1:8 media mode fiber INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:5 swp swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:6 swp swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:7 swp swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:1:8 swp swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:1:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged unicast stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp1 to swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Learning stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp2 to swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:1:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f67a1fce8f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:5 Rx 10.36.118.199:1:6 TI Untagged unicast stream SIP-DIP N/A Tx 247 Rx 247 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:1:6 Rx 10.36.118.199:1:5 TI Learning stream SIP-DIP N/A Tx 247 Rx 247 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=277, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=15] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=277, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=16] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:48 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=277, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=17] Channel closed DEBUG agg1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=277, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=18] Channel closed DEBUG agg1:Logger.py:156 Mon Jul 3 07:36:51 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=277, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=19] Channel closed DEBUG agg1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=277, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=277, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=20] Channel closed DEBUG agg1:Logger.py:156 [{"ifindex":385,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"34:ef:b6:ec:38:07","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=277, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=21] Channel closed DEBUG agg1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=277, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=277, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=22] Channel closed DEBUG agg1:Logger.py:156 | |||